From 9222f47fd335f8a7d3d28af550d442ba266bca92 Mon Sep 17 00:00:00 2001 From: Oliver Martell Date: Thu, 27 Dec 2018 14:13:03 +0000 Subject: [PATCH] [ag-grid] Add ag-grid community, enterprise and react version 19.0.0 --- ag-grid-community/README.md | 32 + ag-grid-community/build.boot | 75 + .../common/ag-grid-community.ext.js | 4709 +++++++++++++ ag-grid-enterprise/README.md | 6 +- ag-grid-enterprise/build.boot | 52 +- .../common/ag-grid-enterprise.ext.js | 6219 +++++++++++++++++ ag-grid-react/README.md | 4 +- ag-grid-react/build.boot | 98 +- ag-grid-react/resources/webpack.config.js | 2 +- 9 files changed, 11116 insertions(+), 81 deletions(-) create mode 100644 ag-grid-community/README.md create mode 100644 ag-grid-community/build.boot create mode 100644 ag-grid-community/resources/cljsjs/ag-grid-community/common/ag-grid-community.ext.js diff --git a/ag-grid-community/README.md b/ag-grid-community/README.md new file mode 100644 index 000000000..73372832f --- /dev/null +++ b/ag-grid-community/README.md @@ -0,0 +1,32 @@ +# cljsjs/ag-grid-community - The JavaScript Datagrid for Enterprise + +React Toolbox depends on React with Addons, so, to be able to use it, you not only have to depend in +cljsjs/ag-grid-community: + +[](dependency) +```clojure +[cljsjs/ag-grid "19.0.0-0"] ;; latest release +``` +[](/dependency) + +This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature +of the ClojureScript compiler. After adding the above dependency to your project +you can require the packaged library like: + +```clojure +(ns application.core + (:require [cljsjs.ag-grid])) +``` + +[flibs]: https://clojurescript.org/reference/packaging-foreign-deps + +## Upgrading + +When upgrading ag-grid, you need to regenerate the externs: +1. Go to https://cdnjs.com/libraries/ag-grid/ such as https://cdnjs.com/libraries/ag-grid/10.0.1 +2. Find the URL for ag-grid.js, such as: https://cdnjs.cloudflare.com/ajax/libs/ag-grid/8.2.0/ag-grid.js +3. Go to http://jmmk.github.io/javascript-externs-generator +4. Paste the URL for ag-grid.js and click load. +5. Name the JavaScript object agGrid. +6. Click "Extern!" +6. Copy the JavaScript value to resources/cljsjs/ag-grid/common/ag-grid.ext.js diff --git a/ag-grid-community/build.boot b/ag-grid-community/build.boot new file mode 100644 index 000000000..465db474f --- /dev/null +++ b/ag-grid-community/build.boot @@ -0,0 +1,75 @@ +(set-env! + :resource-paths #{"resources"} + :dependencies '[[cljsjs/boot-cljsjs "0.10.3" :scope "test"]]) + +(require '[cljsjs.boot-cljsjs.packaging :refer :all] + '[boot.core :as boot] + '[boot.tmpdir :as tmpdir] + '[boot.util :refer [dosh]] + '[clojure.java.io :as io]) + +(def +lib-version+ "19.0.0") +(def +lib-checksum+ "D904467925A64A9E000A57F471C59CDF") +(def +version+ (str +lib-version+ "-0")) +(def +lib-folder+ (format "ag-grid-community-%s" +lib-version+)) + +(defn- dosh-cmd [& args] + (apply dosh (if (re-find #"^Windows" (.get (System/getProperties) "os.name")) + (into ["cmd.exe" "/c"] args) + args))) + +(defn- path [x] + (.toString (java.nio.file.Paths/get x (into-array String nil)))) + +(task-options! + pom {:project 'cljsjs/ag-grid-community + :version +version+ + :description "The JavaScript Datagrid for Enterprise" + :url "http://ag-grid.com/" + :scm {:url "https://github.com/cljsjs/packages"} + :license {"MIT" "http://opensource.org/licenses/MIT"}}) + +(deftask download-lib [] + (download :url (format "https://github.com/ceolter/ag-grid/archive/%s.zip" +lib-version+) + :checksum +lib-checksum+ + :unzip true)) + +(deftask package [] + (comp + (download-lib) + (sift :move {#".*ag-grid-community/dist/ag-grid-community.js" "cljsjs/ag-grid-community/development/ag-grid-community.inc.js" + #".*ag-grid-community/dist/styles/ag-grid.css" "cljsjs/ag-grid-community/development/ag-grid.inc.css" + #".*ag-grid-community/dist/styles/compiled-icons.css" "cljsjs/ag-grid-community/development/compiled-icons.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-balham.css" "cljsjs/ag-grid-community/development/ag-theme-balham.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-balham-dark.css" "cljsjs/ag-grid-community/development/ag-theme-balham-dark.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-blue.css" "cljsjs/ag-grid-community/development/ag-theme-blue.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-bootstrap.css" "cljsjs/ag-grid-community/development/ag-theme-bootstrap.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-dark.css" "cljsjs/ag-grid-community/development/ag-theme-dark.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-fresh.css" "cljsjs/ag-grid-community/development/ag-theme-fresh.inc.css" + #".*ag-grid-community/dist/styles/ag-theme-material.css" "cljsjs/ag-grid-community/development/ag-theme-material.inc.css"}) + (sift :include #{#"^cljsjs"}) + (minify :in "cljsjs/ag-grid-community/development/ag-grid-community.inc.js" + :out "cljsjs/ag-grid-community/production/ag-grid-community.min.inc.js" + :lang :ecmascript5) + + (minify :in "cljsjs/ag-grid-community/development/ag-grid.inc.css" + :out "cljsjs/ag-grid-community/production/ag-grid.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/compiled-icons.inc.css" + :out "cljsjs/ag-grid-community/production/compiled-icons.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-balham.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-balham.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-balham-dark.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-balham-dark.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-blue.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-blue.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-bootstrap.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-bootstrap.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-dark.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-dark.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-fresh.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-fresh.min.inc.css") + (minify :in "cljsjs/ag-grid-community/development/ag-theme-material.inc.css" + :out "cljsjs/ag-grid-community/production/ag-theme-material.min.inc.css") + (deps-cljs :name "cljsjs.ag-grid-community") + (pom) + (jar))) diff --git a/ag-grid-community/resources/cljsjs/ag-grid-community/common/ag-grid-community.ext.js b/ag-grid-community/resources/cljsjs/ag-grid-community/common/ag-grid-community.ext.js new file mode 100644 index 000000000..3ab570b2e --- /dev/null +++ b/ag-grid-community/resources/cljsjs/ag-grid-community/common/ag-grid-community.ext.js @@ -0,0 +1,4709 @@ +/********************************************************************** + * Extern for agGrid + * Generated by http://jmmk.github.io/javascript-externs-generator + **********************************************************************/ +var agGrid = { + "AgCheckbox": { + "EVENT_CHANGED": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preConstructMethods": {} + } + }, + "AlignedGridsService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "AnimateShowChangeCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "AnimateSlideCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "AutoWidthCalculator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Autowired": function () {}, + "BaseComponentWrapper": function () {}, + "BaseCreator": function () {}, + "BaseFilter": { + "CONTAINS": {}, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "BaseFrameworkFactory": function () {}, + "BaseGridSerializingSession": function () {}, + "Bean": function () {}, + "BeanStub": { + "EVENT_DESTROYED": {} + }, + "BodyDropPivotTarget": { + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "BodyDropTarget": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "CellComp": { + "DOM_DATA_KEY_CELL_COMP": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {} + }, + "CellEditorFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "CellNavigationService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "CellRendererFactory": { + "ANIMATE_SHOW_CHANGE": {}, + "ANIMATE_SLIDE": {}, + "GROUP": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "CellRendererService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ChangedPath": function () {}, + "CheckboxSelectionComponent": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "ClientSideNodeManager": { + "ROOT_NODE_ID": {}, + "TOP_LEVEL": {} + }, + "ClientSideRowModel": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ColDefUtil": { + "ALL_PROPERTIES": {}, + "ARRAY_PROPERTIES": {}, + "BOOLEAN_PROPERTIES": {}, + "FRAMEWORK_PROPERTIES": {}, + "FUNCTION_PROPERTIES": {}, + "NUMBER_PROPERTIES": {}, + "OBJECT_PROPERTIES": {}, + "STRING_PROPERTIES": {} + }, + "Column": { + "EVENT_FILTER_ACTIVE_CHANGED": {}, + "EVENT_FILTER_CHANGED": {}, + "EVENT_FIRST_RIGHT_PINNED_CHANGED": {}, + "EVENT_LAST_LEFT_PINNED_CHANGED": {}, + "EVENT_LEFT_CHANGED": {}, + "EVENT_MENU_VISIBLE_CHANGED": {}, + "EVENT_MOVING_CHANGED": {}, + "EVENT_PIVOT_CHANGED": {}, + "EVENT_ROW_GROUP_CHANGED": {}, + "EVENT_SORT_CHANGED": {}, + "EVENT_VALUE_CHANGED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "EVENT_WIDTH_CHANGED": {}, + "PINNED_LEFT": {}, + "PINNED_RIGHT": {}, + "SORT_ASC": {}, + "SORT_DESC": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "ColumnApi": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ColumnController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ColumnFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "ColumnGroup": { + "EVENT_DISPLAYED_CHILDREN_CHANGED": {}, + "EVENT_LEFT_CHANGED": {}, + "HEADER_GROUP_SHOW_CLOSED": {}, + "HEADER_GROUP_SHOW_OPEN": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + }, + "createUniqueId": function () {} + }, + "ColumnKeyCreator": function () {}, + "ColumnUtils": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Component": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {} + }, + "ComponentProvider": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ComponentResolver": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ComponentUtil": { + "ALL_PROPERTIES": {}, + "ARRAY_PROPERTIES": {}, + "BOOLEAN_PROPERTIES": {}, + "EVENTS": {}, + "FUNCTION_PROPERTIES": {}, + "NUMBER_PROPERTIES": {}, + "OBJECT_PROPERTIES": {}, + "STRING_PROPERTIES": {}, + "copyAttributesToGridOptions": function () {}, + "getCallbackForEvent": function () {}, + "getEventCallbacks": function () {}, + "processOnChange": function () {}, + "toBoolean": function () {}, + "toNumber": function () {} + }, + "Constants": { + "ALWAYS": {}, + "BATCH_WAIT_MILLIS": {}, + "DEPRECATED_ROW_MODEL_TYPE_NORMAL": {}, + "DOM_LAYOUT_AUTO_HEIGHT": {}, + "DOM_LAYOUT_NORMAL": {}, + "DOM_LAYOUT_PRINT": {}, + "EXPORT_TYPE_CLIPBOARD": {}, + "EXPORT_TYPE_CSV": {}, + "EXPORT_TYPE_DRAG_COPY": {}, + "EXPORT_TYPE_EXCEL": {}, + "KEY_A": {}, + "KEY_BACKSPACE": {}, + "KEY_C": {}, + "KEY_D": {}, + "KEY_DELETE": {}, + "KEY_DOWN": {}, + "KEY_ENTER": {}, + "KEY_ESCAPE": {}, + "KEY_F2": {}, + "KEY_LEFT": {}, + "KEY_NEW_LINE": {}, + "KEY_PAGE_DOWN": {}, + "KEY_PAGE_END": {}, + "KEY_PAGE_HOME": {}, + "KEY_PAGE_UP": {}, + "KEY_RIGHT": {}, + "KEY_SHIFT": {}, + "KEY_SPACE": {}, + "KEY_TAB": {}, + "KEY_UP": {}, + "KEY_V": {}, + "LAYOUT_INTERVAL": {}, + "ONLY_WHEN_GROUPING": {}, + "PINNED_BOTTOM": {}, + "PINNED_TOP": {}, + "ROW_BUFFER_SIZE": {}, + "ROW_MODEL_TYPE_CLIENT_SIDE": {}, + "ROW_MODEL_TYPE_INFINITE": {}, + "ROW_MODEL_TYPE_SERVER_SIDE": {}, + "ROW_MODEL_TYPE_VIEWPORT": {}, + "STEP_AGGREGATE": {}, + "STEP_EVERYTHING": {}, + "STEP_FILTER": {}, + "STEP_MAP": {}, + "STEP_PIVOT": {}, + "STEP_SORT": {} + }, + "Context": function () {}, + "CssClassApplier": { + "addColumnClassesFromCollDef": function () {}, + "addHeaderClassesFromColDef": function () {}, + "addToolPanelClassesFromColDef": function () {} + }, + "CsvCreator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "DateFilter": { + "CONTAINS": {}, + "DEFAULT_NULL_COMPARATOR": { + "equals": {}, + "greaterThan": {}, + "lessThan": {} + }, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + }, + "removeTimezone": function () {} + }, + "DisplayedGroupCreator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Downloader": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "DragAndDropService": { + "GHOST_TEMPLATE": {}, + "ICON_ADD": {}, + "ICON_AGGREGATE": {}, + "ICON_GROUP": {}, + "ICON_LEFT": {}, + "ICON_MOVE": {}, + "ICON_NOT_ALLOWED": {}, + "ICON_PINNED": {}, + "ICON_PIVOT": {}, + "ICON_RIGHT": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "DragService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "DragSourceType": { + "0": {}, + "1": {}, + "2": {}, + "HeaderCell": {}, + "RowDrag": {}, + "ToolPanel": {} + }, + "Environment": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "EventService": { + "PRIORITY": {}, + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {}, + "1": {}, + "2": {} + } + }, + "beanName": {} + } + }, + "Events": { + "EVENT_ANIMATION_QUEUE_EMPTY": {}, + "EVENT_BODY_HEIGHT_CHANGED": {}, + "EVENT_BODY_SCROLL": {}, + "EVENT_CELL_CLICKED": {}, + "EVENT_CELL_CONTEXT_MENU": {}, + "EVENT_CELL_DOUBLE_CLICKED": {}, + "EVENT_CELL_EDITING_STARTED": {}, + "EVENT_CELL_EDITING_STOPPED": {}, + "EVENT_CELL_FOCUSED": {}, + "EVENT_CELL_MOUSE_DOWN": {}, + "EVENT_CELL_MOUSE_OUT": {}, + "EVENT_CELL_MOUSE_OVER": {}, + "EVENT_CELL_VALUE_CHANGED": {}, + "EVENT_COLUMN_AGG_FUNC_CHANGE_REQUEST": {}, + "EVENT_COLUMN_EVERYTHING_CHANGED": {}, + "EVENT_COLUMN_GROUP_OPENED": {}, + "EVENT_COLUMN_HOVER_CHANGED": {}, + "EVENT_COLUMN_MOVED": {}, + "EVENT_COLUMN_PINNED": {}, + "EVENT_COLUMN_PIVOT_CHANGED": {}, + "EVENT_COLUMN_PIVOT_CHANGE_REQUEST": {}, + "EVENT_COLUMN_PIVOT_MODE_CHANGED": {}, + "EVENT_COLUMN_RESIZED": {}, + "EVENT_COLUMN_ROW_GROUP_CHANGED": {}, + "EVENT_COLUMN_ROW_GROUP_CHANGE_REQUEST": {}, + "EVENT_COLUMN_VALUE_CHANGED": {}, + "EVENT_COLUMN_VALUE_CHANGE_REQUEST": {}, + "EVENT_COLUMN_VISIBLE": {}, + "EVENT_COMPONENT_STATE_CHANGED": {}, + "EVENT_DISPLAYED_COLUMNS_CHANGED": {}, + "EVENT_DISPLAYED_COLUMNS_WIDTH_CHANGED": {}, + "EVENT_DRAG_STARTED": {}, + "EVENT_DRAG_STOPPED": {}, + "EVENT_EXPAND_COLLAPSE_ALL": {}, + "EVENT_FILTER_CHANGED": {}, + "EVENT_FILTER_MODIFIED": {}, + "EVENT_FILTER_OPENED": {}, + "EVENT_FIRST_DATA_RENDERED": {}, + "EVENT_FLASH_CELLS": {}, + "EVENT_GRID_COLUMNS_CHANGED": {}, + "EVENT_GRID_READY": {}, + "EVENT_GRID_SIZE_CHANGED": {}, + "EVENT_HEIGHT_SCALE_CHANGED": {}, + "EVENT_MODEL_UPDATED": {}, + "EVENT_NEW_COLUMNS_LOADED": {}, + "EVENT_PAGINATION_CHANGED": {}, + "EVENT_PASTE_END": {}, + "EVENT_PASTE_START": {}, + "EVENT_PINNED_ROW_DATA_CHANGED": {}, + "EVENT_RANGE_SELECTION_CHANGED": {}, + "EVENT_ROW_CLICKED": {}, + "EVENT_ROW_DATA_CHANGED": {}, + "EVENT_ROW_DATA_UPDATED": {}, + "EVENT_ROW_DOUBLE_CLICKED": {}, + "EVENT_ROW_DRAG_END": {}, + "EVENT_ROW_DRAG_ENTER": {}, + "EVENT_ROW_DRAG_LEAVE": {}, + "EVENT_ROW_DRAG_MOVE": {}, + "EVENT_ROW_EDITING_STARTED": {}, + "EVENT_ROW_EDITING_STOPPED": {}, + "EVENT_ROW_GROUP_OPENED": {}, + "EVENT_ROW_SELECTED": {}, + "EVENT_ROW_VALUE_CHANGED": {}, + "EVENT_SCROLL_VISIBILITY_CHANGED": {}, + "EVENT_SELECTION_CHANGED": {}, + "EVENT_SORT_CHANGED": {}, + "EVENT_TOOL_PANEL_VISIBLE_CHANGED": {}, + "EVENT_VIEWPORT_CHANGED": {}, + "EVENT_VIRTUAL_COLUMNS_CHANGED": {}, + "EVENT_VIRTUAL_ROW_REMOVED": {} + }, + "ExpressionService": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "FilterManager": { + "QUICK_FILTER_SEPARATOR": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "FilterStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "FlattenStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "FocusedCellController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "Grid": { + "RowModelClasses": { + "clientSide": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "infinite": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + } + }, + "setEnterpriseBeans": function () {}, + "setEnterpriseComponents": function () {}, + "setEnterpriseDefaultComponents": function () {}, + "setFrameworkBeans": function () {} + }, + "GridApi": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "GridCell": function () {}, + "GridCore": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE_ENTERPRISE": {}, + "TEMPLATE_NORMAL": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "GridOptionsWrapper": { + "MIN_COL_WIDTH": {}, + "PROP_DOM_LAYOUT": {}, + "PROP_FLOATING_FILTERS_HEIGHT": {}, + "PROP_GROUP_HEADER_HEIGHT": {}, + "PROP_GROUP_REMOVE_LOWEST_SINGLE_CHILDREN": {}, + "PROP_GROUP_REMOVE_SINGLE_CHILDREN": {}, + "PROP_HEADER_HEIGHT": {}, + "PROP_PIVOT_GROUP_HEADER_HEIGHT": {}, + "PROP_PIVOT_HEADER_HEIGHT": {}, + "PROP_POPUP_PARENT": {}, + "PROP_SUPPRESS_CLIPBOARD_PASTE": {}, + "PROP_SUPPRESS_ROW_DRAG": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "agWire": { + "0": {}, + "1": {} + } + }, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + }, + "checkEventDeprecation": function () {} + }, + "GridPanel": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "GridRow": function () {}, + "GridSerializer": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "GroupCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "GroupInstanceIdCreator": function () {}, + "HDirection": { + "0": {}, + "1": {}, + "Left": {}, + "Right": {} + }, + "HeaderContainer": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "HeaderRootComp": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "HeaderRowComp": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "HorizontalResizeService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "InfiniteRowModel": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "LargeTextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "Listener": function () {}, + "Logger": function () {}, + "LoggerFactory": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "MouseEventService": { + "GRID_DOM_KEY": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + }, + "gridInstanceSequence": { + "next": function () {}, + "nextValue": {}, + "peek": function () {}, + "skip": function () {}, + "step": {} + } + }, + "MoveColumnController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "NumberFilter": { + "CONTAINS": {}, + "DEFAULT_NULL_COMPARATOR": { + "equals": {}, + "greaterThan": {}, + "lessThan": {} + }, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "NumberSequence": function () {}, + "Optional": function () {}, + "OriginalColumnGroup": { + "EVENT_EXPANDABLE_CHANGED": {}, + "EVENT_EXPANDED_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PinnedRowModel": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "PopupEditorWrapper": { + "DOM_KEY_POPUP_EDITOR_WRAPPER": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PopupSelectCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PopupService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "PopupTextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "PostConstruct": function () {}, + "PreConstruct": function () {}, + "PreDestroy": function () {}, + "Promise": { + "all": function () {}, + "external": function () {}, + "resolve": function () {} + }, + "Qualifier": function () {}, + "QuerySelector": function () {}, + "RefSelector": function () {}, + "RowComp": { + "DETAIL_CELL_RENDERER": {}, + "DETAIL_CELL_RENDERER_COMP_NAME": {}, + "DOM_DATA_KEY_RENDERED_ROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "FULL_WIDTH_CELL_RENDERER": {}, + "GROUP_ROW_RENDERER": {}, + "GROUP_ROW_RENDERER_COMP_NAME": {}, + "LOADING_CELL_RENDERER": {}, + "LOADING_CELL_RENDERER_COMP_NAME": {} + }, + "RowNode": { + "EVENT_ALL_CHILDREN_COUNT_CHANGED": {}, + "EVENT_CELL_CHANGED": {}, + "EVENT_CHILD_INDEX_CHANGED": {}, + "EVENT_DATA_CHANGED": {}, + "EVENT_DRAGGING_CHANGED": {}, + "EVENT_EXPANDED_CHANGED": {}, + "EVENT_FIRST_CHILD_CHANGED": {}, + "EVENT_HEIGHT_CHANGED": {}, + "EVENT_LAST_CHILD_CHANGED": {}, + "EVENT_MOUSE_ENTER": {}, + "EVENT_MOUSE_LEAVE": {}, + "EVENT_ROW_INDEX_CHANGED": {}, + "EVENT_ROW_SELECTED": {}, + "EVENT_SELECTABLE_CHANGED": {}, + "EVENT_TOP_CHANGED": {}, + "EVENT_UI_LEVEL_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "RowNodeBlock": { + "EVENT_DESTROYED": {}, + "EVENT_LOAD_COMPLETE": {}, + "STATE_DIRTY": {}, + "STATE_FAILED": {}, + "STATE_LOADED": {}, + "STATE_LOADING": {} + }, + "RowNodeBlockLoader": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + } + } + }, + "RowNodeCache": { + "EVENT_CACHE_UPDATED": {}, + "EVENT_DESTROYED": {}, + "MAX_EMPTY_BLOCKS_TO_KEEP": {} + }, + "RowRenderer": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "agWire": { + "0": {} + } + }, + "beanName": {}, + "preDestroyMethods": {} + } + }, + "RowType": { + "0": {}, + "1": {}, + "2": {}, + "BODY": {}, + "HEADER": {}, + "HEADER_GROUPING": {} + }, + "ScrollVisibleService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "SelectCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "SelectableService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "SelectionController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "SetLeftFeature": { + "EVENT_DESTROYED": {} + }, + "SortController": { + "DEFAULT_SORTING_ORDER": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "SortStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "StandardMenuFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "StylingService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "TabbedLayout": { + "TEMPLATE": {} + }, + "TemplateService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "TextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "TextFilter": { + "CONTAINS": {}, + "DEFAULT_COMPARATOR": function () {}, + "DEFAULT_FORMATTER": function () {}, + "DEFAULT_LOWERCASE_FORMATTER": function () {}, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "TouchListener": { + "DOUBLE_TAP_MILLIS": {}, + "EVENT_DOUBLE_TAP": {}, + "EVENT_LONG_TAP": {}, + "EVENT_TAP": {} + }, + "Utils": { + "NUMPAD_DEL_NUMLOCK_ON_CHARCODE": {}, + "NUMPAD_DEL_NUMLOCK_ON_KEY": {}, + "PRINTABLE_CHARACTERS": {}, + "addAgGridEventPath": function () {}, + "addChangeListener": function () {}, + "addCssClass": function () {}, + "addOrRemoveCssClass": function () {}, + "addSafePassiveEventListener": function () {}, + "addStylesToElement": function () {}, + "anyExists": function () {}, + "appendHtml": function () {}, + "areEventsNear": function () {}, + "assign": function () {}, + "callIfPresent": function () {}, + "camelCaseToHumanText": function () {}, + "camelCaseToHyphen": function () {}, + "cleanNumber": function () {}, + "cloneObject": function () {}, + "compareArrays": function () {}, + "compose": function () {}, + "containsClass": function () {}, + "copyNodeList": function () {}, + "createArrayOfNumbers": function () {}, + "createEventPath": function () {}, + "createIcon": function () {}, + "createIconNoSpan": function () {}, + "cssStyleObjectToMarkup": function () {}, + "debounce": function () {}, + "decToHex": function () {}, + "deepCloneObject": function () {}, + "defaultComparator": function () {}, + "doOnce": function () {}, + "doOnceFlags": {}, + "ensureDomOrder": function () {}, + "escape": function () {}, + "every": function () {}, + "executeAfter": function () {}, + "executeInAWhile": function () {}, + "executeNextVMTurn": function () {}, + "exists": function () {}, + "existsAndNotEmpty": function () {}, + "filter": function () {}, + "find": function () {}, + "firstExistingValue": function () {}, + "forEach": function () {}, + "forEachSnapshotFirst": function () {}, + "formatNumberCommas": function () {}, + "formatNumberTwoDecimalPlacesAndCommas": function () {}, + "formatWidth": function () {}, + "fuzzyCheckStrings": function () {}, + "fuzzySuggestions": function () {}, + "get": function () {}, + "getAbsoluteHeight": function () {}, + "getAbsoluteWidth": function () {}, + "getAllKeysInObjects": function () {}, + "getBodyHeight": function () {}, + "getBodyWidth": function () {}, + "getElementAttribute": function () {}, + "getEventPath": function () {}, + "getFunctionParameters": function () {}, + "getMaxDivHeight": function () {}, + "getNameOfClass": function () {}, + "getScrollLeft": function () {}, + "getScrollbarWidth": function () {}, + "getTarget": function () {}, + "getValueUsingField": function () {}, + "get_bigrams": function () {}, + "hasOverflowScrolling": function () {}, + "hyphenToCamelCase": function () {}, + "iconNameClassMap": { + "checkboxChecked": {}, + "checkboxCheckedReadOnly": {}, + "checkboxIndeterminate": {}, + "checkboxIndeterminateReadOnly": {}, + "checkboxUnchecked": {}, + "checkboxUncheckedReadOnly": {}, + "clipboardCopy": {}, + "clipboardCut": {}, + "clipboardPaste": {}, + "columnGroupClosed": {}, + "columnGroupOpened": {}, + "columnMoveAdd": {}, + "columnMoveGroup": {}, + "columnMoveHide": {}, + "columnMoveLeft": {}, + "columnMoveMove": {}, + "columnMovePin": {}, + "columnMovePivot": {}, + "columnMoveRight": {}, + "columnMoveValue": {}, + "columnSelectClosed": {}, + "columnSelectOpen": {}, + "columns": {}, + "dropNotAllowed": {}, + "filter": {}, + "groupContracted": {}, + "groupExpanded": {}, + "groupLoading": {}, + "menu": {}, + "menuAddRowGroup": {}, + "menuPin": {}, + "menuRemoveRowGroup": {}, + "menuValue": {}, + "pivotPanel": {}, + "rowGroupPanel": {}, + "sortAscending": {}, + "sortDescending": {}, + "sortUnSort": {}, + "valuePanel": {} + }, + "insertArrayIntoArray": function () {}, + "insertIntoArray": function () {}, + "insertTemplateWithDomOrder": function () {}, + "insertWithDomOrder": function () {}, + "isBrowserChrome": function () {}, + "isBrowserEdge": function () {}, + "isBrowserFirefox": function () {}, + "isBrowserIE": function () {}, + "isBrowserSafari": function () {}, + "isElement": function () {}, + "isElementInEventPath": function () {}, + "isEventFromPrintableCharacter": function () {}, + "isHorizontalScrollShowing": function () {}, + "isKeyPressed": function () {}, + "isLeftClick": function () {}, + "isNode": function () {}, + "isNodeOrElement": function () {}, + "isNumeric": function () {}, + "isNumpadDelWithNumlockOnForEdgeOrIe": function () {}, + "isStopPropagationForAgGrid": function () {}, + "isUserAgentIPad": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "iterateArray": function () {}, + "iterateNamedNodeMap": function () {}, + "iterateObject": function () {}, + "jsonEquals": function () {}, + "loadTemplate": function () {}, + "makeNull": function () {}, + "map": function () {}, + "mapObject": function () {}, + "mergeDeep": function () {}, + "message": function () {}, + "missing": function () {}, + "missingOrEmpty": function () {}, + "missingOrEmptyObject": function () {}, + "moveInArray": function () {}, + "normalizeWheel": function () {}, + "offsetHeight": function () {}, + "offsetWidth": function () {}, + "pad": function () {}, + "parseYyyyMmDdToDate": function () {}, + "passiveEvents": {}, + "prependDC": function () {}, + "pushAll": function () {}, + "referenceCompare": function () {}, + "removeAllChildren": function () {}, + "removeAllFromArray": function () {}, + "removeCssClass": function () {}, + "removeElement": function () {}, + "removeFromArray": function () {}, + "removeFromParent": function () {}, + "removeRepeatsFromArray": function () {}, + "serializeDateToYyyyMmDd": function () {}, + "setCheckboxState": function () {}, + "setHidden": function () {}, + "setScrollLeft": function () {}, + "setVisible": function () {}, + "shallowCompare": function () {}, + "sortNumberArray": function () {}, + "sortRowNodesByOrder": function () {}, + "stopPropagationForAgGrid": function () {}, + "string_similarity": function () {}, + "toStringOrNull": function () {}, + "toStrings": function () {}, + "traverseNodesWithKey": function () {}, + "utf8_encode": function () {}, + "values": function () {} + }, + "VDirection": { + "0": {}, + "1": {}, + "Down": {}, + "Up": {} + }, + "ValueFormatterService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ValueService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "VerticalStack": function () {}, + "XmlFactory": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "ZipContainer": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "_": { + "NUMPAD_DEL_NUMLOCK_ON_CHARCODE": {}, + "NUMPAD_DEL_NUMLOCK_ON_KEY": {}, + "PRINTABLE_CHARACTERS": {}, + "addAgGridEventPath": function () {}, + "addChangeListener": function () {}, + "addCssClass": function () {}, + "addOrRemoveCssClass": function () {}, + "addSafePassiveEventListener": function () {}, + "addStylesToElement": function () {}, + "anyExists": function () {}, + "appendHtml": function () {}, + "areEventsNear": function () {}, + "assign": function () {}, + "callIfPresent": function () {}, + "camelCaseToHumanText": function () {}, + "camelCaseToHyphen": function () {}, + "cleanNumber": function () {}, + "cloneObject": function () {}, + "compareArrays": function () {}, + "compose": function () {}, + "containsClass": function () {}, + "copyNodeList": function () {}, + "createArrayOfNumbers": function () {}, + "createEventPath": function () {}, + "createIcon": function () {}, + "createIconNoSpan": function () {}, + "cssStyleObjectToMarkup": function () {}, + "debounce": function () {}, + "decToHex": function () {}, + "deepCloneObject": function () {}, + "defaultComparator": function () {}, + "doOnce": function () {}, + "doOnceFlags": {}, + "ensureDomOrder": function () {}, + "escape": function () {}, + "every": function () {}, + "executeAfter": function () {}, + "executeInAWhile": function () {}, + "executeNextVMTurn": function () {}, + "exists": function () {}, + "existsAndNotEmpty": function () {}, + "filter": function () {}, + "find": function () {}, + "firstExistingValue": function () {}, + "forEach": function () {}, + "forEachSnapshotFirst": function () {}, + "formatNumberCommas": function () {}, + "formatNumberTwoDecimalPlacesAndCommas": function () {}, + "formatWidth": function () {}, + "fuzzyCheckStrings": function () {}, + "fuzzySuggestions": function () {}, + "get": function () {}, + "getAbsoluteHeight": function () {}, + "getAbsoluteWidth": function () {}, + "getAllKeysInObjects": function () {}, + "getBodyHeight": function () {}, + "getBodyWidth": function () {}, + "getElementAttribute": function () {}, + "getEventPath": function () {}, + "getFunctionParameters": function () {}, + "getMaxDivHeight": function () {}, + "getNameOfClass": function () {}, + "getScrollLeft": function () {}, + "getScrollbarWidth": function () {}, + "getTarget": function () {}, + "getValueUsingField": function () {}, + "get_bigrams": function () {}, + "hasOverflowScrolling": function () {}, + "hyphenToCamelCase": function () {}, + "iconNameClassMap": { + "checkboxChecked": {}, + "checkboxCheckedReadOnly": {}, + "checkboxIndeterminate": {}, + "checkboxIndeterminateReadOnly": {}, + "checkboxUnchecked": {}, + "checkboxUncheckedReadOnly": {}, + "clipboardCopy": {}, + "clipboardCut": {}, + "clipboardPaste": {}, + "columnGroupClosed": {}, + "columnGroupOpened": {}, + "columnMoveAdd": {}, + "columnMoveGroup": {}, + "columnMoveHide": {}, + "columnMoveLeft": {}, + "columnMoveMove": {}, + "columnMovePin": {}, + "columnMovePivot": {}, + "columnMoveRight": {}, + "columnMoveValue": {}, + "columnSelectClosed": {}, + "columnSelectOpen": {}, + "columns": {}, + "dropNotAllowed": {}, + "filter": {}, + "groupContracted": {}, + "groupExpanded": {}, + "groupLoading": {}, + "menu": {}, + "menuAddRowGroup": {}, + "menuPin": {}, + "menuRemoveRowGroup": {}, + "menuValue": {}, + "pivotPanel": {}, + "rowGroupPanel": {}, + "sortAscending": {}, + "sortDescending": {}, + "sortUnSort": {}, + "valuePanel": {} + }, + "insertArrayIntoArray": function () {}, + "insertIntoArray": function () {}, + "insertTemplateWithDomOrder": function () {}, + "insertWithDomOrder": function () {}, + "isBrowserChrome": function () {}, + "isBrowserEdge": function () {}, + "isBrowserFirefox": function () {}, + "isBrowserIE": function () {}, + "isBrowserSafari": function () {}, + "isElement": function () {}, + "isElementInEventPath": function () {}, + "isEventFromPrintableCharacter": function () {}, + "isHorizontalScrollShowing": function () {}, + "isKeyPressed": function () {}, + "isLeftClick": function () {}, + "isNode": function () {}, + "isNodeOrElement": function () {}, + "isNumeric": function () {}, + "isNumpadDelWithNumlockOnForEdgeOrIe": function () {}, + "isStopPropagationForAgGrid": function () {}, + "isUserAgentIPad": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "iterateArray": function () {}, + "iterateNamedNodeMap": function () {}, + "iterateObject": function () {}, + "jsonEquals": function () {}, + "loadTemplate": function () {}, + "makeNull": function () {}, + "map": function () {}, + "mapObject": function () {}, + "mergeDeep": function () {}, + "message": function () {}, + "missing": function () {}, + "missingOrEmpty": function () {}, + "missingOrEmptyObject": function () {}, + "moveInArray": function () {}, + "normalizeWheel": function () {}, + "offsetHeight": function () {}, + "offsetWidth": function () {}, + "pad": function () {}, + "parseYyyyMmDdToDate": function () {}, + "passiveEvents": {}, + "prependDC": function () {}, + "pushAll": function () {}, + "referenceCompare": function () {}, + "removeAllChildren": function () {}, + "removeAllFromArray": function () {}, + "removeCssClass": function () {}, + "removeElement": function () {}, + "removeFromArray": function () {}, + "removeFromParent": function () {}, + "removeRepeatsFromArray": function () {}, + "serializeDateToYyyyMmDd": function () {}, + "setCheckboxState": function () {}, + "setHidden": function () {}, + "setScrollLeft": function () {}, + "setVisible": function () {}, + "shallowCompare": function () {}, + "sortNumberArray": function () {}, + "sortRowNodesByOrder": function () {}, + "stopPropagationForAgGrid": function () {}, + "string_similarity": function () {}, + "toStringOrNull": function () {}, + "toStrings": function () {}, + "traverseNodesWithKey": function () {}, + "utf8_encode": function () {}, + "values": function () {} + }, + "defaultGroupComparator": function () {}, + "initialiseAgGridWithAngular1": function () {}, + "initialiseAgGridWithWebComponents": function () {}, + "simpleHttpRequest": function () {} +}; +agGrid.AgCheckbox.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getNextValue": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isReadOnly": function () {}, + "isSelected": function () {}, + "isVisible": function () {}, + "loadIcons": function () {}, + "onClick": function () {}, + "postConstruct": function () {}, + "preConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setPassive": function () {}, + "setReadOnly": function () {}, + "setSelected": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "toggle": function () {}, + "updateIcons": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AlignedGridsService.prototype = { + "fireColumnEvent": function () {}, + "fireEvent": function () {}, + "fireScrollEvent": function () {}, + "getColumnIds": function () {}, + "getMasterColumns": function () {}, + "init": function () {}, + "onColumnEvent": function () {}, + "onEvent": function () {}, + "onScrollEvent": function () {}, + "processColumnEvent": function () {}, + "processGroupOpenedEvent": function () {}, + "registerGridComp": function () {}, + "setBeans": function () {} +}; +agGrid.AnimateShowChangeCellRenderer.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "hideDeltaValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setTimerToRemoveDelta": function () {}, + "setVisible": function () {}, + "showDelta": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AnimateSlideCellRenderer.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addSlideAnimation": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AutoWidthCalculator.prototype = { + "cloneItemIntoDummy": function () {}, + "getHeaderCellForColumn": function () {}, + "getPreferredWidthForColumn": function () {}, + "putRowCellsIntoDummyContainer": function () {}, + "registerGridComp": function () {}, + "registerHeaderRootComp": function () {} +}; +agGrid.BaseComponentWrapper.prototype = { + "createMethod": function () {}, + "createMethodProxy": function () {}, + "wrap": function () {} +}; +agGrid.BaseCreator.prototype = { + "export": function () {}, + "getData": function () {}, + "getMergedParamsAndData": function () {}, + "mergeDefaultParams": function () {}, + "packageFile": function () {}, + "setBeans": function () {} +}; +agGrid.BaseFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doOnFilterChanged": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.BaseFrameworkFactory.prototype = { + "colDefCellEditor": function () {}, + "colDefCellRenderer": function () {}, + "colDefFilter": function () {}, + "colDefFloatingCellRenderer": function () {}, + "dateComponent": function () {}, + "gridOptionsFullWidthCellRenderer": function () {}, + "gridOptionsGroupRowInnerRenderer": function () {}, + "gridOptionsGroupRowRenderer": function () {}, + "setTimeout": function () {} +}; +agGrid.BaseGridSerializingSession.prototype = { + "createValueForGroupNode": function () {}, + "extractHeaderValue": function () {}, + "extractRowCellValue": function () {}, + "getHeaderName": function () {}, + "processCell": function () {} +}; +agGrid.BeanStub.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "isAlive": function () {}, + "removeEventListener": function () {} +}; +agGrid.BodyDropPivotTarget.prototype = { + "clearColumnsList": function () {}, + "getIconName": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {} +}; +agGrid.BodyDropTarget.prototype = { + "getContainer": function () {}, + "getDropType": function () {}, + "getIconName": function () {}, + "getSecondaryContainers": function () {}, + "init": function () {}, + "isInterestedIn": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "registerGridComp": function () {} +}; +agGrid.CellComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDomData": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addInCellEditor": function () {}, + "addOrRemoveCssClass": function () {}, + "addPopupCellEditor": function () {}, + "addRowDragging": function () {}, + "addSelectionCheckbox": function () {}, + "afterAttached": function () {}, + "afterCellEditorCreated": function () {}, + "afterCellRendererCreated": function () {}, + "angular1Compile": function () {}, + "animateCell": function () {}, + "appendChild": function () {}, + "attachCellRenderer": function () {}, + "attemptCellRendererRefresh": function () {}, + "chooseCellRenderer": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createCellEditorParams": function () {}, + "createCellRendererInstance": function () {}, + "createCellRendererParams": function () {}, + "createChildAttributes": function () {}, + "createEvent": function () {}, + "createGridCellVo": function () {}, + "destroy": function () {}, + "detach": function () {}, + "dispatchCellContextMenuEvent": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIeFocusHack": function () {}, + "doesUserWantToCancelKeyboardEvent": function () {}, + "flashCell": function () {}, + "focusCell": function () {}, + "formatValue": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCellEditor": function () {}, + "getCellLeft": function () {}, + "getCellRenderer": function () {}, + "getCellWidth": function () {}, + "getColSpanningList": function () {}, + "getColumn": function () {}, + "getCompId": function () {}, + "getCreateTemplate": function () {}, + "getGridCell": function () {}, + "getGui": function () {}, + "getInitialCssClasses": function () {}, + "getInitialValueToRender": function () {}, + "getParentRow": function () {}, + "getRangeClasses": function () {}, + "getRefElement": function () {}, + "getRenderedRow": function () {}, + "getStylesForRowSpanning": function () {}, + "getToolTip": function () {}, + "getValue": function () {}, + "getValueAndFormat": function () {}, + "getValueToUse": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCellEditable": function () {}, + "isDoubleClickOnIPad": function () {}, + "isEditing": function () {}, + "isSuppressNavigable": function () {}, + "isVisible": function () {}, + "modifyLeftForPrintLayout": function () {}, + "navigateAfterEdit": function () {}, + "onBackspaceOrDeleteKeyPressed": function () {}, + "onCellChanged": function () {}, + "onCellClicked": function () {}, + "onCellDoubleClicked": function () {}, + "onCellFocused": function () {}, + "onColumnHover": function () {}, + "onDisplayColumnsChanged": function () {}, + "onEnterKeyDown": function () {}, + "onEscapeKeyDown": function () {}, + "onF2KeyDown": function () {}, + "onFirstRightPinnedChanged": function () {}, + "onFlashCells": function () {}, + "onKeyDown": function () {}, + "onKeyPress": function () {}, + "onLastLeftPinnedChanged": function () {}, + "onLeftChanged": function () {}, + "onMouseDown": function () {}, + "onMouseEvent": function () {}, + "onMouseOut": function () {}, + "onMouseOver": function () {}, + "onNavigationKeyPressed": function () {}, + "onPopupEditorClosed": function () {}, + "onRangeSelectionChanged": function () {}, + "onRowIndexChanged": function () {}, + "onShiftRangeSelect": function () {}, + "onSpaceKeyPressed": function () {}, + "onTabKeyDown": function () {}, + "onWidthChanged": function () {}, + "parseValue": function () {}, + "populateTemplate": function () {}, + "postProcessCellClassRules": function () {}, + "postProcessClassesFromColDef": function () {}, + "postProcessStylesFromColDef": function () {}, + "preProcessCellClassRules": function () {}, + "preProcessClassesFromColDef": function () {}, + "preProcessStylesFromColDef": function () {}, + "processCellClassRules": function () {}, + "processClassesFromColDef": function () {}, + "processStylesFromColDef": function () {}, + "putDataIntoCellAfterRefresh": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshCell": function () {}, + "refreshToolTip": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "replaceContentsAfterRefresh": function () {}, + "setFocusInOnEditor": function () {}, + "setFocusOutOnEditor": function () {}, + "setGui": function () {}, + "setInlineEditingClass": function () {}, + "setParentRow": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setUsingWrapper": function () {}, + "setVisible": function () {}, + "setupColSpan": function () {}, + "startEditingIfEnabled": function () {}, + "startRowOrCellEdit": function () {}, + "stopEditing": function () {}, + "stopEditingAndFocus": function () {}, + "stopRowOrCellEdit": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "valuesAreEqual": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.CellEditorFactory.prototype = { + "addCellEditor": function () {}, + "createCellEditor": function () {}, + "init": function () {} +}; +agGrid.CellNavigationService.prototype = { + "getCellAbove": function () {}, + "getCellBelow": function () {}, + "getCellToLeft": function () {}, + "getCellToRight": function () {}, + "getLastBodyCell": function () {}, + "getLastFloatingTopRow": function () {}, + "getNextCellToFocus": function () {}, + "getNextTabbedCell": function () {}, + "getNextTabbedCellBackwards": function () {}, + "getNextTabbedCellForwards": function () {}, + "getRowAbove": function () {}, + "getRowBelow": function () {}, + "isCellGoodToFocusOn": function () {}, + "isLastRowInContainer": function () {} +}; +agGrid.CellRendererFactory.prototype = { + "addCellRenderer": function () {}, + "getCellRenderer": function () {}, + "init": function () {} +}; +agGrid.CellRendererService.prototype = { + "bindToHtml": function () {}, + "useCellRenderer": function () {}, + "useFilterCellRenderer": function () {}, + "useFullWidthGroupRowInnerCellRenderer": function () {}, + "useInnerCellRenderer": function () {}, + "useRichSelectCellRenderer": function () {} +}; +agGrid.ChangedPath.prototype = { + "addParentNode": function () {}, + "getNotValueColumnsForNode": function () {}, + "getValueColumnsForNode": function () {}, + "isActive": function () {}, + "isInPath": function () {}, + "setInactive": function () {}, + "validateActive": function () {} +}; +agGrid.CheckboxSelectionComponent.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkboxCallbackExists": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createAndAddIcons": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onCheckedClicked": function () {}, + "onDataChanged": function () {}, + "onIndeterminateClicked": function () {}, + "onSelectableChanged": function () {}, + "onSelectionChanged": function () {}, + "onUncheckedClicked": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "showOrHideSelect": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.ClientSideNodeManager.prototype = { + "addItems": function () {}, + "addRowNode": function () {}, + "createNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getRowNode": function () {}, + "insertItemsAtIndex": function () {}, + "isExpanded": function () {}, + "isLegacyTreeData": function () {}, + "lookupRowNode": function () {}, + "postConstruct": function () {}, + "recursiveFunction": function () {}, + "setLeafChildren": function () {}, + "setRowData": function () {}, + "updateRowData": function () {}, + "updatedRowNode": function () {} +}; +agGrid.ClientSideRowModel.prototype = { + "batchUpdateRowData": function () {}, + "commonUpdateRowData": function () {}, + "createChangePath": function () {}, + "doAggregate": function () {}, + "doFilter": function () {}, + "doPivot": function () {}, + "doRowGrouping": function () {}, + "doRowsToDisplay": function () {}, + "doSort": function () {}, + "ensureRowAtPixel": function () {}, + "executeBatchUpdateRowData": function () {}, + "expandOrCollapseAll": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "forEachPivotNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getCurrentPageHeight": function () {}, + "getGroupState": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRootNode": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getTopLevelNodes": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowInPixel": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onFilterChanged": function () {}, + "onRowGroupOpened": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "onValueChanged": function () {}, + "recursivelyWalkNodesAndCallback": function () {}, + "refreshModel": function () {}, + "resetRowHeights": function () {}, + "restoreGroupState": function () {}, + "setDatasource": function () {}, + "setRowData": function () {}, + "updateRowData": function () {} +}; +agGrid.Column.prototype = { + "addEventListener": function () {}, + "createBaseColDefParams": function () {}, + "createColumnEvent": function () {}, + "createIsColumnFuncParams": function () {}, + "getActualWidth": function () {}, + "getAggFunc": function () {}, + "getColDef": function () {}, + "getColId": function () {}, + "getColSpan": function () {}, + "getColumnGroupShow": function () {}, + "getDefinition": function () {}, + "getId": function () {}, + "getLeft": function () {}, + "getMaxWidth": function () {}, + "getMenuTabs": function () {}, + "getMinWidth": function () {}, + "getOldLeft": function () {}, + "getParent": function () {}, + "getPinned": function () {}, + "getRight": function () {}, + "getRowSpan": function () {}, + "getSort": function () {}, + "getSortedAt": function () {}, + "getUniqueId": function () {}, + "getUserProvidedColDef": function () {}, + "initialise": function () {}, + "isAllowPivot": function () {}, + "isAllowRowGroup": function () {}, + "isAllowValue": function () {}, + "isAnyFunctionActive": function () {}, + "isAnyFunctionAllowed": function () {}, + "isCellCheckboxSelection": function () {}, + "isCellEditable": function () {}, + "isColumnFunc": function () {}, + "isEmptyGroup": function () {}, + "isFieldContainsDots": function () {}, + "isFilterActive": function () {}, + "isFilterAllowed": function () {}, + "isFirstRightPinned": function () {}, + "isGreaterThanMax": function () {}, + "isLastLeftPinned": function () {}, + "isLockPinned": function () {}, + "isLockPosition": function () {}, + "isLockVisible": function () {}, + "isMenuVisible": function () {}, + "isMoving": function () {}, + "isPinned": function () {}, + "isPinnedLeft": function () {}, + "isPinnedRight": function () {}, + "isPivotActive": function () {}, + "isPrimary": function () {}, + "isResizable": function () {}, + "isRowDrag": function () {}, + "isRowGroupActive": function () {}, + "isRowGroupDisplayed": function () {}, + "isSortAscending": function () {}, + "isSortDescending": function () {}, + "isSortNone": function () {}, + "isSorting": function () {}, + "isSuppressNavigable": function () {}, + "isSuppressPaste": function () {}, + "isTooltipFieldContainsDots": function () {}, + "isValueActive": function () {}, + "isVisible": function () {}, + "removeEventListener": function () {}, + "setActualWidth": function () {}, + "setAggFunc": function () {}, + "setFilterActive": function () {}, + "setFirstRightPinned": function () {}, + "setLastLeftPinned": function () {}, + "setLeft": function () {}, + "setMenuVisible": function () {}, + "setMinimum": function () {}, + "setMoving": function () {}, + "setParent": function () {}, + "setPinned": function () {}, + "setPivotActive": function () {}, + "setRowGroupActive": function () {}, + "setSort": function () {}, + "setSortedAt": function () {}, + "setValueActive": function () {}, + "setVisible": function () {}, + "validate": function () {} +}; +agGrid.ColumnApi.prototype = { + "addAggregationColumn": function () {}, + "addAggregationColumns": function () {}, + "addPivotColumn": function () {}, + "addPivotColumns": function () {}, + "addRowGroupColumn": function () {}, + "addRowGroupColumns": function () {}, + "addValueColumn": function () {}, + "addValueColumns": function () {}, + "autoSizeAllColumns": function () {}, + "autoSizeColumn": function () {}, + "autoSizeColumns": function () {}, + "columnGroupOpened": function () {}, + "getAggregationColumns": function () {}, + "getAllColumns": function () {}, + "getAllDisplayedColumnGroups": function () {}, + "getAllDisplayedColumns": function () {}, + "getAllDisplayedVirtualColumns": function () {}, + "getAllGridColumns": function () {}, + "getCenterDisplayedColumnGroups": function () {}, + "getColumn": function () {}, + "getColumnGroup": function () {}, + "getColumnGroupState": function () {}, + "getColumnState": function () {}, + "getDisplayNameForCol": function () {}, + "getDisplayNameForColumn": function () {}, + "getDisplayNameForColumnGroup": function () {}, + "getDisplayedCenterColumns": function () {}, + "getDisplayedColAfter": function () {}, + "getDisplayedColBefore": function () {}, + "getDisplayedLeftColumns": function () {}, + "getDisplayedRightColumns": function () {}, + "getLeftDisplayedColumnGroups": function () {}, + "getOriginalColumnGroup": function () {}, + "getPivotColumns": function () {}, + "getPrimaryColumns": function () {}, + "getRightDisplayedColumnGroups": function () {}, + "getRowGroupColumns": function () {}, + "getSecondaryColumns": function () {}, + "getSecondaryPivotColumn": function () {}, + "getState": function () {}, + "getValueColumns": function () {}, + "hideColumn": function () {}, + "hideColumns": function () {}, + "isPinning": function () {}, + "isPinningLeft": function () {}, + "isPinningRight": function () {}, + "isPivotMode": function () {}, + "moveColumn": function () {}, + "moveColumnByIndex": function () {}, + "moveColumns": function () {}, + "moveRowGroupColumn": function () {}, + "removeAggregationColumn": function () {}, + "removeAggregationColumns": function () {}, + "removePivotColumn": function () {}, + "removePivotColumns": function () {}, + "removeRowGroupColumn": function () {}, + "removeRowGroupColumns": function () {}, + "removeValueColumn": function () {}, + "removeValueColumns": function () {}, + "resetColumnGroupState": function () {}, + "resetColumnState": function () {}, + "resetState": function () {}, + "setColumnAggFunc": function () {}, + "setColumnAggFunction": function () {}, + "setColumnGroupOpened": function () {}, + "setColumnGroupState": function () {}, + "setColumnPinned": function () {}, + "setColumnState": function () {}, + "setColumnVisible": function () {}, + "setColumnWidth": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {}, + "setPivotColumns": function () {}, + "setPivotMode": function () {}, + "setRowGroupColumns": function () {}, + "setSecondaryColumns": function () {}, + "setState": function () {}, + "setValueColumns": function () {}, + "sizeColumnsToFit": function () {} +}; +agGrid.ColumnController.prototype = { + "actionOnGridColumns": function () {}, + "addAutoGroupToGridColumns": function () {}, + "addPivotColumn": function () {}, + "addPivotColumns": function () {}, + "addRowGroupColumn": function () {}, + "addRowGroupColumns": function () {}, + "addToDisplayedColumns": function () {}, + "addValueColumn": function () {}, + "addValueColumns": function () {}, + "autoSizeAllColumns": function () {}, + "autoSizeColumn": function () {}, + "autoSizeColumns": function () {}, + "beforeChangingColumns": function () {}, + "buildDisplayedTrees": function () {}, + "calculateColumnsForDisplay": function () {}, + "calculateColumnsForGroupDisplay": function () {}, + "checkColSpanActiveInCols": function () {}, + "checkDisplayedVirtualColumns": function () {}, + "checkMinAndMaxWidthsForSet": function () {}, + "clearDisplayedColumns": function () {}, + "columnsMatch": function () {}, + "createGroupAutoColumnsIfNeeded": function () {}, + "createStateItemFromColumn": function () {}, + "createValueColumns": function () {}, + "doesMovePassLockedPositions": function () {}, + "doesMovePassMarryChildren": function () {}, + "doesMovePassRules": function () {}, + "extractColumns": function () {}, + "extractPivotColumns": function () {}, + "extractRowGroupColumns": function () {}, + "filterOutColumnsWithinViewport": function () {}, + "getAllAutoRowHeightCols": function () {}, + "getAllColumnsForQuickFilter": function () {}, + "getAllDisplayedCenterVirtualColumnsForRow": function () {}, + "getAllDisplayedColumnGroups": function () {}, + "getAllDisplayedColumns": function () {}, + "getAllDisplayedVirtualColumns": function () {}, + "getAllGridColumns": function () {}, + "getAllPrimaryColumns": function () {}, + "getAutoColumn": function () {}, + "getBodyContainerWidth": function () {}, + "getCenterDisplayedColumnGroups": function () {}, + "getColumn": function () {}, + "getColumnGroup": function () {}, + "getColumnGroupState": function () {}, + "getColumnState": function () {}, + "getColumnWithValidation": function () {}, + "getColumns": function () {}, + "getColumnsFromTree": function () {}, + "getContainerWidth": function () {}, + "getDisplayNameForColumn": function () {}, + "getDisplayNameForColumnGroup": function () {}, + "getDisplayNameForOriginalColumnGroup": function () {}, + "getDisplayedCenterColumns": function () {}, + "getDisplayedColAfter": function () {}, + "getDisplayedColBefore": function () {}, + "getDisplayedColumnGroups": function () {}, + "getDisplayedColumns": function () {}, + "getDisplayedColumnsForRow": function () {}, + "getDisplayedColumnsStartingAt": function () {}, + "getDisplayedGroupAfter": function () {}, + "getDisplayedLeftColumns": function () {}, + "getDisplayedLeftColumnsForRow": function () {}, + "getDisplayedRightColumns": function () {}, + "getDisplayedRightColumnsForRow": function () {}, + "getGridBalancedTree": function () {}, + "getGridColumn": function () {}, + "getGridColumns": function () {}, + "getGroupAutoColumns": function () {}, + "getGroupDisplayColumns": function () {}, + "getHeaderName": function () {}, + "getHeaderRowCount": function () {}, + "getLeftDisplayedColumnGroups": function () {}, + "getOriginalColumnGroup": function () {}, + "getPinnedLeftContainerWidth": function () {}, + "getPinnedRightContainerWidth": function () {}, + "getPivotColumns": function () {}, + "getPrimaryAndSecondaryAndAutoColumns": function () {}, + "getPrimaryColumn": function () {}, + "getPrimaryColumnTree": function () {}, + "getPrimaryOrGridColumn": function () {}, + "getRightDisplayedColumnGroups": function () {}, + "getRowGroupColumns": function () {}, + "getSecondaryColumns": function () {}, + "getSecondaryPivotColumn": function () {}, + "getValueColumns": function () {}, + "getVirtualHeaderGroupRow": function () {}, + "getWidthOfColsInList": function () {}, + "init": function () {}, + "isAutoRowHeightActive": function () {}, + "isColumnDisplayed": function () {}, + "isColumnInViewport": function () {}, + "isEmpty": function () {}, + "isPinningLeft": function () {}, + "isPinningRight": function () {}, + "isPivotActive": function () {}, + "isPivotMode": function () {}, + "isPivotSettingAllowed": function () {}, + "isPrimaryColumnGroupsPresent": function () {}, + "isReady": function () {}, + "isRowGroupEmpty": function () {}, + "isSecondaryColumnsPresent": function () {}, + "moveColumn": function () {}, + "moveColumnByIndex": function () {}, + "moveColumns": function () {}, + "moveRowGroupColumn": function () {}, + "normaliseColumnWidth": function () {}, + "orderColumnStateList": function () {}, + "orderGridColsLikeLastPrimary": function () {}, + "processSecondaryColumnDefinitions": function () {}, + "putFixedColumnsFirst": function () {}, + "raiseColumnEvents": function () {}, + "raiseColumnMovedEvent": function () {}, + "raiseColumnPinnedEvent": function () {}, + "raiseColumnResizeEvent": function () {}, + "raiseColumnVisibleEvent": function () {}, + "removePivotColumn": function () {}, + "removePivotColumns": function () {}, + "removeRowGroupColumn": function () {}, + "removeRowGroupColumns": function () {}, + "removeValueColumn": function () {}, + "removeValueColumns": function () {}, + "resetColumnGroupState": function () {}, + "resetColumnState": function () {}, + "resizeColumnSets": function () {}, + "setBeans": function () {}, + "setColumnAggFunc": function () {}, + "setColumnDefs": function () {}, + "setColumnGroupOpened": function () {}, + "setColumnGroupState": function () {}, + "setColumnPinned": function () {}, + "setColumnState": function () {}, + "setColumnVisible": function () {}, + "setColumnWidth": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {}, + "setFirstRightAndLastLeftPinned": function () {}, + "setLeftValues": function () {}, + "setLeftValuesOfColumns": function () {}, + "setLeftValuesOfGroups": function () {}, + "setPivotColumns": function () {}, + "setPivotMode": function () {}, + "setPrimaryColumnList": function () {}, + "setRowGroupActive": function () {}, + "setRowGroupColumns": function () {}, + "setSecondaryColumns": function () {}, + "setValueActive": function () {}, + "setValueColumns": function () {}, + "setVirtualViewportLeftAndRight": function () {}, + "setVirtualViewportPosition": function () {}, + "setupAllDisplayedColumns": function () {}, + "setupQuickFilterColumns": function () {}, + "sizeColumnsToFit": function () {}, + "sortColumnListUsingIndexes": function () {}, + "syncColumnWithNoState": function () {}, + "syncColumnWithStateItem": function () {}, + "updateBodyWidths": function () {}, + "updateDisplayedCenterVirtualColumns": function () {}, + "updateDisplayedColumns": function () {}, + "updateDisplayedColumnsFromTrees": function () {}, + "updateDisplayedVirtualGroups": function () {}, + "updateGridColumns": function () {}, + "updateGroupsAndDisplayedColumns": function () {}, + "updateOpenClosedVisibilityInColumnGroups": function () {}, + "updatePrimaryColumnList": function () {}, + "updateVirtualSets": function () {}, + "wrapHeaderNameWithAggFunc": function () {} +}; +agGrid.ColumnFactory.prototype = { + "assignColumnTypes": function () {}, + "balanceColumnTree": function () {}, + "checkForDeprecatedItems": function () {}, + "createAutoGroupTreeItem": function () {}, + "createColumn": function () {}, + "createColumnGroup": function () {}, + "createColumnTree": function () {}, + "createForAutoGroups": function () {}, + "createMergedColGroupDef": function () {}, + "findDept": function () {}, + "findExistingColumn": function () {}, + "findMaxDept": function () {}, + "isColumnGroup": function () {}, + "mergeColDefs": function () {}, + "recursivelyCreateColumns": function () {}, + "setBeans": function () {} +}; +agGrid.ColumnGroup.prototype = { + "addChild": function () {}, + "addDisplayedLeafColumns": function () {}, + "addEventListener": function () {}, + "addLeafColumns": function () {}, + "calculateDisplayedColumns": function () {}, + "checkLeft": function () {}, + "createAgEvent": function () {}, + "getActualWidth": function () {}, + "getChildren": function () {}, + "getColGroupDef": function () {}, + "getColumnGroupShow": function () {}, + "getDefinition": function () {}, + "getDisplayedChildren": function () {}, + "getDisplayedLeafColumns": function () {}, + "getGroupId": function () {}, + "getInstanceId": function () {}, + "getLeafColumns": function () {}, + "getLeft": function () {}, + "getMinWidth": function () {}, + "getOldLeft": function () {}, + "getOriginalColumnGroup": function () {}, + "getParent": function () {}, + "getPinned": function () {}, + "getUniqueId": function () {}, + "isChildInThisGroupDeepSearch": function () {}, + "isEmptyGroup": function () {}, + "isExpandable": function () {}, + "isExpanded": function () {}, + "isMoving": function () {}, + "isPadding": function () {}, + "isResizable": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "setExpanded": function () {}, + "setLeft": function () {}, + "setParent": function () {} +}; +agGrid.ColumnKeyCreator.prototype = { + "addExistingKeys": function () {}, + "getUniqueKey": function () {} +}; +agGrid.ColumnUtils.prototype = { + "calculateColInitialWidth": function () {}, + "depthFirstAllColumnTreeSearch": function () {}, + "depthFirstDisplayedColumnTreeSearch": function () {}, + "depthFirstOriginalTreeSearch": function () {}, + "getOriginalPathForColumn": function () {} +}; +agGrid.Component.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.ComponentProvider.prototype = { + "init": function () {}, + "registerComponent": function () {}, + "registerDefaultComponent": function () {}, + "registerFwComponent": function () {}, + "retrieve": function () {}, + "translateIfDeprecated": function () {} +}; +agGrid.ComponentResolver.prototype = { + "createAgGridComponent": function () {}, + "createInternalAgGridComponent": function () {}, + "getComponentToUse": function () {}, + "initialiseComponent": function () {}, + "mergeParams": function () {}, + "newAgGridComponent": function () {}, + "resolveByName": function () {} +}; +agGrid.Context.prototype = { + "addComponent": function () {}, + "autoWireBean": function () {}, + "autoWireBeans": function () {}, + "createBeanEntry": function () {}, + "createBeans": function () {}, + "createComponent": function () {}, + "destroy": function () {}, + "getBean": function () {}, + "getBeanName": function () {}, + "getBeansForParameters": function () {}, + "getEnterpriseDefaultComponents": function () {}, + "lookupBeanInstance": function () {}, + "methodWireBean": function () {}, + "methodWireBeans": function () {}, + "postConstruct": function () {}, + "preConstruct": function () {}, + "setupComponents": function () {}, + "wireBean": function () {}, + "wireBeans": function () {} +}; +agGrid.CsvCreator.prototype = { + "constructor": function () {}, + "createSerializingSession": function () {}, + "export": function () {}, + "exportDataAsCsv": function () {}, + "getData": function () {}, + "getDataAsCsv": function () {}, + "getDefaultFileExtension": function () {}, + "getDefaultFileName": function () {}, + "getMergedParamsAndData": function () {}, + "getMimeType": function () {}, + "isExportSuppressed": function () {}, + "mergeDefaultParams": function () {}, + "packageFile": function () {}, + "postConstruct": function () {}, + "setBeans": function () {} +}; +agGrid.DateFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "bodyTemplate": function () {}, + "comparator": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createComponents": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "defaultComparator": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIndividualFilterPasses": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDateFrom": function () {}, + "getDateTo": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilterType": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "nullComparator": function () {}, + "onClearButton": function () {}, + "onDateChanged": function () {}, + "onFilterChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setDateFrom": function () {}, + "setDateFrom_date": function () {}, + "setDateTo": function () {}, + "setDateTo_date": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "translateNull": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.DisplayedGroupCreator.prototype = { + "createColumnGroup": function () {}, + "createDisplayedGroups": function () {}, + "getOriginalPathForColumn": function () {}, + "mapOldGroupsById": function () {}, + "setupParentsIntoColumns": function () {} +}; +agGrid.Downloader.prototype = { + "download": function () {} +}; +agGrid.DragAndDropService.prototype = { + "addDragSource": function () {}, + "addDropTarget": function () {}, + "createDropTargetEvent": function () {}, + "createGhost": function () {}, + "destroy": function () {}, + "enterDragTargetIfExists": function () {}, + "getAllContainersFromDropTarget": function () {}, + "getStringType": function () {}, + "init": function () {}, + "isMouseOnDropTarget": function () {}, + "leaveLastTargetIfExists": function () {}, + "nudge": function () {}, + "onDragStart": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "positionGhost": function () {}, + "removeDragSource": function () {}, + "removeGhost": function () {}, + "setBeans": function () {}, + "setGhostIcon": function () {}, + "workOutHDirection": function () {}, + "workOutVDirection": function () {} +}; +agGrid.DragService.prototype = { + "addDragSource": function () {}, + "destroy": function () {}, + "getFirstActiveTouch": function () {}, + "init": function () {}, + "isEventNearStartEvent": function () {}, + "onCommonMove": function () {}, + "onMouseDown": function () {}, + "onMouseMove": function () {}, + "onMouseUp": function () {}, + "onTouchMove": function () {}, + "onTouchStart": function () {}, + "onTouchUp": function () {}, + "onUpCommon": function () {}, + "removeDragSource": function () {}, + "removeListener": function () {}, + "setNoSelectToBody": function () {} +}; +agGrid.Environment.prototype = { + "getSassVariable": function () {}, + "getTheme": function () {}, + "loadSassVariables": function () {} +}; +agGrid.EventService.prototype = { + "addEventListener": function () {}, + "addGlobalListener": function () {}, + "addModalPriorityEventListener": function () {}, + "dispatchAsync": function () {}, + "dispatchEvent": function () {}, + "dispatchEventOnce": function () {}, + "dispatchToListeners": function () {}, + "flushAsyncQueue": function () {}, + "getListenerList": function () {}, + "removeEventListener": function () {}, + "removeGlobalListener": function () {}, + "setBeans": function () {} +}; +agGrid.ExpressionService.prototype = { + "createExpressionFunction": function () {}, + "createFunctionBody": function () {}, + "evaluate": function () {}, + "evaluateExpression": function () {}, + "setBeans": function () {} +}; +agGrid.FilterManager.prototype = { + "aggregateRowForQuickFilter": function () {}, + "cachedFilter": function () {}, + "checkExternalFilter": function () {}, + "createFilterInstance": function () {}, + "createFilterWrapper": function () {}, + "createValueGetter": function () {}, + "destroy": function () {}, + "destroyFilter": function () {}, + "disposeFilterWrapper": function () {}, + "doesFilterPass": function () {}, + "doesRowPassFilter": function () {}, + "doesRowPassOtherFilters": function () {}, + "doesRowPassQuickFilter": function () {}, + "doesRowPassQuickFilterCache": function () {}, + "doesRowPassQuickFilterNoCache": function () {}, + "getFilterComponent": function () {}, + "getFilterModel": function () {}, + "getOrCreateFilterWrapper": function () {}, + "getQuickFilterTextForColumn": function () {}, + "init": function () {}, + "isAdvancedFilterPresent": function () {}, + "isAnyFilterPresent": function () {}, + "isFilterActive": function () {}, + "isQuickFilterPresent": function () {}, + "onFilterChanged": function () {}, + "onNewColumnsLoaded": function () {}, + "onNewRowsLoaded": function () {}, + "parseQuickFilter": function () {}, + "putIntoGui": function () {}, + "setAdvancedFilterPresent": function () {}, + "setFilterModel": function () {}, + "setModelOnFilterWrapper": function () {}, + "setQuickFilter": function () {}, + "setQuickFilterParts": function () {}, + "updateFilterFlagInColumns": function () {} +}; +agGrid.FilterStage.prototype = { + "execute": function () {} +}; +agGrid.FlattenStage.prototype = { + "addRowNodeToRowsToDisplay": function () {}, + "createDetailNode": function () {}, + "ensureFooterNodeExists": function () {}, + "execute": function () {}, + "recursivelyAddToRowsToDisplay": function () {}, + "resetRowTops": function () {} +}; +agGrid.FocusedCellController.prototype = { + "clearFocusedCell": function () {}, + "getFocusCellToUseAfterRefresh": function () {}, + "getFocusedCell": function () {}, + "getGridCellForDomElement": function () {}, + "init": function () {}, + "isAnyCellFocused": function () {}, + "isCellFocused": function () {}, + "isRowFocused": function () {}, + "isRowNodeFocused": function () {}, + "onCellFocused": function () {}, + "setFocusedCell": function () {} +}; +agGrid.Grid.prototype = { + "destroy": function () {}, + "dispatchGridReadyEvent": function () {}, + "getRowModelClass": function () {}, + "setColumnsAndData": function () {} +}; +agGrid.Grid.RowModelClasses.clientSide.prototype = { + "batchUpdateRowData": function () {}, + "commonUpdateRowData": function () {}, + "createChangePath": function () {}, + "doAggregate": function () {}, + "doFilter": function () {}, + "doPivot": function () {}, + "doRowGrouping": function () {}, + "doRowsToDisplay": function () {}, + "doSort": function () {}, + "ensureRowAtPixel": function () {}, + "executeBatchUpdateRowData": function () {}, + "expandOrCollapseAll": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "forEachPivotNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getCurrentPageHeight": function () {}, + "getGroupState": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRootNode": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getTopLevelNodes": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowInPixel": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onFilterChanged": function () {}, + "onRowGroupOpened": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "onValueChanged": function () {}, + "recursivelyWalkNodesAndCallback": function () {}, + "refreshModel": function () {}, + "resetRowHeights": function () {}, + "restoreGroupState": function () {}, + "setDatasource": function () {}, + "setRowData": function () {}, + "updateRowData": function () {} +}; +agGrid.Grid.RowModelClasses.infinite.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListeners": function () {}, + "checkForDeprecated": function () {}, + "constructor": function () {}, + "createModelUpdatedEvent": function () {}, + "destroy": function () {}, + "destroyCache": function () {}, + "destroyDatasource": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "getBlockState": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isMaxRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "isSortModelDifferent": function () {}, + "onCacheUpdated": function () {}, + "onColumnEverything": function () {}, + "onFilterChanged": function () {}, + "onSortChanged": function () {}, + "purgeCache": function () {}, + "refreshCache": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "resetCache": function () {}, + "setDatasource": function () {}, + "setVirtualRowCount": function () {}, + "updateRowData": function () {} +}; +agGrid.GridApi.prototype = { + "__getAlignedGridService": function () {}, + "addAggFunc": function () {}, + "addAggFuncs": function () {}, + "addDetailGridInfo": function () {}, + "addEventListener": function () {}, + "addGlobalListener": function () {}, + "addItems": function () {}, + "addRangeSelection": function () {}, + "addRenderedRowListener": function () {}, + "addVirtualRowListener": function () {}, + "batchUpdateRowData": function () {}, + "camelCaseToHumanReadable": function () {}, + "checkGridSize": function () {}, + "clearAggFuncs": function () {}, + "clearFocusedCell": function () {}, + "clearRangeSelection": function () {}, + "closeToolPanel": function () {}, + "collapseAll": function () {}, + "copySelectedRangeDown": function () {}, + "copySelectedRangeToClipboard": function () {}, + "copySelectedRowsToClipboard": function () {}, + "deselectAll": function () {}, + "deselectAllFiltered": function () {}, + "deselectIndex": function () {}, + "deselectNode": function () {}, + "destroy": function () {}, + "destroyFilter": function () {}, + "dispatchEvent": function () {}, + "doLayout": function () {}, + "ensureColIndexVisible": function () {}, + "ensureColumnVisible": function () {}, + "ensureIndexVisible": function () {}, + "ensureNodeVisible": function () {}, + "expandAll": function () {}, + "expireValueCache": function () {}, + "exportDataAsCsv": function () {}, + "exportDataAsExcel": function () {}, + "flashCells": function () {}, + "forEachDetailGridInfo": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "getBestCostNodeSelection": function () {}, + "getCacheBlockState": function () {}, + "getCellEditorInstances": function () {}, + "getCellRendererInstances": function () {}, + "getColumnDef": function () {}, + "getDataAsCsv": function () {}, + "getDataAsExcel": function () {}, + "getDetailGridInfo": function () {}, + "getDisplayedRowAtIndex": function () {}, + "getDisplayedRowCount": function () {}, + "getEditingCells": function () {}, + "getFilterApi": function () {}, + "getFilterApiForColDef": function () {}, + "getFilterInstance": function () {}, + "getFilterModel": function () {}, + "getFirstDisplayedRow": function () {}, + "getFirstRenderedRow": function () {}, + "getFloatingBottomRow": function () {}, + "getFloatingBottomRowCount": function () {}, + "getFloatingTopRow": function () {}, + "getFloatingTopRowCount": function () {}, + "getFocusedCell": function () {}, + "getInfinitePageState": function () {}, + "getInfiniteRowCount": function () {}, + "getLastDisplayedRow": function () {}, + "getLastRenderedRow": function () {}, + "getModel": function () {}, + "getOpenedToolPanel": function () {}, + "getPinnedBottomRow": function () {}, + "getPinnedBottomRowCount": function () {}, + "getPinnedTopRow": function () {}, + "getPinnedTopRowCount": function () {}, + "getPreferredWidth": function () {}, + "getRangeSelections": function () {}, + "getRenderedNodes": function () {}, + "getRowNode": function () {}, + "getSelectedNodes": function () {}, + "getSelectedNodesById": function () {}, + "getSelectedRows": function () {}, + "getSideBar": function () {}, + "getSortModel": function () {}, + "getStatusPanel": function () {}, + "getValue": function () {}, + "getVerticalPixelRange": function () {}, + "getVirtualPageState": function () {}, + "getVirtualRowCount": function () {}, + "hideOverlay": function () {}, + "hidePopupMenu": function () {}, + "init": function () {}, + "insertItemsAtIndex": function () {}, + "isAdvancedFilterPresent": function () {}, + "isAnimationFrameQueueEmpty": function () {}, + "isAnyFilterPresent": function () {}, + "isMaxRowFound": function () {}, + "isNodeSelected": function () {}, + "isQuickFilterPresent": function () {}, + "isSideBarVisible": function () {}, + "isToolPanelShowing": function () {}, + "onFilterChanged": function () {}, + "onGroupExpandedOrCollapsed": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "openToolPanel": function () {}, + "paginationGetCurrentPage": function () {}, + "paginationGetPageSize": function () {}, + "paginationGetRowCount": function () {}, + "paginationGetTotalPages": function () {}, + "paginationGoToFirstPage": function () {}, + "paginationGoToLastPage": function () {}, + "paginationGoToNextPage": function () {}, + "paginationGoToPage": function () {}, + "paginationGoToPreviousPage": function () {}, + "paginationIsLastPageFound": function () {}, + "paginationSetPageSize": function () {}, + "purgeEnterpriseCache": function () {}, + "purgeInfiniteCache": function () {}, + "purgeInfinitePageCache": function () {}, + "purgeServerSideCache": function () {}, + "purgeVirtualPageCache": function () {}, + "recomputeAggregates": function () {}, + "redrawRows": function () {}, + "refreshCells": function () {}, + "refreshClientSideRowModel": function () {}, + "refreshGroupRows": function () {}, + "refreshHeader": function () {}, + "refreshInMemoryRowModel": function () {}, + "refreshInfiniteCache": function () {}, + "refreshInfinitePageCache": function () {}, + "refreshRows": function () {}, + "refreshToolPanel": function () {}, + "refreshView": function () {}, + "refreshVirtualPageCache": function () {}, + "registerGridComp": function () {}, + "registerHeaderRootComp": function () {}, + "removeDetailGridInfo": function () {}, + "removeEventListener": function () {}, + "removeGlobalListener": function () {}, + "removeItems": function () {}, + "resetQuickFilter": function () {}, + "resetRowHeights": function () {}, + "rowDataChanged": function () {}, + "selectAll": function () {}, + "selectAllFiltered": function () {}, + "selectIndex": function () {}, + "selectNode": function () {}, + "setColumnDefs": function () {}, + "setDatasource": function () {}, + "setDomLayout": function () {}, + "setEnterpriseDatasource": function () {}, + "setFilterModel": function () {}, + "setFloatingBottomRowData": function () {}, + "setFloatingFiltersHeight": function () {}, + "setFloatingTopRowData": function () {}, + "setFocusedCell": function () {}, + "setFunctionsReadOnly": function () {}, + "setGridAutoHeight": function () {}, + "setGroupHeaderHeight": function () {}, + "setGroupRemoveLowestSingleChildren": function () {}, + "setGroupRemoveSingleChildren": function () {}, + "setHeaderHeight": function () {}, + "setInfiniteRowCount": function () {}, + "setPinnedBottomRowData": function () {}, + "setPinnedTopRowData": function () {}, + "setPivotGroupHeaderHeight": function () {}, + "setPivotHeaderHeight": function () {}, + "setPopupParent": function () {}, + "setQuickFilter": function () {}, + "setRowData": function () {}, + "setServerSideDatasource": function () {}, + "setSideBar": function () {}, + "setSideBarVisible": function () {}, + "setSortModel": function () {}, + "setSuppressClipboardPaste": function () {}, + "setSuppressRowDrag": function () {}, + "setViewportDatasource": function () {}, + "setVirtualRowCount": function () {}, + "showColumnMenuAfterButtonClick": function () {}, + "showColumnMenuAfterMouseClick": function () {}, + "showLoadingOverlay": function () {}, + "showNoRowsOverlay": function () {}, + "showToolPanel": function () {}, + "sizeColumnsToFit": function () {}, + "softRefreshView": function () {}, + "startEditingCell": function () {}, + "stopEditing": function () {}, + "tabToNextCell": function () {}, + "tabToPreviousCell": function () {}, + "timeFullRedraw": function () {}, + "updateRowData": function () {} +}; +agGrid.GridCell.prototype = { + "createId": function () {}, + "equals": function () {}, + "getGridCellDef": function () {}, + "getGridRow": function () {}, + "toString": function () {} +}; +agGrid.GridCore.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addRtlSupport": function () {}, + "appendChild": function () {}, + "closeToolPanel": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureNodeVisible": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getOpenedToolPanel": function () {}, + "getPreferredWidth": function () {}, + "getRefElement": function () {}, + "getRootGui": function () {}, + "getSideBar": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isSideBarVisible": function () {}, + "isToolPanelShowing": function () {}, + "isVisible": function () {}, + "onGridSizeChanged": function () {}, + "openToolPanel": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setSideBar": function () {}, + "setSideBarVisible": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GridOptionsWrapper.prototype = { + "addEventListener": function () {}, + "addLayoutElement": function () {}, + "agWire": function () {}, + "checkColumnDefProperties": function () {}, + "checkForDeprecated": function () {}, + "checkForViolations": function () {}, + "checkGridOptionsProperties": function () {}, + "checkProperties": function () {}, + "destroy": function () {}, + "doesExternalFilterPass": function () {}, + "getAggFuncs": function () {}, + "getAlignedGrids": function () {}, + "getApi": function () {}, + "getAutoGroupColumnDef": function () {}, + "getAutoSizePadding": function () {}, + "getBatchUpdateWaitMillis": function () {}, + "getBlockLoadDebounceMillis": function () {}, + "getBusinessKeyForNodeFunc": function () {}, + "getCacheBlockSize": function () {}, + "getCacheOverflowSize": function () {}, + "getChildCountFunc": function () {}, + "getClipboardDeliminator": function () {}, + "getColResizeDefault": function () {}, + "getColWidth": function () {}, + "getColumnApi": function () {}, + "getColumnDefs": function () {}, + "getColumnTypes": function () {}, + "getContext": function () {}, + "getContextMenuItemsFunc": function () {}, + "getDataPathFunc": function () {}, + "getDatasource": function () {}, + "getDefaultColDef": function () {}, + "getDefaultColGroupDef": function () {}, + "getDefaultExportParams": function () {}, + "getDefaultGroupSortComparator": function () {}, + "getDefaultRowHeight": function () {}, + "getDocument": function () {}, + "getDoesDataFlowerFunc": function () {}, + "getDomData": function () {}, + "getDomLayout": function () {}, + "getFloatingFiltersHeight": function () {}, + "getFullWidthCellRendererParams": function () {}, + "getGroupDefaultExpanded": function () {}, + "getGroupHeaderHeight": function () {}, + "getGroupRowAggNodesFunc": function () {}, + "getGroupRowRendererParams": function () {}, + "getHeaderHeight": function () {}, + "getIcons": function () {}, + "getInfiniteInitialRowCount": function () {}, + "getIsFullWidthCellFunc": function () {}, + "getIsRowMasterFunc": function () {}, + "getIsRowSelectableFunc": function () {}, + "getIsServerSideGroupFunc": function () {}, + "getLocaleTextFunc": function () {}, + "getMainMenuItemsFunc": function () {}, + "getMaxBlocksInCache": function () {}, + "getMaxColWidth": function () {}, + "getMaxConcurrentDatasourceRequests": function () {}, + "getMinColWidth": function () {}, + "getNavigateToNextCellFunc": function () {}, + "getNodeChildDetailsFunc": function () {}, + "getOverlayLoadingTemplate": function () {}, + "getOverlayNoRowsTemplate": function () {}, + "getPaginationNumberFormatterFunc": function () {}, + "getPaginationPageSize": function () {}, + "getPinnedBottomRowData": function () {}, + "getPinnedTopRowData": function () {}, + "getPivotColumnGroupTotals": function () {}, + "getPivotGroupHeaderHeight": function () {}, + "getPivotHeaderHeight": function () {}, + "getPivotPanelShow": function () {}, + "getPivotRowTotals": function () {}, + "getPopupParent": function () {}, + "getPostProcessPopupFunc": function () {}, + "getPostSortFunc": function () {}, + "getProcessCellForClipboardFunc": function () {}, + "getProcessCellFromClipboardFunc": function () {}, + "getProcessDataFromClipboardFunc": function () {}, + "getProcessHeaderForClipboardFunc": function () {}, + "getProcessRowPostCreateFunc": function () {}, + "getProcessSecondaryColDefFunc": function () {}, + "getProcessSecondaryColGroupDefFunc": function () {}, + "getQuickFilterText": function () {}, + "getRowBuffer": function () {}, + "getRowClass": function () {}, + "getRowClassFunc": function () {}, + "getRowData": function () {}, + "getRowGroupPanelShow": function () {}, + "getRowHeightAsNumber": function () {}, + "getRowHeightForNode": function () {}, + "getRowNodeIdFunc": function () {}, + "getRowStyle": function () {}, + "getRowStyleFunc": function () {}, + "getScrollbarWidth": function () {}, + "getSendToClipboardFunc": function () {}, + "getServerSideDatasource": function () {}, + "getServerSideGroupKeyFunc": function () {}, + "getSideBar": function () {}, + "getSortingOrder": function () {}, + "getTabToNextCellFunc": function () {}, + "getViewportDatasource": function () {}, + "getViewportRowModelBufferSize": function () {}, + "getViewportRowModelPageSize": function () {}, + "getVirtualItemHeight": function () {}, + "globalEventHandler": function () {}, + "init": function () {}, + "isAccentedSort": function () {}, + "isAggregateOnlyChangedColumns": function () {}, + "isAllowContextMenuWithControlKey": function () {}, + "isAngularCompileFilters": function () {}, + "isAngularCompileHeaders": function () {}, + "isAngularCompileRows": function () {}, + "isAnimateRows": function () {}, + "isCacheQuickFilter": function () {}, + "isDebug": function () {}, + "isDeltaRowDataMode": function () {}, + "isDynamicRowHeight": function () {}, + "isEmbedFullWidthRows": function () {}, + "isEnableCellChangeFlash": function () {}, + "isEnableCellExpressions": function () {}, + "isEnableColResize": function () {}, + "isEnableFilter": function () {}, + "isEnableGroupEdit": function () {}, + "isEnableOldSetFilterModel": function () {}, + "isEnableRangeSelection": function () {}, + "isEnableRtl": function () {}, + "isEnableServerSideFilter": function () {}, + "isEnableServerSideSorting": function () {}, + "isEnableSorting": function () {}, + "isEnsureDomOrder": function () {}, + "isEnterMovesDown": function () {}, + "isEnterMovesDownAfterEdit": function () {}, + "isEnterprise": function () {}, + "isExternalFilterPresent": function () {}, + "isFloatingFilter": function () {}, + "isFullRowEdit": function () {}, + "isFunctionsPassive": function () {}, + "isFunctionsReadOnly": function () {}, + "isGroupHideOpenParents": function () {}, + "isGroupIncludeFooter": function () {}, + "isGroupIncludeTotalFooter": function () {}, + "isGroupMultiAutoColumn": function () {}, + "isGroupRemoveLowestSingleChildren": function () {}, + "isGroupRemoveSingleChildren": function () {}, + "isGroupSelectsChildren": function () {}, + "isGroupSelectsFiltered": function () {}, + "isGroupSuppressAutoColumn": function () {}, + "isGroupSuppressBlankHeader": function () {}, + "isGroupSuppressRow": function () {}, + "isGroupUseEntireRow": function () {}, + "isMasterDetail": function () {}, + "isMultiSortKeyCtrl": function () {}, + "isNumeric": function () {}, + "isPagination": function () {}, + "isPaginationAutoPageSize": function () {}, + "isPivotMode": function () {}, + "isPivotTotals": function () {}, + "isPurgeClosedRowNodes": function () {}, + "isRememberGroupStateWhenNewData": function () {}, + "isRowDeselection": function () {}, + "isRowDragManaged": function () {}, + "isRowModelDefault": function () {}, + "isRowModelInfinite": function () {}, + "isRowModelServerSide": function () {}, + "isRowModelViewport": function () {}, + "isRowMultiSelectWithClick": function () {}, + "isRowSelection": function () {}, + "isRowSelectionMulti": function () {}, + "isServerSideSortingAlwaysResets": function () {}, + "isShowToolPanel": function () {}, + "isSingleClickEdit": function () {}, + "isStopEditingWhenGridLosesFocus": function () {}, + "isSuppressAggAtRootLevel": function () {}, + "isSuppressAggFuncInHeader": function () {}, + "isSuppressAnimationFrame": function () {}, + "isSuppressAutoSize": function () {}, + "isSuppressCellSelection": function () {}, + "isSuppressChangeDetection": function () {}, + "isSuppressClickEdit": function () {}, + "isSuppressClipboardPaste": function () {}, + "isSuppressColumnMoveAnimation": function () {}, + "isSuppressColumnVirtualisation": function () {}, + "isSuppressContextMenu": function () {}, + "isSuppressCopyRowsToClipboard": function () {}, + "isSuppressCsvExport": function () {}, + "isSuppressDragLeaveHidesColumns": function () {}, + "isSuppressEnterpriseResetOnNewColumns": function () {}, + "isSuppressExcelExport": function () {}, + "isSuppressFieldDotNotation": function () {}, + "isSuppressFocusAfterRefresh": function () {}, + "isSuppressHorizontalScroll": function () {}, + "isSuppressLoadingOverlay": function () {}, + "isSuppressMakeColumnVisibleAfterUnGroup": function () {}, + "isSuppressMenuHide": function () {}, + "isSuppressMiddleClickScrolls": function () {}, + "isSuppressMovableColumns": function () {}, + "isSuppressMultiRangeSelection": function () {}, + "isSuppressMultiSort": function () {}, + "isSuppressNoRowsOverlay": function () {}, + "isSuppressPaginationPanel": function () {}, + "isSuppressParentsInRowNodes": function () {}, + "isSuppressPreventDefaultOnMouseWheel": function () {}, + "isSuppressRowClickSelection": function () {}, + "isSuppressRowDrag": function () {}, + "isSuppressRowHoverHighlight": function () {}, + "isSuppressRowTransform": function () {}, + "isSuppressScrollOnNewData": function () {}, + "isSuppressSetColumnStateEvents": function () {}, + "isSuppressTabbing": function () {}, + "isSuppressTouch": function () {}, + "isTreeData": function () {}, + "isUnSortIcon": function () {}, + "isValueCache": function () {}, + "isValueCacheNeverExpires": function () {}, + "removeEventListener": function () {}, + "rowClassRules": function () {}, + "setDomData": function () {}, + "setProperty": function () {}, + "specialForNewMaterial": function () {}, + "treeDataViolations": function () {}, + "updateLayoutClasses": function () {}, + "useAsyncEvents": function () {} +}; +agGrid.GridPanel.prototype = { + "__agComponentMetaData": function () {}, + "addAngularApplyCheck": function () {}, + "addAnnotatedEventListeners": function () {}, + "addBodyViewportListener": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDragListeners": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListeners": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addKeyboardEvents": function () {}, + "addMouseListeners": function () {}, + "addOrRemoveCssClass": function () {}, + "addRowDragListener": function () {}, + "addScrollEventListener": function () {}, + "addScrollListener": function () {}, + "addShortcutKeyListeners": function () {}, + "addStopEditingWhenGridLosesFocus": function () {}, + "appendChild": function () {}, + "buildRowContainerComponents": function () {}, + "checkBodyHeight": function () {}, + "checkViewportAndScrolls": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "disableBrowserDragging": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doHorizontalScroll": function () {}, + "ensureColumnVisible": function () {}, + "ensureIndexVisible": function () {}, + "eventDueToMakingContainerVisible": function () {}, + "executeFrame": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getBodyClientRect": function () {}, + "getBodyContainer": function () {}, + "getBodyHeight": function () {}, + "getBodyViewportScrollLeft": function () {}, + "getCenterWidth": function () {}, + "getCompId": function () {}, + "getDropTargetBodyContainers": function () {}, + "getDropTargetLeftContainers": function () {}, + "getDropTargetRightContainers": function () {}, + "getGui": function () {}, + "getHScrollPosition": function () {}, + "getRefElement": function () {}, + "getRowContainers": function () {}, + "getRowForEvent": function () {}, + "getVScrollPosition": function () {}, + "getWidthForSizeColsToFit": function () {}, + "handleContextMenuMouseEvent": function () {}, + "hideFullWidthViewportScrollbars": function () {}, + "hideOverlay": function () {}, + "hideVerticalScrollOnCenter": function () {}, + "horizontallyScrollHeaderCenterAndFloatingCenter": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isHorizontalScrollShowing": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "mockContextMenuForIPad": function () {}, + "onAnyBodyScroll": function () {}, + "onBodyHorizontalScroll": function () {}, + "onBodyViewportResized": function () {}, + "onContextMenu": function () {}, + "onCtrlAndA": function () {}, + "onCtrlAndC": function () {}, + "onCtrlAndD": function () {}, + "onCtrlAndV": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onDisplayedColumnsWidthChanged": function () {}, + "onDomLayoutChanged": function () {}, + "onHorizontalViewportChanged": function () {}, + "onNewColumnsLoaded": function () {}, + "onRowDataChanged": function () {}, + "preventDefaultOnContextMenu": function () {}, + "processKeyboardEvent": function () {}, + "processMouseEvent": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawRowsAfterScroll": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "removeScrollEventListener": function () {}, + "scrollHorizontally": function () {}, + "scrollToTop": function () {}, + "scrollVertically": function () {}, + "setBodyAndHeaderHeights": function () {}, + "setBodyViewportScrollLeft": function () {}, + "setBottomPaddingOnPinned": function () {}, + "setCenterWidth": function () {}, + "setColumnMovingCss": function () {}, + "setGui": function () {}, + "setHorizontalScrollPosition": function () {}, + "setPinnedContainersVisible": function () {}, + "setPinnedLeftWidth": function () {}, + "setPinnedRightWidth": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVerticalScrollPosition": function () {}, + "setVisible": function () {}, + "setWidthsOfContainers": function () {}, + "setupOverlay": function () {}, + "setupRowAnimationCssClass": function () {}, + "showLoadingOverlay": function () {}, + "showNoRowsOverlay": function () {}, + "showOrHideOverlay": function () {}, + "sizeColumnsToFit": function () {}, + "suppressScrollOnFloatingRow": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "synchroniseVerticalScrollPositions": function () {}, + "updateScrollVisibleService": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GridRow.prototype = { + "before": function () {}, + "equals": function () {}, + "getGridCell": function () {}, + "isFloatingBottom": function () {}, + "isFloatingTop": function () {}, + "isNotFloating": function () {}, + "toString": function () {} +}; +agGrid.GridSerializer.prototype = { + "doAddHeaderHeader": function () {}, + "recursivelyAddHeaderGroups": function () {}, + "serialize": function () {} +}; +agGrid.GroupCellRenderer.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCheckboxIfNeeded": function () {}, + "addChildCount": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addExpandAndContract": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addValueElement": function () {}, + "appendChild": function () {}, + "assignBlankValueToGroupFooterCell": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createFooterCell": function () {}, + "createGroupCell": function () {}, + "createLeafCell": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isEmbeddedRowMismatch": function () {}, + "isExpandable": function () {}, + "isUserWantsSelected": function () {}, + "isVisible": function () {}, + "onAllChildrenCountChanged": function () {}, + "onCellDblClicked": function () {}, + "onExpandClicked": function () {}, + "onExpandOrContract": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setIndent": function () {}, + "setPaddingDeprecatedWay": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDragOpenParents": function () {}, + "setupIndent": function () {}, + "showExpandAndContractIcons": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateChildCount": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GroupInstanceIdCreator.prototype = { + "getInstanceIdForKey": function () {} +}; +agGrid.HeaderContainer.prototype = { + "createHeaderRowComps": function () {}, + "destroy": function () {}, + "forEachHeaderElement": function () {}, + "init": function () {}, + "onColumnResized": function () {}, + "onColumnRowGroupChanged": function () {}, + "onColumnValueChanged": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onScrollVisibilityChanged": function () {}, + "refresh": function () {}, + "registerGridComp": function () {}, + "removeAndCreateAllRowComps": function () {}, + "removeHeaderRowComps": function () {}, + "setWidthOfPinnedContainer": function () {}, + "setupDragAndDrop": function () {} +}; +agGrid.HeaderRootComp.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addPreventHeaderScroll": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachHeaderElement": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onDomLayoutChanged": function () {}, + "onPivotModeChanged": function () {}, + "postConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshHeader": function () {}, + "registerGridComp": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setHeight": function () {}, + "setHorizontalScroll": function () {}, + "setLeftVisible": function () {}, + "setRightVisible": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.HeaderRowComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createFloatingFilterParams": function () {}, + "createFloatingFilterWrapper": function () {}, + "createHeaderComp": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachHeaderElement": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getItemsAtDept": function () {}, + "getRefElement": function () {}, + "getWidthForRow": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onColumnResized": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onRowHeightChanged": function () {}, + "onVirtualColumnsChanged": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAndDestroyAllChildComponents": function () {}, + "removeAndDestroyChildComponents": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setWidth": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.HorizontalResizeService.prototype = { + "addResizeBar": function () {}, + "onDragStart": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "resetIcons": function () {}, + "setResizeIcons": function () {} +}; +agGrid.InfiniteRowModel.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListeners": function () {}, + "checkForDeprecated": function () {}, + "constructor": function () {}, + "createModelUpdatedEvent": function () {}, + "destroy": function () {}, + "destroyCache": function () {}, + "destroyDatasource": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "getBlockState": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isMaxRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "isSortModelDifferent": function () {}, + "onCacheUpdated": function () {}, + "onColumnEverything": function () {}, + "onFilterChanged": function () {}, + "onSortChanged": function () {}, + "purgeCache": function () {}, + "refreshCache": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "resetCache": function () {}, + "setDatasource": function () {}, + "setVirtualRowCount": function () {}, + "updateRowData": function () {} +}; +agGrid.LargeTextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.Logger.prototype = { + "isLogging": function () {}, + "log": function () {} +}; +agGrid.LoggerFactory.prototype = { + "create": function () {}, + "isLogging": function () {}, + "setBeans": function () {} +}; +agGrid.MouseEventService.prototype = { + "getGridCellForEvent": function () {}, + "getRenderedCellForEvent": function () {}, + "init": function () {}, + "isEventFromThisGrid": function () {}, + "stampDomElementWithGridInstance": function () {} +}; +agGrid.MoveColumnController.prototype = { + "attemptMoveColumns": function () {}, + "calculateOldIndex": function () {}, + "calculateValidMoves": function () {}, + "checkCenterForScrolling": function () {}, + "ensureIntervalCleared": function () {}, + "ensureIntervalStarted": function () {}, + "getIconName": function () {}, + "init": function () {}, + "isColumnHidden": function () {}, + "moveInterval": function () {}, + "normaliseDirection": function () {}, + "normaliseX": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "registerGridComp": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {} +}; +agGrid.NumberFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addFilterChangedEventListeners": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "asNumber": function () {}, + "bodyTemplate": function () {}, + "comparator": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIndividualFilterPasses": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilter": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "nullComparator": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "onTextFieldsChanged": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setFilter": function () {}, + "setFilterTo": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "stringToFloat": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "translateNull": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.NumberSequence.prototype = { + "next": function () {}, + "peek": function () {}, + "skip": function () {} +}; +agGrid.OriginalColumnGroup.prototype = { + "addEventListener": function () {}, + "addLeafColumns": function () {}, + "getChildren": function () {}, + "getColGroupDef": function () {}, + "getColumnGroupShow": function () {}, + "getGroupId": function () {}, + "getId": function () {}, + "getLeafColumns": function () {}, + "getLevel": function () {}, + "isExpandable": function () {}, + "isExpanded": function () {}, + "isPadding": function () {}, + "isVisible": function () {}, + "onColumnVisibilityChanged": function () {}, + "removeEventListener": function () {}, + "setChildren": function () {}, + "setExpandable": function () {}, + "setExpanded": function () {}, + "setupExpandable": function () {} +}; +agGrid.PinnedRowModel.prototype = { + "createNodesFromData": function () {}, + "forEachPinnedBottomRow": function () {}, + "forEachPinnedTopRow": function () {}, + "getPinnedBottomRow": function () {}, + "getPinnedBottomRowCount": function () {}, + "getPinnedBottomRowData": function () {}, + "getPinnedBottomTotalHeight": function () {}, + "getPinnedTopRow": function () {}, + "getPinnedTopRowCount": function () {}, + "getPinnedTopRowData": function () {}, + "getPinnedTopTotalHeight": function () {}, + "getRowAtPixel": function () {}, + "getTotalHeight": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isRowsToRender": function () {}, + "setPinnedBottomRowData": function () {}, + "setPinnedTopRowData": function () {} +}; +agGrid.PopupEditorWrapper.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "focusOut": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCancelAfterEnd": function () {}, + "isCancelBeforeStart": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PopupSelectCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PopupService.prototype = { + "addAsModalPopup": function () {}, + "addPopup": function () {}, + "calculatePointerAlign": function () {}, + "callPostProcessPopup": function () {}, + "getDocument": function () {}, + "getPopupParent": function () {}, + "isEventFromCurrentPopup": function () {}, + "isEventSameChainAsOriginalEvent": function () {}, + "keepXWithinBounds": function () {}, + "keepYWithinBounds": function () {}, + "positionPopup": function () {}, + "positionPopupForMenu": function () {}, + "positionPopupOverComponent": function () {}, + "positionPopupUnderComponent": function () {}, + "positionPopupUnderMouseEvent": function () {} +}; +agGrid.PopupTextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getStartValue": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.Promise.prototype = { + "firstOneOnly": function () {}, + "map": function () {}, + "onDone": function () {}, + "onReject": function () {}, + "resolveNow": function () {}, + "then": function () {} +}; +agGrid.RowComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDomData": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addHoverFunctionality": function () {}, + "addListeners": function () {}, + "addOrRemoveCssClass": function () {}, + "afterFlush": function () {}, + "afterRowAttached": function () {}, + "angular1Compile": function () {}, + "appendChild": function () {}, + "applyPaginationOffset": function () {}, + "callAfterRowAttachedOnCells": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createCells": function () {}, + "createChildAttributes": function () {}, + "createChildScopeOrNull": function () {}, + "createFullWidthParams": function () {}, + "createFullWidthRowContainer": function () {}, + "createFullWidthRows": function () {}, + "createNewCell": function () {}, + "createRowContainer": function () {}, + "createRowEvent": function () {}, + "createRowEventWithSource": function () {}, + "createTemplate": function () {}, + "destroy": function () {}, + "destroyContainingCells": function () {}, + "destroyFullWidthComponents": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureCellInCorrectContainer": function () {}, + "ensureDomOrder": function () {}, + "executeProcessRowPostCreateFunc": function () {}, + "forEachCellComp": function () {}, + "getAgComponentMetaData": function () {}, + "getAndClearDelayedDestroyFunctions": function () {}, + "getAndClearNextVMTurnFunctions": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getBodyRowElement": function () {}, + "getCellForCol": function () {}, + "getCompId": function () {}, + "getContainerForCell": function () {}, + "getFullWidthRowElement": function () {}, + "getGui": function () {}, + "getInitialRowClasses": function () {}, + "getInitialRowTopStyle": function () {}, + "getPinnedLeftRowElement": function () {}, + "getPinnedRightRowElement": function () {}, + "getRefElement": function () {}, + "getRenderedCellForColumn": function () {}, + "getRowBusinessKey": function () {}, + "getRowNode": function () {}, + "init": function () {}, + "insertCellsIntoContainer": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCellEligibleToBeRemoved": function () {}, + "isCellInWrongRow": function () {}, + "isEditing": function () {}, + "isFirstRowOnPage": function () {}, + "isFullWidth": function () {}, + "isLastRowOnPage": function () {}, + "isVisible": function () {}, + "lazyCreateCells": function () {}, + "onCellFocusChanged": function () {}, + "onColumnResized": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onExpandedChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onModelUpdated": function () {}, + "onMouseEvent": function () {}, + "onPaginationChanged": function () {}, + "onRowClick": function () {}, + "onRowDblClick": function () {}, + "onRowHeightChanged": function () {}, + "onRowIndexChanged": function () {}, + "onRowNodeCellChanged": function () {}, + "onRowNodeDataChanged": function () {}, + "onRowNodeDraggingChanged": function () {}, + "onRowSelected": function () {}, + "onTopChanged": function () {}, + "onVirtualColumnsChanged": function () {}, + "postProcessClassesFromGridOptions": function () {}, + "postProcessCss": function () {}, + "postProcessRowClassRules": function () {}, + "postProcessRowDragging": function () {}, + "postProcessStylesFromGridOptions": function () {}, + "preProcessRowClassRules": function () {}, + "preProcessStylesFromGridOptions": function () {}, + "processClassesFromGridOptions": function () {}, + "processRowClassRules": function () {}, + "processStylesFromGridOptions": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshCells": function () {}, + "refreshCellsInAnimationFrame": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "removeRenderedCells": function () {}, + "roundRowTopToBounds": function () {}, + "setAnimateFlags": function () {}, + "setEditingRow": function () {}, + "setGui": function () {}, + "setRowTop": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupNormalRowContainers": function () {}, + "setupRowContainers": function () {}, + "startRowEditing": function () {}, + "stopEditing": function () {}, + "stopRowEditing": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateRowIndexes": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.RowNode.prototype = { + "addEventListener": function () {}, + "calculateSelectedFromChildren": function () {}, + "checkRowSelectable": function () {}, + "clearRowTop": function () {}, + "createDaemonNode": function () {}, + "createDataChangedEvent": function () {}, + "createGlobalRowEvent": function () {}, + "createLocalRowEvent": function () {}, + "depthFirstSearch": function () {}, + "dispatchCellChangedEvent": function () {}, + "dispatchLocalEvent": function () {}, + "doRowRangeSelection": function () {}, + "getFirstChildOfFirstChild": function () {}, + "getRowIndexString": function () {}, + "hasChildren": function () {}, + "isEmptyFillerNode": function () {}, + "isExpandable": function () {}, + "isParentOfNode": function () {}, + "isPixelInRange": function () {}, + "isRowPinned": function () {}, + "isSelected": function () {}, + "onMouseEnter": function () {}, + "onMouseLeave": function () {}, + "removeEventListener": function () {}, + "resetQuickFilterAggregateText": function () {}, + "selectChildNodes": function () {}, + "selectThisNode": function () {}, + "setAggData": function () {}, + "setAllChildrenCount": function () {}, + "setChildIndex": function () {}, + "setData": function () {}, + "setDataAndId": function () {}, + "setDataValue": function () {}, + "setDragging": function () {}, + "setExpanded": function () {}, + "setFirstChild": function () {}, + "setGroupValue": function () {}, + "setId": function () {}, + "setLastChild": function () {}, + "setRowHeight": function () {}, + "setRowIndex": function () {}, + "setRowSelectable": function () {}, + "setRowTop": function () {}, + "setSelected": function () {}, + "setSelectedInitialValue": function () {}, + "setSelectedParams": function () {}, + "setUiLevel": function () {}, + "updateData": function () {}, + "updateDataOnDetailNode": function () {} +}; +agGrid.RowNodeBlock.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "constructor": function () {}, + "createBlankRowNode": function () {}, + "createRowNodes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "forEachNodeCallback": function () {}, + "forEachNodeDeep": function () {}, + "forEachNodeShallow": function () {}, + "getBlockNumber": function () {}, + "getEndRow": function () {}, + "getLastAccessed": function () {}, + "getRowUsingLocalIndex": function () {}, + "getStartRow": function () {}, + "getState": function () {}, + "getVersion": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isAnyNodeOpen": function () {}, + "load": function () {}, + "pageLoadFailed": function () {}, + "pageLoaded": function () {}, + "populateWithRowData": function () {}, + "removeEventListener": function () {}, + "setBlankRowNode": function () {}, + "setDirty": function () {}, + "setDirtyAndPurge": function () {}, + "setNewData": function () {}, + "setRowNode": function () {} +}; +agGrid.RowNodeBlockLoader.prototype = { + "addBlock": function () {}, + "checkBlockToLoad": function () {}, + "destroy": function () {}, + "getBlockState": function () {}, + "loadComplete": function () {}, + "performCheckBlocksToLoad": function () {}, + "printCacheStatus": function () {}, + "removeBlock": function () {}, + "setBeans": function () {} +}; +agGrid.RowNodeCache.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "checkBlockToLoad": function () {}, + "checkVirtualRowCount": function () {}, + "constructor": function () {}, + "destroy": function () {}, + "destroyBlock": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachBlockId": function () {}, + "forEachBlockInOrder": function () {}, + "forEachBlockInReverseOrder": function () {}, + "forEachNodeDeep": function () {}, + "getBlock": function () {}, + "getBlockIdsSorted": function () {}, + "getRowNodesInRange": function () {}, + "getVirtualRowCount": function () {}, + "hack_setVirtualRowCount": function () {}, + "init": function () {}, + "isActive": function () {}, + "isAlive": function () {}, + "isMaxRowFound": function () {}, + "onCacheUpdated": function () {}, + "onPageLoaded": function () {}, + "postCreateBlock": function () {}, + "purgeBlocksIfNeeded": function () {}, + "purgeCache": function () {}, + "removeBlockFromCache": function () {}, + "removeEventListener": function () {}, + "setBlock": function () {}, + "setVirtualRowCount": function () {} +}; +agGrid.RowRenderer.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addRenderedRowListener": function () {}, + "agWire": function () {}, + "binRowComps": function () {}, + "calculateIndexesToDraw": function () {}, + "checkAngularCompile": function () {}, + "constructor": function () {}, + "createOrUpdateRowComp": function () {}, + "createRowComp": function () {}, + "destroy": function () {}, + "destroyRowComps": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureCellVisible": function () {}, + "findNextCellToFocusOn": function () {}, + "flashCells": function () {}, + "flushContainers": function () {}, + "forEachCellComp": function () {}, + "forEachCellCompFiltered": function () {}, + "forEachRowComp": function () {}, + "getAllCellsForColumn": function () {}, + "getCellEditorInstances": function () {}, + "getCellRendererInstances": function () {}, + "getCellToRestoreFocusToAfterRefresh": function () {}, + "getComponentForCell": function () {}, + "getEditingCells": function () {}, + "getFirstVirtualRenderedRow": function () {}, + "getLastVirtualRenderedRow": function () {}, + "getLockOnRefresh": function () {}, + "getRenderedIndexesForRowNodes": function () {}, + "getRenderedNodes": function () {}, + "isAlive": function () {}, + "keepRowBecauseEditing": function () {}, + "lookupRowNodeForCell": function () {}, + "moveEditToNextCellOrRow": function () {}, + "moveToCellAfter": function () {}, + "moveToNextCellNotEditing": function () {}, + "moveToNextEditingCell": function () {}, + "moveToNextEditingRow": function () {}, + "navigateToNextCell": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onDomLayoutChanged": function () {}, + "onModelUpdated": function () {}, + "onPageLoaded": function () {}, + "onPinnedRowDataChanged": function () {}, + "onTabKeyDown": function () {}, + "redraw": function () {}, + "redrawAfterModelUpdate": function () {}, + "redrawAfterScroll": function () {}, + "redrawFullWidthEmbeddedRows": function () {}, + "redrawRows": function () {}, + "refreshCells": function () {}, + "refreshFloatingRowComps": function () {}, + "refreshFloatingRows": function () {}, + "refreshFullWidthRows": function () {}, + "registerGridComp": function () {}, + "releaseLockOnRefresh": function () {}, + "removeEventListener": function () {}, + "removeRowComps": function () {}, + "removeRowCompsNotToDraw": function () {}, + "restoreFocusedCell": function () {}, + "scrollToTopIfNewData": function () {}, + "sizeContainerToPageHeight": function () {}, + "startEditingCell": function () {}, + "stopEditing": function () {}, + "tabToNextCell": function () {}, + "workOutFirstAndLastRowsToRender": function () {} +}; +agGrid.ScrollVisibleService.prototype = { + "isBodyHorizontalScrollShowing": function () {}, + "isLeftVerticalScrollShowing": function () {}, + "isRightVerticalScrollShowing": function () {}, + "setScrollsVisible": function () {} +}; +agGrid.SelectCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.SelectableService.prototype = { + "init": function () {}, + "recurseDown": function () {}, + "updateSelectableAfterFiltering": function () {}, + "updateSelectableAfterGrouping": function () {} +}; +agGrid.SelectionController.prototype = { + "clearOtherNodes": function () {}, + "deselectAllRowNodes": function () {}, + "deselectIndex": function () {}, + "deselectNode": function () {}, + "getBestCostNodeSelection": function () {}, + "getLastSelectedNode": function () {}, + "getNodeForIdIfSelected": function () {}, + "getSelectedNodes": function () {}, + "getSelectedRows": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "onRowSelected": function () {}, + "removeGroupsFromSelection": function () {}, + "reset": function () {}, + "selectAllRowNodes": function () {}, + "selectIndex": function () {}, + "selectNode": function () {}, + "setBeans": function () {}, + "setLastSelectedNode": function () {}, + "setRowModel": function () {}, + "syncInNewRowNode": function () {}, + "syncInOldRowNode": function () {}, + "syncInRowNode": function () {}, + "updateGroupsFromChildrenSelections": function () {} +}; +agGrid.SetLeftFeature.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "animateInLeft": function () {}, + "constructor": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getColumnOrGroup": function () {}, + "init": function () {}, + "isAlive": function () {}, + "modifyLeftForPrintLayout": function () {}, + "onLeftChanged": function () {}, + "removeEventListener": function () {}, + "setColsSpanning": function () {}, + "setLeft": function () {}, + "setLeftFirstTime": function () {} +}; +agGrid.SortController.prototype = { + "clearSortBarThisColumn": function () {}, + "compareColIds": function () {}, + "dispatchSortChangedEvents": function () {}, + "getColumnsWithSortingOrdered": function () {}, + "getNextSortDirection": function () {}, + "getSortForRowController": function () {}, + "getSortModel": function () {}, + "onSortChanged": function () {}, + "progressSort": function () {}, + "setSortForColumn": function () {}, + "setSortModel": function () {} +}; +agGrid.SortStage.prototype = { + "execute": function () {} +}; +agGrid.StandardMenuFactory.prototype = { + "hideActiveMenu": function () {}, + "isMenuEnabled": function () {}, + "showMenuAfterButtonClick": function () {}, + "showMenuAfterMouseEvent": function () {}, + "showPopup": function () {} +}; +agGrid.StylingService.prototype = { + "processAllCellClasses": function () {}, + "processClassRules": function () {}, + "processStaticCellClasses": function () {} +}; +agGrid.TabbedLayout.prototype = { + "addItem": function () {}, + "getGui": function () {}, + "getMinDimensions": function () {}, + "setAfterAttachedParams": function () {}, + "showFirstItem": function () {}, + "showItem": function () {}, + "showItemWrapper": function () {} +}; +agGrid.TemplateService.prototype = { + "getTemplate": function () {}, + "handleHttpResult": function () {} +}; +agGrid.TextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getStartValue": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.TextFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addFilterChangedListener": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "bodyTemplate": function () {}, + "checkIndividualFilter": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilter": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFilterTextFieldChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setFilter": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.TouchListener.prototype = { + "addEventListener": function () {}, + "checkForDoubleTap": function () {}, + "destroy": function () {}, + "getActiveTouch": function () {}, + "onTouchEnd": function () {}, + "onTouchMove": function () {}, + "onTouchStart": function () {}, + "removeEventListener": function () {} +}; +agGrid.ValueFormatterService.prototype = { + "formatValue": function () {} +}; +agGrid.ValueService.prototype = { + "executeValueGetter": function () {}, + "getKeyForNode": function () {}, + "getValue": function () {}, + "getValueCallback": function () {}, + "init": function () {}, + "setValue": function () {}, + "setValueUsingField": function () {} +}; +agGrid.VerticalStack.prototype = { + "addPanel": function () {}, + "doLayout": function () {}, + "getGui": function () {} +}; +agGrid.XmlFactory.prototype = { + "createHeader": function () {}, + "createXml": function () {}, + "returnAttributeIfPopulated": function () {} +}; +agGrid.ZipContainer.prototype = { + "addFile": function () {}, + "addFolders": function () {}, + "buildFileStream": function () {}, + "buildFolderEnd": function () {}, + "buildUint8Array": function () {}, + "clearStream": function () {}, + "convertDate": function () {}, + "convertTime": function () {}, + "getContent": function () {}, + "getFromCrc32Table": function () {}, + "getHeader": function () {} +}; +/********************************************************************** + * End Generated Extern for agGrid +/**********************************************************************/ diff --git a/ag-grid-enterprise/README.md b/ag-grid-enterprise/README.md index d354e5069..43cffb43c 100644 --- a/ag-grid-enterprise/README.md +++ b/ag-grid-enterprise/README.md @@ -1,11 +1,11 @@ # cljsjs/ag-grid-enterprise - The JavaScript Datagrid for Enterprise -React Toolbox depends on React with Addons, so, to be able to use it, you not only have to depend in -cljsjs/ag-grid: +React Toolbox depends on React with Addons, so, to be able to use it, you not only have to depend on +cljsjs/ag-grid-enterprise: [](dependency) ```clojure -[cljsjs/ag-grid-enterprise "17.0.0-0"] ;; latest release +[cljsjs/ag-grid-enterprise "19.0.0-0"] ;; latest release ``` [](/dependency) diff --git a/ag-grid-enterprise/build.boot b/ag-grid-enterprise/build.boot index 51def11fa..7405a171e 100644 --- a/ag-grid-enterprise/build.boot +++ b/ag-grid-enterprise/build.boot @@ -1,40 +1,40 @@ (set-env! - :resource-paths #{"resources"} - :dependencies '[[cljsjs/boot-cljsjs "0.10.3" :scope "test"] - [cljsjs/ag-grid "15.0.0-0"]]) + :resource-paths #{"resources"} + :dependencies '[[cljsjs/boot-cljsjs "0.10.3" :scope "test"] + [cljsjs/ag-grid-community "19.0.0-0"]]) (require '[cljsjs.boot-cljsjs.packaging :refer :all] '[boot.core :as boot] '[boot.tmpdir :as tmpdir] '[clojure.java.io :as io]) -(def +lib-version+ "17.0.0") -(def +lib-checksum+ "E5E174584DF1655F2E8BDEFCEAB0BA2A") +(def +lib-version+ "19.0.0") +(def +lib-checksum+ "D904467925A64A9E000A57F471C59CDF") (def +version+ (str +lib-version+ "-0")) -(def +lib-folder+ (format "ag-grid-enterprise-%s" +lib-version+)) +(def +lib-folder+ (format "ag-grid-%s/packages/ag-grid-enterprise" +lib-version+)) (task-options! - pom {:project 'cljsjs/ag-grid-enterprise - :version +version+ - :description "The JavaScript Datagrid for Enterprise" - :url "http://ag-grid-enterprise.com/" - :scm {:url "https://github.com/cljsjs/packages"} - :license {"MIT" "http://opensource.org/licenses/MIT"}}) + pom {:project 'cljsjs/ag-grid-enterprise + :version +version+ + :description "The JavaScript Datagrid for Enterprise" + :url "http://ag-grid-enterprise.com/" + :scm {:url "https://github.com/cljsjs/packages"} + :license {"MIT" "http://opensource.org/licenses/MIT"}}) (deftask download-lib [] - (download :url (format "https://github.com/ceolter/ag-grid-enterprise/archive/%s.zip" +lib-version+) - :checksum +lib-checksum+ - :unzip true)) + (download :url (format "https://github.com/ceolter/ag-grid/archive/%s.zip" +lib-version+) + :checksum +lib-checksum+ + :unzip true)) (deftask package [] - (comp - (download-lib) - (sift :move {#".*dist/ag-grid-enterprise.js" "cljsjs/ag-grid-enterprise/development/ag-grid-enterprise.inc.js"}) - (sift :include #{#"^cljsjs"}) - (minify :in "cljsjs/ag-grid-enterprise/development/ag-grid-enterprise.inc.js" - :out "cljsjs/ag-grid-enterprise/production/ag-grid-enterprise.min.inc.js" - :lang :ecmascript5) - (deps-cljs :name "cljsjs.ag-grid-enterprise" - :requires ["cljsjs.ag-grid"]) - (pom) - (jar))) + (comp + (download-lib) + (sift :move {#".*dist/ag-grid-enterprise.js" "cljsjs/ag-grid-enterprise/development/ag-grid-enterprise.inc.js"}) + (sift :include #{#"^cljsjs"}) + (minify :in "cljsjs/ag-grid-enterprise/development/ag-grid-enterprise.inc.js" + :out "cljsjs/ag-grid-enterprise/production/ag-grid-enterprise.min.inc.js" + :lang :ecmascript5) + (deps-cljs :name "cljsjs.ag-grid-enterprise" + :requires ["cljsjs.ag-grid-community"]) + (pom) + (jar))) diff --git a/ag-grid-enterprise/resources/cljsjs/ag-grid-enterprise/common/ag-grid-enterprise.ext.js b/ag-grid-enterprise/resources/cljsjs/ag-grid-enterprise/common/ag-grid-enterprise.ext.js index e69de29bb..23cd0acd3 100644 --- a/ag-grid-enterprise/resources/cljsjs/ag-grid-enterprise/common/ag-grid-enterprise.ext.js +++ b/ag-grid-enterprise/resources/cljsjs/ag-grid-enterprise/common/ag-grid-enterprise.ext.js @@ -0,0 +1,6219 @@ +/********************************************************************** + * Extern for agGrid + * Generated by http://jmmk.github.io/javascript-externs-generator + **********************************************************************/ +var agGrid = { + "AgCheckbox": { + "EVENT_CHANGED": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preConstructMethods": {} + } + }, + "AggFuncService": { + "AGG_AVG": {}, + "AGG_COUNT": {}, + "AGG_FIRST": {}, + "AGG_LAST": {}, + "AGG_MAX": {}, + "AGG_MIN": {}, + "AGG_SUM": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "AggregationStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "AlignedGridsService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "AnimateShowChangeCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "AnimateSlideCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "AutoWidthCalculator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Autowired": function () {}, + "BalancedColumnTreeBuilder": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "BaseComponentWrapper": function () {}, + "BaseCreator": function () {}, + "BaseDropZonePanel": { + "CHAR_LEFT_ARROW": {}, + "CHAR_RIGHT_ARROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "STATE_NEW_COLUMNS_IN": {}, + "STATE_NOT_DRAGGING": {}, + "STATE_REARRANGE_COLUMNS": {} + }, + "BaseFilter": { + "CONTAINS": {}, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "BaseFrameworkFactory": function () {}, + "BaseGridSerializingSession": function () {}, + "Bean": function () {}, + "BeanStub": { + "EVENT_DESTROYED": {} + }, + "BodyDropPivotTarget": { + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "BodyDropTarget": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "CellComp": { + "DOM_DATA_KEY_CELL_COMP": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {} + }, + "CellEditorFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "CellNavigationService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "CellRendererFactory": { + "ANIMATE_SHOW_CHANGE": {}, + "ANIMATE_SLIDE": {}, + "GROUP": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "CellRendererService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ChangedPath": function () {}, + "CheckboxSelectionComponent": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "ClientSideNodeManager": { + "ROOT_NODE_ID": {}, + "TOP_LEVEL": {} + }, + "ClientSideRowModel": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ClipboardService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ColDefUtil": { + "ALL_PROPERTIES": {}, + "ARRAY_PROPERTIES": {}, + "BOOLEAN_PROPERTIES": {}, + "FRAMEWORK_PROPERTIES": {}, + "FUNCTION_PROPERTIES": {}, + "NUMBER_PROPERTIES": {}, + "OBJECT_PROPERTIES": {}, + "STRING_PROPERTIES": {} + }, + "Column": { + "EVENT_FILTER_ACTIVE_CHANGED": {}, + "EVENT_FILTER_CHANGED": {}, + "EVENT_FIRST_RIGHT_PINNED_CHANGED": {}, + "EVENT_LAST_LEFT_PINNED_CHANGED": {}, + "EVENT_LEFT_CHANGED": {}, + "EVENT_MENU_VISIBLE_CHANGED": {}, + "EVENT_MOVING_CHANGED": {}, + "EVENT_PIVOT_CHANGED": {}, + "EVENT_ROW_GROUP_CHANGED": {}, + "EVENT_SORT_CHANGED": {}, + "EVENT_VALUE_CHANGED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "EVENT_WIDTH_CHANGED": {}, + "PINNED_LEFT": {}, + "PINNED_RIGHT": {}, + "SORT_ASC": {}, + "SORT_DESC": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "ColumnApi": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ColumnController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ColumnGroup": { + "EVENT_DISPLAYED_CHILDREN_CHANGED": {}, + "EVENT_LEFT_CHANGED": {}, + "HEADER_GROUP_SHOW_CLOSED": {}, + "HEADER_GROUP_SHOW_OPEN": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + }, + "createUniqueId": function () {} + }, + "ColumnKeyCreator": function () {}, + "ColumnUtils": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Component": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {} + }, + "ComponentProvider": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ComponentResolver": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ComponentUtil": { + "ALL_PROPERTIES": {}, + "ARRAY_PROPERTIES": {}, + "BOOLEAN_PROPERTIES": {}, + "EVENTS": {}, + "FUNCTION_PROPERTIES": {}, + "NUMBER_PROPERTIES": {}, + "OBJECT_PROPERTIES": {}, + "STRING_PROPERTIES": {}, + "copyAttributesToGridOptions": function () {}, + "getCallbackForEvent": function () {}, + "getEventCallbacks": function () {}, + "processOnChange": function () {}, + "toBoolean": function () {}, + "toNumber": function () {} + }, + "Constants": { + "ALWAYS": {}, + "BATCH_WAIT_MILLIS": {}, + "DEPRECATED_ROW_MODEL_TYPE_NORMAL": {}, + "DOM_LAYOUT_AUTO_HEIGHT": {}, + "DOM_LAYOUT_NORMAL": {}, + "DOM_LAYOUT_PRINT": {}, + "EXPORT_TYPE_CLIPBOARD": {}, + "EXPORT_TYPE_CSV": {}, + "EXPORT_TYPE_DRAG_COPY": {}, + "EXPORT_TYPE_EXCEL": {}, + "KEY_A": {}, + "KEY_BACKSPACE": {}, + "KEY_C": {}, + "KEY_D": {}, + "KEY_DELETE": {}, + "KEY_DOWN": {}, + "KEY_ENTER": {}, + "KEY_ESCAPE": {}, + "KEY_F2": {}, + "KEY_LEFT": {}, + "KEY_NEW_LINE": {}, + "KEY_PAGE_DOWN": {}, + "KEY_PAGE_END": {}, + "KEY_PAGE_HOME": {}, + "KEY_PAGE_UP": {}, + "KEY_RIGHT": {}, + "KEY_SHIFT": {}, + "KEY_SPACE": {}, + "KEY_TAB": {}, + "KEY_UP": {}, + "KEY_V": {}, + "LAYOUT_INTERVAL": {}, + "ONLY_WHEN_GROUPING": {}, + "PINNED_BOTTOM": {}, + "PINNED_TOP": {}, + "ROW_BUFFER_SIZE": {}, + "ROW_MODEL_TYPE_CLIENT_SIDE": {}, + "ROW_MODEL_TYPE_INFINITE": {}, + "ROW_MODEL_TYPE_SERVER_SIDE": {}, + "ROW_MODEL_TYPE_VIEWPORT": {}, + "STEP_AGGREGATE": {}, + "STEP_EVERYTHING": {}, + "STEP_FILTER": {}, + "STEP_MAP": {}, + "STEP_PIVOT": {}, + "STEP_SORT": {} + }, + "Context": function () {}, + "ContextMenuFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "CssClassApplier": { + "addColumnClassesFromCollDef": function () {}, + "addHeaderClassesFromColDef": function () {}, + "addToolPanelClassesFromColDef": function () {} + }, + "CsvCreator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "DateFilter": { + "CONTAINS": {}, + "DEFAULT_NULL_COMPARATOR": { + "equals": {}, + "greaterThan": {}, + "lessThan": {} + }, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + }, + "removeTimezone": function () {} + }, + "DisplayedGroupCreator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "Downloader": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "DragAndDropService": { + "GHOST_TEMPLATE": {}, + "ICON_ADD": {}, + "ICON_AGGREGATE": {}, + "ICON_GROUP": {}, + "ICON_LEFT": {}, + "ICON_MOVE": {}, + "ICON_NOT_ALLOWED": {}, + "ICON_PINNED": {}, + "ICON_PIVOT": {}, + "ICON_RIGHT": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "DragService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "DragSourceType": { + "0": {}, + "1": {}, + "2": {}, + "HeaderCell": {}, + "RowDrag": {}, + "ToolPanel": {} + }, + "DropZoneColumnComp": { + "EVENT_COLUMN_REMOVE": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "EnterpriseBoot": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "EnterpriseMenu": { + "EVENT_DESTROYED": {}, + "EVENT_TAB_SELECTED": {}, + "MENU_ITEM_SEPARATOR": {}, + "TABS_DEFAULT": {}, + "TAB_COLUMNS": {}, + "TAB_FILTER": {}, + "TAB_GENERAL": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "Environment": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "EventService": { + "PRIORITY": {}, + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {}, + "1": {}, + "2": {} + } + }, + "beanName": {} + } + }, + "Events": { + "EVENT_ANIMATION_QUEUE_EMPTY": {}, + "EVENT_BODY_HEIGHT_CHANGED": {}, + "EVENT_BODY_SCROLL": {}, + "EVENT_CELL_CLICKED": {}, + "EVENT_CELL_CONTEXT_MENU": {}, + "EVENT_CELL_DOUBLE_CLICKED": {}, + "EVENT_CELL_EDITING_STARTED": {}, + "EVENT_CELL_EDITING_STOPPED": {}, + "EVENT_CELL_FOCUSED": {}, + "EVENT_CELL_MOUSE_DOWN": {}, + "EVENT_CELL_MOUSE_OUT": {}, + "EVENT_CELL_MOUSE_OVER": {}, + "EVENT_CELL_VALUE_CHANGED": {}, + "EVENT_COLUMN_AGG_FUNC_CHANGE_REQUEST": {}, + "EVENT_COLUMN_EVERYTHING_CHANGED": {}, + "EVENT_COLUMN_GROUP_OPENED": {}, + "EVENT_COLUMN_HOVER_CHANGED": {}, + "EVENT_COLUMN_MOVED": {}, + "EVENT_COLUMN_PINNED": {}, + "EVENT_COLUMN_PIVOT_CHANGED": {}, + "EVENT_COLUMN_PIVOT_CHANGE_REQUEST": {}, + "EVENT_COLUMN_PIVOT_MODE_CHANGED": {}, + "EVENT_COLUMN_RESIZED": {}, + "EVENT_COLUMN_ROW_GROUP_CHANGED": {}, + "EVENT_COLUMN_ROW_GROUP_CHANGE_REQUEST": {}, + "EVENT_COLUMN_VALUE_CHANGED": {}, + "EVENT_COLUMN_VALUE_CHANGE_REQUEST": {}, + "EVENT_COLUMN_VISIBLE": {}, + "EVENT_COMPONENT_STATE_CHANGED": {}, + "EVENT_DISPLAYED_COLUMNS_CHANGED": {}, + "EVENT_DISPLAYED_COLUMNS_WIDTH_CHANGED": {}, + "EVENT_DRAG_STARTED": {}, + "EVENT_DRAG_STOPPED": {}, + "EVENT_FILTER_CHANGED": {}, + "EVENT_FILTER_MODIFIED": {}, + "EVENT_FILTER_OPENED": {}, + "EVENT_FIRST_DATA_RENDERED": {}, + "EVENT_FLASH_CELLS": {}, + "EVENT_GRID_COLUMNS_CHANGED": {}, + "EVENT_GRID_READY": {}, + "EVENT_GRID_SIZE_CHANGED": {}, + "EVENT_HEIGHT_SCALE_CHANGED": {}, + "EVENT_MODEL_UPDATED": {}, + "EVENT_NEW_COLUMNS_LOADED": {}, + "EVENT_PAGINATION_CHANGED": {}, + "EVENT_PASTE_END": {}, + "EVENT_PASTE_START": {}, + "EVENT_PINNED_ROW_DATA_CHANGED": {}, + "EVENT_RANGE_SELECTION_CHANGED": {}, + "EVENT_ROW_CLICKED": {}, + "EVENT_ROW_DATA_CHANGED": {}, + "EVENT_ROW_DATA_UPDATED": {}, + "EVENT_ROW_DOUBLE_CLICKED": {}, + "EVENT_ROW_DRAG_END": {}, + "EVENT_ROW_DRAG_ENTER": {}, + "EVENT_ROW_DRAG_LEAVE": {}, + "EVENT_ROW_DRAG_MOVE": {}, + "EVENT_ROW_EDITING_STARTED": {}, + "EVENT_ROW_EDITING_STOPPED": {}, + "EVENT_ROW_GROUP_OPENED": {}, + "EVENT_ROW_SELECTED": {}, + "EVENT_ROW_VALUE_CHANGED": {}, + "EVENT_SCROLL_VISIBILITY_CHANGED": {}, + "EVENT_SELECTION_CHANGED": {}, + "EVENT_SORT_CHANGED": {}, + "EVENT_TOOL_PANEL_VISIBLE_CHANGED": {}, + "EVENT_VIEWPORT_CHANGED": {}, + "EVENT_VIRTUAL_COLUMNS_CHANGED": {}, + "EVENT_VIRTUAL_ROW_REMOVED": {} + }, + "ExcelCreator": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ExcelXmlFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ExpressionService": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "FilterManager": { + "QUICK_FILTER_SEPARATOR": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "FilterStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "FlattenStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "FocusedCellController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "Grid": { + "RowModelClasses": { + "clientSide": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "infinite": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "serverSide": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "viewport": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + } + }, + "enterpriseBeans": {}, + "enterpriseComponents": {}, + "enterpriseDefaultComponents": {}, + "setEnterpriseBeans": function () {}, + "setEnterpriseComponents": function () {}, + "setEnterpriseDefaultComponents": function () {}, + "setFrameworkBeans": function () {} + }, + "GridApi": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "GridCell": function () {}, + "GridCore": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE_ENTERPRISE": {}, + "TEMPLATE_NORMAL": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "GridOptionsWrapper": { + "MIN_COL_WIDTH": {}, + "PROP_DOM_LAYOUT": {}, + "PROP_FLOATING_FILTERS_HEIGHT": {}, + "PROP_GROUP_HEADER_HEIGHT": {}, + "PROP_GROUP_REMOVE_LOWEST_SINGLE_CHILDREN": {}, + "PROP_GROUP_REMOVE_SINGLE_CHILDREN": {}, + "PROP_HEADER_HEIGHT": {}, + "PROP_PIVOT_GROUP_HEADER_HEIGHT": {}, + "PROP_PIVOT_HEADER_HEIGHT": {}, + "PROP_POPUP_PARENT": {}, + "PROP_SUPPRESS_CLIPBOARD_PASTE": {}, + "PROP_SUPPRESS_ROW_DRAG": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "agWire": { + "0": {}, + "1": {} + } + }, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + }, + "checkEventDeprecation": function () {} + }, + "GridPanel": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "GridRow": function () {}, + "GridSerializer": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "GroupCellRenderer": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "GroupInstanceIdCreator": function () {}, + "GroupStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "HDirection": { + "0": {}, + "1": {}, + "Left": {}, + "Right": {} + }, + "HeaderContainer": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "HeaderRootComp": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "HeaderRowComp": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "HorizontalResizeService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "InfiniteRowModel": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "LargeTextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "LicenseManager": { + "RELEASE_INFORMATION": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + }, + "decode": function () {}, + "extractExpiry": function () {}, + "extractLicenseComponents": function () {}, + "formatDate": function () {}, + "getGridReleaseDate": function () {}, + "outputMessage": function () {}, + "setLicenseKey": function () {}, + "utf8_decode": function () {} + }, + "Listener": function () {}, + "Logger": function () {}, + "LoggerFactory": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {} + } + }, + "MD5": { + "__agBeanMetaData": { + "beanName": {}, + "postConstructMethods": {} + } + }, + "MenuItemComponent": { + "EVENT_DESTROYED": {}, + "EVENT_ITEM_SELECTED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "MenuList": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "SEPARATOR_TEMPLATE": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "MouseEventService": { + "GRID_DOM_KEY": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + }, + "gridInstanceSequence": { + "next": function () {}, + "nextValue": {}, + "peek": function () {}, + "skip": function () {}, + "step": {} + } + }, + "MoveColumnController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "NumberFilter": { + "CONTAINS": {}, + "DEFAULT_NULL_COMPARATOR": { + "equals": {}, + "greaterThan": {}, + "lessThan": {} + }, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "NumberSequence": function () {}, + "Optional": function () {}, + "OriginalColumnGroup": { + "EVENT_EXPANDABLE_CHANGED": {}, + "EVENT_EXPANDED_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PinnedRowModel": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "PivotColDefService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "PivotCompFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "PivotDropZonePanel": { + "CHAR_LEFT_ARROW": {}, + "CHAR_RIGHT_ARROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "STATE_NEW_COLUMNS_IN": {}, + "STATE_NOT_DRAGGING": {}, + "STATE_REARRANGE_COLUMNS": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "PivotModePanel": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "preConstructMethods": {} + } + }, + "PivotStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "PopupEditorWrapper": { + "DOM_KEY_POPUP_EDITOR_WRAPPER": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PopupSelectCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "PopupService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "PopupTextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "PostConstruct": function () {}, + "PreConstruct": function () {}, + "PreDestroy": function () {}, + "Promise": { + "all": function () {}, + "external": function () {}, + "resolve": function () {} + }, + "Qualifier": function () {}, + "QuerySelector": function () {}, + "RangeController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "RefSelector": function () {}, + "RichSelectCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "RichSelectRow": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "RowComp": { + "DETAIL_CELL_RENDERER": {}, + "DETAIL_CELL_RENDERER_COMP_NAME": {}, + "DOM_DATA_KEY_RENDERED_ROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "FULL_WIDTH_CELL_RENDERER": {}, + "GROUP_ROW_RENDERER": {}, + "GROUP_ROW_RENDERER_COMP_NAME": {}, + "LOADING_CELL_RENDERER": {}, + "LOADING_CELL_RENDERER_COMP_NAME": {} + }, + "RowGroupCompFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "RowGroupDropZonePanel": { + "CHAR_LEFT_ARROW": {}, + "CHAR_RIGHT_ARROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "STATE_NEW_COLUMNS_IN": {}, + "STATE_NOT_DRAGGING": {}, + "STATE_REARRANGE_COLUMNS": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "RowNode": { + "EVENT_ALL_CHILDREN_COUNT_CHANGED": {}, + "EVENT_CELL_CHANGED": {}, + "EVENT_CHILD_INDEX_CHANGED": {}, + "EVENT_DATA_CHANGED": {}, + "EVENT_DRAGGING_CHANGED": {}, + "EVENT_EXPANDED_CHANGED": {}, + "EVENT_FIRST_CHILD_CHANGED": {}, + "EVENT_HEIGHT_CHANGED": {}, + "EVENT_LAST_CHILD_CHANGED": {}, + "EVENT_MOUSE_ENTER": {}, + "EVENT_MOUSE_LEAVE": {}, + "EVENT_ROW_INDEX_CHANGED": {}, + "EVENT_ROW_SELECTED": {}, + "EVENT_SELECTABLE_CHANGED": {}, + "EVENT_TOP_CHANGED": {}, + "EVENT_UI_LEVEL_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "RowNodeBlock": { + "EVENT_DESTROYED": {}, + "EVENT_LOAD_COMPLETE": {}, + "STATE_DIRTY": {}, + "STATE_FAILED": {}, + "STATE_LOADED": {}, + "STATE_LOADING": {} + }, + "RowNodeBlockLoader": { + "__agBeanMetaData": { + "autowireMethods": { + "setBeans": { + "0": {} + } + } + } + }, + "RowNodeCache": { + "EVENT_CACHE_UPDATED": {}, + "EVENT_DESTROYED": {}, + "MAX_EMPTY_BLOCKS_TO_KEEP": {} + }, + "RowRenderer": { + "EVENT_DESTROYED": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "agWire": { + "0": {} + } + }, + "beanName": {}, + "preDestroyMethods": {} + } + }, + "RowType": { + "0": {}, + "1": {}, + "2": {}, + "BODY": {}, + "HEADER": {}, + "HEADER_GROUPING": {} + }, + "ScrollVisibleService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "SelectCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "SelectableService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "SelectionController": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "autowireMethods": { + "setBeans": { + "0": {} + } + }, + "beanName": {}, + "postConstructMethods": {} + } + }, + "SetFilter": { + "CONTAINS": {}, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "SetFilterListItem": { + "EVENT_DESTROYED": {}, + "EVENT_SELECTED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "SetFilterModel": function () {}, + "SetLeftFeature": { + "EVENT_DESTROYED": {} + }, + "SideBarComp": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "SortController": { + "DEFAULT_SORTING_ORDER": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "SortStage": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "StandardMenuFactory": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "StatusBar": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "StatusBarService": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "StylingService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "TabbedLayout": { + "TEMPLATE": {} + }, + "TemplateService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "TextCellEditor": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {} + }, + "TextFilter": { + "CONTAINS": {}, + "DEFAULT_COMPARATOR": function () {}, + "DEFAULT_FORMATTER": function () {}, + "DEFAULT_LOWERCASE_FORMATTER": function () {}, + "ENDS_WITH": {}, + "EQUALS": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "GREATER_THAN": {}, + "GREATER_THAN_OR_EQUAL": {}, + "IN_RANGE": {}, + "LESS_THAN": {}, + "LESS_THAN_OR_EQUAL": {}, + "NOT_CONTAINS": {}, + "NOT_EQUAL": {}, + "STARTS_WITH": {}, + "__agBeanMetaData": { + "agClassAttributes": {} + } + }, + "TouchListener": { + "DOUBLE_TAP_MILLIS": {}, + "EVENT_DOUBLE_TAP": {}, + "EVENT_LONG_TAP": {}, + "EVENT_TAP": {} + }, + "Utils": { + "NUMPAD_DEL_NUMLOCK_ON_CHARCODE": {}, + "NUMPAD_DEL_NUMLOCK_ON_KEY": {}, + "PRINTABLE_CHARACTERS": {}, + "addAgGridEventPath": function () {}, + "addChangeListener": function () {}, + "addCssClass": function () {}, + "addOrRemoveCssClass": function () {}, + "addSafePassiveEventListener": function () {}, + "addStylesToElement": function () {}, + "anyExists": function () {}, + "appendHtml": function () {}, + "areEventsNear": function () {}, + "assign": function () {}, + "callIfPresent": function () {}, + "camelCaseToHumanText": function () {}, + "camelCaseToHyphen": function () {}, + "cleanNumber": function () {}, + "cloneObject": function () {}, + "compareArrays": function () {}, + "containsClass": function () {}, + "copyNodeList": function () {}, + "createArrayOfNumbers": function () {}, + "createEventPath": function () {}, + "createIcon": function () {}, + "createIconNoSpan": function () {}, + "cssStyleObjectToMarkup": function () {}, + "debounce": function () {}, + "defaultComparator": function () {}, + "doOnce": function () {}, + "doOnceFlags": {}, + "ensureDomOrder": function () {}, + "escape": function () {}, + "every": function () {}, + "executeAfter": function () {}, + "executeInAWhile": function () {}, + "executeNextVMTurn": function () {}, + "exists": function () {}, + "existsAndNotEmpty": function () {}, + "filter": function () {}, + "find": function () {}, + "firstExistingValue": function () {}, + "forEach": function () {}, + "forEachSnapshotFirst": function () {}, + "formatNumberCommas": function () {}, + "formatNumberTwoDecimalPlacesAndCommas": function () {}, + "formatWidth": function () {}, + "fuzzyCheckStrings": function () {}, + "fuzzySuggestions": function () {}, + "get": function () {}, + "getAllKeysInObjects": function () {}, + "getBodyHeight": function () {}, + "getBodyWidth": function () {}, + "getElementAttribute": function () {}, + "getEventPath": function () {}, + "getFunctionParameters": function () {}, + "getMaxDivHeight": function () {}, + "getNameOfClass": function () {}, + "getScrollLeft": function () {}, + "getScrollbarWidth": function () {}, + "getTarget": function () {}, + "getValueUsingField": function () {}, + "get_bigrams": function () {}, + "hasOverflowScrolling": function () {}, + "hyphenToCamelCase": function () {}, + "iconNameClassMap": { + "checkboxChecked": {}, + "checkboxCheckedReadOnly": {}, + "checkboxIndeterminate": {}, + "checkboxIndeterminateReadOnly": {}, + "checkboxUnchecked": {}, + "checkboxUncheckedReadOnly": {}, + "clipboardCopy": {}, + "clipboardCut": {}, + "clipboardPaste": {}, + "columnGroupClosed": {}, + "columnGroupOpened": {}, + "columnMoveAdd": {}, + "columnMoveGroup": {}, + "columnMoveHide": {}, + "columnMoveLeft": {}, + "columnMoveMove": {}, + "columnMovePin": {}, + "columnMovePivot": {}, + "columnMoveRight": {}, + "columnMoveValue": {}, + "columnSelectClosed": {}, + "columnSelectOpen": {}, + "columns": {}, + "dropNotAllowed": {}, + "filter": {}, + "groupContracted": {}, + "groupExpanded": {}, + "groupLoading": {}, + "menu": {}, + "menuAddRowGroup": {}, + "menuPin": {}, + "menuRemoveRowGroup": {}, + "menuValue": {}, + "pivotPanel": {}, + "rowGroupPanel": {}, + "sortAscending": {}, + "sortDescending": {}, + "sortUnSort": {}, + "valuePanel": {} + }, + "insertArrayIntoArray": function () {}, + "insertIntoArray": function () {}, + "insertTemplateWithDomOrder": function () {}, + "insertWithDomOrder": function () {}, + "isBrowserChrome": function () {}, + "isBrowserEdge": function () {}, + "isBrowserFirefox": function () {}, + "isBrowserIE": function () {}, + "isBrowserSafari": function () {}, + "isElement": function () {}, + "isElementInEventPath": function () {}, + "isEventFromPrintableCharacter": function () {}, + "isHorizontalScrollShowing": function () {}, + "isKeyPressed": function () {}, + "isNode": function () {}, + "isNodeOrElement": function () {}, + "isNumeric": function () {}, + "isNumpadDelWithNumlockOnForEdgeOrIe": function () {}, + "isStopPropagationForAgGrid": function () {}, + "isUserAgentIPad": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "iterateArray": function () {}, + "iterateNamedNodeMap": function () {}, + "iterateObject": function () {}, + "loadTemplate": function () {}, + "makeNull": function () {}, + "map": function () {}, + "mapObject": function () {}, + "mergeDeep": function () {}, + "message": function () {}, + "missing": function () {}, + "missingOrEmpty": function () {}, + "missingOrEmptyObject": function () {}, + "moveInArray": function () {}, + "normalizeWheel": function () {}, + "offsetHeight": function () {}, + "offsetWidth": function () {}, + "pad": function () {}, + "parseYyyyMmDdToDate": function () {}, + "passiveEvents": {}, + "prependDC": function () {}, + "pushAll": function () {}, + "referenceCompare": function () {}, + "removeAllChildren": function () {}, + "removeAllFromArray": function () {}, + "removeCssClass": function () {}, + "removeElement": function () {}, + "removeFromArray": function () {}, + "removeFromParent": function () {}, + "removeRepeatsFromArray": function () {}, + "serializeDateToYyyyMmDd": function () {}, + "setCheckboxState": function () {}, + "setHidden": function () {}, + "setScrollLeft": function () {}, + "setVisible": function () {}, + "shallowCompare": function () {}, + "sortNumberArray": function () {}, + "sortRowNodesByOrder": function () {}, + "stopPropagationForAgGrid": function () {}, + "string_similarity": function () {}, + "toStringOrNull": function () {}, + "toStrings": function () {}, + "traverseNodesWithKey": function () {}, + "values": function () {} + }, + "VDirection": { + "0": {}, + "1": {}, + "Down": {}, + "Up": {} + }, + "ValueFormatterService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {} + } + }, + "ValueService": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {} + } + }, + "ValuesDropZonePanel": { + "CHAR_LEFT_ARROW": {}, + "CHAR_RIGHT_ARROW": {}, + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "STATE_NEW_COLUMNS_IN": {}, + "STATE_NOT_DRAGGING": {}, + "STATE_REARRANGE_COLUMNS": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "VerticalStack": function () {}, + "ViewportRowModel": { + "__agBeanMetaData": { + "agClassAttributes": {}, + "beanName": {}, + "postConstructMethods": {}, + "preDestroyMethods": {} + } + }, + "VirtualList": { + "EVENT_DESTROYED": {}, + "EVENT_VISIBLE_CHANGED": {}, + "TEMPLATE": {}, + "__agBeanMetaData": { + "agClassAttributes": {}, + "postConstructMethods": {} + } + }, + "XmlFactory": { + "__agBeanMetaData": { + "beanName": {} + } + }, + "_": { + "NUMPAD_DEL_NUMLOCK_ON_CHARCODE": {}, + "NUMPAD_DEL_NUMLOCK_ON_KEY": {}, + "PRINTABLE_CHARACTERS": {}, + "addAgGridEventPath": function () {}, + "addChangeListener": function () {}, + "addCssClass": function () {}, + "addOrRemoveCssClass": function () {}, + "addSafePassiveEventListener": function () {}, + "addStylesToElement": function () {}, + "anyExists": function () {}, + "appendHtml": function () {}, + "areEventsNear": function () {}, + "assign": function () {}, + "callIfPresent": function () {}, + "camelCaseToHumanText": function () {}, + "camelCaseToHyphen": function () {}, + "cleanNumber": function () {}, + "cloneObject": function () {}, + "compareArrays": function () {}, + "containsClass": function () {}, + "copyNodeList": function () {}, + "createArrayOfNumbers": function () {}, + "createEventPath": function () {}, + "createIcon": function () {}, + "createIconNoSpan": function () {}, + "cssStyleObjectToMarkup": function () {}, + "debounce": function () {}, + "defaultComparator": function () {}, + "doOnce": function () {}, + "doOnceFlags": {}, + "ensureDomOrder": function () {}, + "escape": function () {}, + "every": function () {}, + "executeAfter": function () {}, + "executeInAWhile": function () {}, + "executeNextVMTurn": function () {}, + "exists": function () {}, + "existsAndNotEmpty": function () {}, + "filter": function () {}, + "find": function () {}, + "firstExistingValue": function () {}, + "forEach": function () {}, + "forEachSnapshotFirst": function () {}, + "formatNumberCommas": function () {}, + "formatNumberTwoDecimalPlacesAndCommas": function () {}, + "formatWidth": function () {}, + "fuzzyCheckStrings": function () {}, + "fuzzySuggestions": function () {}, + "get": function () {}, + "getAllKeysInObjects": function () {}, + "getBodyHeight": function () {}, + "getBodyWidth": function () {}, + "getElementAttribute": function () {}, + "getEventPath": function () {}, + "getFunctionParameters": function () {}, + "getMaxDivHeight": function () {}, + "getNameOfClass": function () {}, + "getScrollLeft": function () {}, + "getScrollbarWidth": function () {}, + "getTarget": function () {}, + "getValueUsingField": function () {}, + "get_bigrams": function () {}, + "hasOverflowScrolling": function () {}, + "hyphenToCamelCase": function () {}, + "iconNameClassMap": { + "checkboxChecked": {}, + "checkboxCheckedReadOnly": {}, + "checkboxIndeterminate": {}, + "checkboxIndeterminateReadOnly": {}, + "checkboxUnchecked": {}, + "checkboxUncheckedReadOnly": {}, + "clipboardCopy": {}, + "clipboardCut": {}, + "clipboardPaste": {}, + "columnGroupClosed": {}, + "columnGroupOpened": {}, + "columnMoveAdd": {}, + "columnMoveGroup": {}, + "columnMoveHide": {}, + "columnMoveLeft": {}, + "columnMoveMove": {}, + "columnMovePin": {}, + "columnMovePivot": {}, + "columnMoveRight": {}, + "columnMoveValue": {}, + "columnSelectClosed": {}, + "columnSelectOpen": {}, + "columns": {}, + "dropNotAllowed": {}, + "filter": {}, + "groupContracted": {}, + "groupExpanded": {}, + "groupLoading": {}, + "menu": {}, + "menuAddRowGroup": {}, + "menuPin": {}, + "menuRemoveRowGroup": {}, + "menuValue": {}, + "pivotPanel": {}, + "rowGroupPanel": {}, + "sortAscending": {}, + "sortDescending": {}, + "sortUnSort": {}, + "valuePanel": {} + }, + "insertArrayIntoArray": function () {}, + "insertIntoArray": function () {}, + "insertTemplateWithDomOrder": function () {}, + "insertWithDomOrder": function () {}, + "isBrowserChrome": function () {}, + "isBrowserEdge": function () {}, + "isBrowserFirefox": function () {}, + "isBrowserIE": function () {}, + "isBrowserSafari": function () {}, + "isElement": function () {}, + "isElementInEventPath": function () {}, + "isEventFromPrintableCharacter": function () {}, + "isHorizontalScrollShowing": function () {}, + "isKeyPressed": function () {}, + "isNode": function () {}, + "isNodeOrElement": function () {}, + "isNumeric": function () {}, + "isNumpadDelWithNumlockOnForEdgeOrIe": function () {}, + "isStopPropagationForAgGrid": function () {}, + "isUserAgentIPad": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "iterateArray": function () {}, + "iterateNamedNodeMap": function () {}, + "iterateObject": function () {}, + "loadTemplate": function () {}, + "makeNull": function () {}, + "map": function () {}, + "mapObject": function () {}, + "mergeDeep": function () {}, + "message": function () {}, + "missing": function () {}, + "missingOrEmpty": function () {}, + "missingOrEmptyObject": function () {}, + "moveInArray": function () {}, + "normalizeWheel": function () {}, + "offsetHeight": function () {}, + "offsetWidth": function () {}, + "pad": function () {}, + "parseYyyyMmDdToDate": function () {}, + "passiveEvents": {}, + "prependDC": function () {}, + "pushAll": function () {}, + "referenceCompare": function () {}, + "removeAllChildren": function () {}, + "removeAllFromArray": function () {}, + "removeCssClass": function () {}, + "removeElement": function () {}, + "removeFromArray": function () {}, + "removeFromParent": function () {}, + "removeRepeatsFromArray": function () {}, + "serializeDateToYyyyMmDd": function () {}, + "setCheckboxState": function () {}, + "setHidden": function () {}, + "setScrollLeft": function () {}, + "setVisible": function () {}, + "shallowCompare": function () {}, + "sortNumberArray": function () {}, + "sortRowNodesByOrder": function () {}, + "stopPropagationForAgGrid": function () {}, + "string_similarity": function () {}, + "toStringOrNull": function () {}, + "toStrings": function () {}, + "traverseNodesWithKey": function () {}, + "values": function () {} + }, + "defaultGroupComparator": function () {}, + "initialiseAgGridWithAngular1": function () {}, + "initialiseAgGridWithWebComponents": function () {}, + "simpleHttpRequest": function () {} +}; +agGrid.AgCheckbox.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getNextValue": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isReadOnly": function () {}, + "isSelected": function () {}, + "isVisible": function () {}, + "loadIcons": function () {}, + "onClick": function () {}, + "postConstruct": function () {}, + "preConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setPassive": function () {}, + "setReadOnly": function () {}, + "setSelected": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "toggle": function () {}, + "updateIcons": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AggFuncService.prototype = { + "addAggFunc": function () {}, + "addAggFuncs": function () {}, + "clear": function () {}, + "getAggFunc": function () {}, + "getDefaultAggFunc": function () {}, + "getFuncNames": function () {}, + "init": function () {}, + "initialiseWithDefaultAggregations": function () {} +}; +agGrid.AggregationStage.prototype = { + "aggregateRowNode": function () {}, + "aggregateRowNodeUsingValuesAndPivot": function () {}, + "aggregateRowNodeUsingValuesOnly": function () {}, + "aggregateValues": function () {}, + "createAggDetails": function () {}, + "execute": function () {}, + "getValuesFromMappedSet": function () {}, + "getValuesNormal": function () {}, + "getValuesPivotNonLeaf": function () {}, + "recursivelyCreateAggData": function () {} +}; +agGrid.AlignedGridsService.prototype = { + "fireColumnEvent": function () {}, + "fireEvent": function () {}, + "fireScrollEvent": function () {}, + "getColumnIds": function () {}, + "getMasterColumns": function () {}, + "init": function () {}, + "onColumnEvent": function () {}, + "onEvent": function () {}, + "onScrollEvent": function () {}, + "processColumnEvent": function () {}, + "processGroupOpenedEvent": function () {}, + "registerGridComp": function () {}, + "setBeans": function () {} +}; +agGrid.AnimateShowChangeCellRenderer.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "hideDeltaValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setTimerToRemoveDelta": function () {}, + "setVisible": function () {}, + "showDelta": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AnimateSlideCellRenderer.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addSlideAnimation": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.AutoWidthCalculator.prototype = { + "cloneItemIntoDummy": function () {}, + "getHeaderCellForColumn": function () {}, + "getPreferredWidthForColumn": function () {}, + "putRowCellsIntoDummyContainer": function () {}, + "registerGridComp": function () {}, + "registerHeaderRootComp": function () {} +}; +agGrid.BalancedColumnTreeBuilder.prototype = { + "assignColumnTypes": function () {}, + "balanceColumnTree": function () {}, + "checkForDeprecatedItems": function () {}, + "createAutoGroupTreeItem": function () {}, + "createBalancedColumnGroups": function () {}, + "createColumn": function () {}, + "createColumnGroup": function () {}, + "createForAutoGroups": function () {}, + "createMergedColGroupDef": function () {}, + "findDept": function () {}, + "findMaxDept": function () {}, + "isColumnGroup": function () {}, + "mergeColDefs": function () {}, + "recursivelyCreateColumns": function () {}, + "setBeans": function () {} +}; +agGrid.BaseComponentWrapper.prototype = { + "createMethod": function () {}, + "createMethodProxy": function () {}, + "wrap": function () {} +}; +agGrid.BaseCreator.prototype = { + "export": function () {}, + "getData": function () {}, + "getMergedParamsAndData": function () {}, + "mergeDefaultParams": function () {}, + "setBeans": function () {} +}; +agGrid.BaseDropZonePanel.prototype = { + "addAnnotatedEventListeners": function () {}, + "addArrow": function () {}, + "addColumns": function () {}, + "addColumnsToGui": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEmptyMessageToGui": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addIconAndTitleToGui": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkDragStartedBySelf": function () {}, + "checkInsertIndex": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createColumnComponent": function () {}, + "destroy": function () {}, + "destroyGui": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getNewHorizontalInsertIndex": function () {}, + "getNewVerticalInsertIndex": function () {}, + "getNonGhostColumns": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isExistingColumnsEmpty": function () {}, + "isHorizontal": function () {}, + "isInterestedIn": function () {}, + "isPotentialDndColumns": function () {}, + "isVisible": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "rearrangeColumns": function () {}, + "refreshGui": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeColumns": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setBeans": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDropTarget": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.BaseFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doOnFilterChanged": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.BaseFrameworkFactory.prototype = { + "colDefCellEditor": function () {}, + "colDefCellRenderer": function () {}, + "colDefFilter": function () {}, + "colDefFloatingCellRenderer": function () {}, + "dateComponent": function () {}, + "gridOptionsFullWidthCellRenderer": function () {}, + "gridOptionsGroupRowInnerRenderer": function () {}, + "gridOptionsGroupRowRenderer": function () {}, + "setTimeout": function () {} +}; +agGrid.BaseGridSerializingSession.prototype = { + "createValueForGroupNode": function () {}, + "extractHeaderValue": function () {}, + "extractRowCellValue": function () {}, + "getHeaderName": function () {}, + "processCell": function () {} +}; +agGrid.BeanStub.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "isAlive": function () {}, + "removeEventListener": function () {} +}; +agGrid.BodyDropPivotTarget.prototype = { + "clearColumnsList": function () {}, + "getIconName": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {} +}; +agGrid.BodyDropTarget.prototype = { + "getContainer": function () {}, + "getDropType": function () {}, + "getIconName": function () {}, + "getSecondaryContainers": function () {}, + "init": function () {}, + "isInterestedIn": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "registerGridComp": function () {} +}; +agGrid.CellComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDomData": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addInCellEditor": function () {}, + "addOrRemoveCssClass": function () {}, + "addPopupCellEditor": function () {}, + "addRowDragging": function () {}, + "addSelectionCheckbox": function () {}, + "afterAttached": function () {}, + "afterCellEditorCreated": function () {}, + "afterCellRendererCreated": function () {}, + "angular1Compile": function () {}, + "animateCell": function () {}, + "appendChild": function () {}, + "attachCellRenderer": function () {}, + "attemptCellRendererRefresh": function () {}, + "chooseCellRenderer": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createCellEditorParams": function () {}, + "createCellRendererInstance": function () {}, + "createCellRendererParams": function () {}, + "createChildAttributes": function () {}, + "createEvent": function () {}, + "createGridCellVo": function () {}, + "destroy": function () {}, + "detach": function () {}, + "dispatchCellContextMenuEvent": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIeFocusHack": function () {}, + "doesUserWantToCancelKeyboardEvent": function () {}, + "flashCell": function () {}, + "focusCell": function () {}, + "formatValue": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCellEditor": function () {}, + "getCellLeft": function () {}, + "getCellRenderer": function () {}, + "getCellWidth": function () {}, + "getColSpanningList": function () {}, + "getColumn": function () {}, + "getCompId": function () {}, + "getCreateTemplate": function () {}, + "getGridCell": function () {}, + "getGui": function () {}, + "getInitialCssClasses": function () {}, + "getInitialValueToRender": function () {}, + "getParentRow": function () {}, + "getRangeClasses": function () {}, + "getRefElement": function () {}, + "getRenderedRow": function () {}, + "getStylesForRowSpanning": function () {}, + "getToolTip": function () {}, + "getValue": function () {}, + "getValueAndFormat": function () {}, + "getValueToUse": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCellEditable": function () {}, + "isDoubleClickOnIPad": function () {}, + "isEditing": function () {}, + "isSuppressNavigable": function () {}, + "isVisible": function () {}, + "modifyLeftForPrintLayout": function () {}, + "navigateAfterEdit": function () {}, + "onBackspaceOrDeleteKeyPressed": function () {}, + "onCellChanged": function () {}, + "onCellClicked": function () {}, + "onCellDoubleClicked": function () {}, + "onCellFocused": function () {}, + "onColumnHover": function () {}, + "onDisplayColumnsChanged": function () {}, + "onEnterKeyDown": function () {}, + "onEscapeKeyDown": function () {}, + "onF2KeyDown": function () {}, + "onFirstRightPinnedChanged": function () {}, + "onFlashCells": function () {}, + "onKeyDown": function () {}, + "onKeyPress": function () {}, + "onLastLeftPinnedChanged": function () {}, + "onLeftChanged": function () {}, + "onMouseDown": function () {}, + "onMouseEvent": function () {}, + "onMouseOut": function () {}, + "onMouseOver": function () {}, + "onNavigationKeyPressed": function () {}, + "onPopupEditorClosed": function () {}, + "onRangeSelectionChanged": function () {}, + "onRowIndexChanged": function () {}, + "onShiftRangeSelect": function () {}, + "onSpaceKeyPressed": function () {}, + "onTabKeyDown": function () {}, + "onWidthChanged": function () {}, + "parseValue": function () {}, + "populateTemplate": function () {}, + "postProcessCellClassRules": function () {}, + "postProcessClassesFromColDef": function () {}, + "postProcessStylesFromColDef": function () {}, + "preProcessCellClassRules": function () {}, + "preProcessClassesFromColDef": function () {}, + "preProcessStylesFromColDef": function () {}, + "processCellClassRules": function () {}, + "processClassesFromColDef": function () {}, + "processStylesFromColDef": function () {}, + "putDataIntoCellAfterRefresh": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshCell": function () {}, + "refreshToolTip": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "replaceContentsAfterRefresh": function () {}, + "setFocusInOnEditor": function () {}, + "setFocusOutOnEditor": function () {}, + "setGui": function () {}, + "setInlineEditingClass": function () {}, + "setParentRow": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setUsingWrapper": function () {}, + "setVisible": function () {}, + "setupColSpan": function () {}, + "startEditingIfEnabled": function () {}, + "startRowOrCellEdit": function () {}, + "stopEditing": function () {}, + "stopEditingAndFocus": function () {}, + "stopRowOrCellEdit": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "valuesAreEqual": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.CellEditorFactory.prototype = { + "addCellEditor": function () {}, + "createCellEditor": function () {}, + "init": function () {} +}; +agGrid.CellNavigationService.prototype = { + "getCellAbove": function () {}, + "getCellBelow": function () {}, + "getCellToLeft": function () {}, + "getCellToRight": function () {}, + "getLastBodyCell": function () {}, + "getLastFloatingTopRow": function () {}, + "getNextCellToFocus": function () {}, + "getNextTabbedCell": function () {}, + "getNextTabbedCellBackwards": function () {}, + "getNextTabbedCellForwards": function () {}, + "getRowAbove": function () {}, + "getRowBelow": function () {}, + "isCellGoodToFocusOn": function () {}, + "isLastRowInContainer": function () {} +}; +agGrid.CellRendererFactory.prototype = { + "addCellRenderer": function () {}, + "getCellRenderer": function () {}, + "init": function () {} +}; +agGrid.CellRendererService.prototype = { + "bindToHtml": function () {}, + "useCellRenderer": function () {}, + "useFilterCellRenderer": function () {}, + "useFullWidthGroupRowInnerCellRenderer": function () {}, + "useInnerCellRenderer": function () {}, + "useRichSelectCellRenderer": function () {} +}; +agGrid.ChangedPath.prototype = { + "addParentNode": function () {}, + "getNotValueColumnsForNode": function () {}, + "getValueColumnsForNode": function () {}, + "isActive": function () {}, + "isInPath": function () {}, + "setInactive": function () {}, + "validateActive": function () {} +}; +agGrid.CheckboxSelectionComponent.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkboxCallbackExists": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createAndAddIcons": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onCheckedClicked": function () {}, + "onDataChanged": function () {}, + "onIndeterminateClicked": function () {}, + "onSelectableChanged": function () {}, + "onSelectionChanged": function () {}, + "onUncheckedClicked": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "showOrHideSelect": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.ClientSideNodeManager.prototype = { + "addItems": function () {}, + "addRowNode": function () {}, + "createNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getRowNode": function () {}, + "insertItemsAtIndex": function () {}, + "isExpanded": function () {}, + "isLegacyTreeData": function () {}, + "lookupRowNode": function () {}, + "postConstruct": function () {}, + "recursiveFunction": function () {}, + "setLeafChildren": function () {}, + "setRowData": function () {}, + "updateRowData": function () {}, + "updatedRowNode": function () {} +}; +agGrid.ClientSideRowModel.prototype = { + "batchUpdateRowData": function () {}, + "commonUpdateRowData": function () {}, + "createChangePath": function () {}, + "doAggregate": function () {}, + "doFilter": function () {}, + "doPivot": function () {}, + "doRowGrouping": function () {}, + "doRowsToDisplay": function () {}, + "doSort": function () {}, + "ensureRowAtPixel": function () {}, + "executeBatchUpdateRowData": function () {}, + "expandOrCollapseAll": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "forEachPivotNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getCurrentPageHeight": function () {}, + "getGroupState": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRootNode": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getTopLevelNodes": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowInPixel": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onFilterChanged": function () {}, + "onRowGroupOpened": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "onValueChanged": function () {}, + "recursivelyWalkNodesAndCallback": function () {}, + "refreshModel": function () {}, + "resetRowHeights": function () {}, + "restoreGroupState": function () {}, + "setDatasource": function () {}, + "setRowData": function () {}, + "updateRowData": function () {} +}; +agGrid.ClipboardService.prototype = { + "copyDataToClipboard": function () {}, + "copyFocusedCellToClipboard": function () {}, + "copyRangeDown": function () {}, + "copySelectedRangeToClipboard": function () {}, + "copySelectedRowsToClipboard": function () {}, + "copyToClipboard": function () {}, + "dataToArray": function () {}, + "dispatchFlashCells": function () {}, + "executeOnTempElement": function () {}, + "fireRowChanged": function () {}, + "getRowNode": function () {}, + "init": function () {}, + "iterateActiveRange": function () {}, + "iterateActiveRanges": function () {}, + "multipleCellRange": function () {}, + "pasteFromClipboard": function () {}, + "pasteToRange": function () {}, + "pasteToSingleCell": function () {}, + "rangeSize": function () {}, + "singleCellRange": function () {}, + "updateCellValue": function () {}, + "userProcessCell": function () {}, + "userProcessHeader": function () {} +}; +agGrid.Column.prototype = { + "addEventListener": function () {}, + "createBaseColDefParams": function () {}, + "createColumnEvent": function () {}, + "createIsColumnFuncParams": function () {}, + "getActualWidth": function () {}, + "getAggFunc": function () {}, + "getColDef": function () {}, + "getColId": function () {}, + "getColSpan": function () {}, + "getColumnGroupShow": function () {}, + "getDefinition": function () {}, + "getId": function () {}, + "getLeft": function () {}, + "getMaxWidth": function () {}, + "getMenuTabs": function () {}, + "getMinWidth": function () {}, + "getOldLeft": function () {}, + "getParent": function () {}, + "getPinned": function () {}, + "getRight": function () {}, + "getRowSpan": function () {}, + "getSort": function () {}, + "getSortedAt": function () {}, + "getUniqueId": function () {}, + "initialise": function () {}, + "isAllowPivot": function () {}, + "isAllowRowGroup": function () {}, + "isAllowValue": function () {}, + "isAnyFunctionActive": function () {}, + "isAnyFunctionAllowed": function () {}, + "isCellCheckboxSelection": function () {}, + "isCellEditable": function () {}, + "isColumnFunc": function () {}, + "isEmptyGroup": function () {}, + "isFieldContainsDots": function () {}, + "isFilterActive": function () {}, + "isFilterAllowed": function () {}, + "isFirstRightPinned": function () {}, + "isGreaterThanMax": function () {}, + "isLastLeftPinned": function () {}, + "isLockPinned": function () {}, + "isLockPosition": function () {}, + "isLockVisible": function () {}, + "isMenuVisible": function () {}, + "isMoving": function () {}, + "isPinned": function () {}, + "isPinnedLeft": function () {}, + "isPinnedRight": function () {}, + "isPivotActive": function () {}, + "isPrimary": function () {}, + "isResizable": function () {}, + "isRowDrag": function () {}, + "isRowGroupActive": function () {}, + "isRowGroupDisplayed": function () {}, + "isSortAscending": function () {}, + "isSortDescending": function () {}, + "isSortNone": function () {}, + "isSorting": function () {}, + "isSuppressNavigable": function () {}, + "isSuppressPaste": function () {}, + "isTooltipFieldContainsDots": function () {}, + "isValueActive": function () {}, + "isVisible": function () {}, + "removeEventListener": function () {}, + "setActualWidth": function () {}, + "setAggFunc": function () {}, + "setFilterActive": function () {}, + "setFirstRightPinned": function () {}, + "setLastLeftPinned": function () {}, + "setLeft": function () {}, + "setMenuVisible": function () {}, + "setMinimum": function () {}, + "setMoving": function () {}, + "setParent": function () {}, + "setPinned": function () {}, + "setPivotActive": function () {}, + "setRowGroupActive": function () {}, + "setSort": function () {}, + "setSortedAt": function () {}, + "setValueActive": function () {}, + "setVisible": function () {}, + "validate": function () {} +}; +agGrid.ColumnApi.prototype = { + "addAggregationColumn": function () {}, + "addAggregationColumns": function () {}, + "addPivotColumn": function () {}, + "addPivotColumns": function () {}, + "addRowGroupColumn": function () {}, + "addRowGroupColumns": function () {}, + "addValueColumn": function () {}, + "addValueColumns": function () {}, + "autoSizeAllColumns": function () {}, + "autoSizeColumn": function () {}, + "autoSizeColumns": function () {}, + "columnGroupOpened": function () {}, + "getAggregationColumns": function () {}, + "getAllColumns": function () {}, + "getAllDisplayedColumnGroups": function () {}, + "getAllDisplayedColumns": function () {}, + "getAllDisplayedVirtualColumns": function () {}, + "getAllGridColumns": function () {}, + "getCenterDisplayedColumnGroups": function () {}, + "getColumn": function () {}, + "getColumnGroup": function () {}, + "getColumnGroupState": function () {}, + "getColumnState": function () {}, + "getDisplayNameForCol": function () {}, + "getDisplayNameForColumn": function () {}, + "getDisplayNameForColumnGroup": function () {}, + "getDisplayedCenterColumns": function () {}, + "getDisplayedColAfter": function () {}, + "getDisplayedColBefore": function () {}, + "getDisplayedLeftColumns": function () {}, + "getDisplayedRightColumns": function () {}, + "getLeftDisplayedColumnGroups": function () {}, + "getOriginalColumnGroup": function () {}, + "getPivotColumns": function () {}, + "getRightDisplayedColumnGroups": function () {}, + "getRowGroupColumns": function () {}, + "getSecondaryPivotColumn": function () {}, + "getState": function () {}, + "getValueColumns": function () {}, + "hideColumn": function () {}, + "hideColumns": function () {}, + "isPinning": function () {}, + "isPinningLeft": function () {}, + "isPinningRight": function () {}, + "isPivotMode": function () {}, + "moveColumn": function () {}, + "moveColumnByIndex": function () {}, + "moveColumns": function () {}, + "moveRowGroupColumn": function () {}, + "removeAggregationColumn": function () {}, + "removeAggregationColumns": function () {}, + "removePivotColumn": function () {}, + "removePivotColumns": function () {}, + "removeRowGroupColumn": function () {}, + "removeRowGroupColumns": function () {}, + "removeValueColumn": function () {}, + "removeValueColumns": function () {}, + "resetColumnGroupState": function () {}, + "resetColumnState": function () {}, + "resetState": function () {}, + "setColumnAggFunc": function () {}, + "setColumnAggFunction": function () {}, + "setColumnGroupOpened": function () {}, + "setColumnGroupState": function () {}, + "setColumnPinned": function () {}, + "setColumnState": function () {}, + "setColumnVisible": function () {}, + "setColumnWidth": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {}, + "setPivotColumns": function () {}, + "setPivotMode": function () {}, + "setRowGroupColumns": function () {}, + "setSecondaryColumns": function () {}, + "setState": function () {}, + "setValueColumns": function () {}, + "sizeColumnsToFit": function () {} +}; +agGrid.ColumnController.prototype = { + "actionOnGridColumns": function () {}, + "addAutoGroupToGridColumns": function () {}, + "addPivotColumn": function () {}, + "addPivotColumns": function () {}, + "addRowGroupColumn": function () {}, + "addRowGroupColumns": function () {}, + "addToDisplayedColumns": function () {}, + "addValueColumn": function () {}, + "addValueColumns": function () {}, + "autoSizeAllColumns": function () {}, + "autoSizeColumn": function () {}, + "autoSizeColumns": function () {}, + "buildDisplayedTrees": function () {}, + "calculateColumnsForDisplay": function () {}, + "calculateColumnsForGroupDisplay": function () {}, + "checkColSpanActiveInCols": function () {}, + "checkDisplayedVirtualColumns": function () {}, + "checkMinAndMaxWidthsForSet": function () {}, + "clearDisplayedColumns": function () {}, + "columnsMatch": function () {}, + "createGroupAutoColumnsIfNeeded": function () {}, + "createStateItemFromColumn": function () {}, + "createValueColumns": function () {}, + "doesMovePassLockedPositions": function () {}, + "doesMovePassMarryChildren": function () {}, + "doesMovePassRules": function () {}, + "extractPivotColumns": function () {}, + "extractRowGroupColumns": function () {}, + "filterOutColumnsWithinViewport": function () {}, + "getAllAutoRowHeightCols": function () {}, + "getAllColumnsForQuickFilter": function () {}, + "getAllDisplayedCenterVirtualColumnsForRow": function () {}, + "getAllDisplayedColumnGroups": function () {}, + "getAllDisplayedColumns": function () {}, + "getAllDisplayedVirtualColumns": function () {}, + "getAllGridColumns": function () {}, + "getAllPrimaryColumns": function () {}, + "getAutoColumn": function () {}, + "getBodyContainerWidth": function () {}, + "getCenterDisplayedColumnGroups": function () {}, + "getColumn": function () {}, + "getColumnGroup": function () {}, + "getColumnGroupState": function () {}, + "getColumnState": function () {}, + "getColumnWithValidation": function () {}, + "getColumns": function () {}, + "getColumnsFromTree": function () {}, + "getContainerWidth": function () {}, + "getDisplayNameForColumn": function () {}, + "getDisplayNameForColumnGroup": function () {}, + "getDisplayNameForOriginalColumnGroup": function () {}, + "getDisplayedCenterColumns": function () {}, + "getDisplayedColAfter": function () {}, + "getDisplayedColBefore": function () {}, + "getDisplayedColumnGroups": function () {}, + "getDisplayedColumns": function () {}, + "getDisplayedColumnsForRow": function () {}, + "getDisplayedColumnsStartingAt": function () {}, + "getDisplayedGroupAfter": function () {}, + "getDisplayedLeftColumns": function () {}, + "getDisplayedLeftColumnsForRow": function () {}, + "getDisplayedRightColumns": function () {}, + "getDisplayedRightColumnsForRow": function () {}, + "getGridBalancedTree": function () {}, + "getGridColumn": function () {}, + "getGridColumns": function () {}, + "getGroupAutoColumns": function () {}, + "getGroupDisplayColumns": function () {}, + "getHeaderName": function () {}, + "getHeaderRowCount": function () {}, + "getLeftDisplayedColumnGroups": function () {}, + "getOriginalColumnGroup": function () {}, + "getPinnedLeftContainerWidth": function () {}, + "getPinnedRightContainerWidth": function () {}, + "getPivotColumns": function () {}, + "getPrimaryAndSecondaryAndAutoColumns": function () {}, + "getPrimaryColumn": function () {}, + "getPrimaryColumnTree": function () {}, + "getPrimaryOrGridColumn": function () {}, + "getRightDisplayedColumnGroups": function () {}, + "getRowGroupColumns": function () {}, + "getSecondaryPivotColumn": function () {}, + "getValueColumns": function () {}, + "getVirtualHeaderGroupRow": function () {}, + "getWidthOfColsInList": function () {}, + "init": function () {}, + "isAutoRowHeightActive": function () {}, + "isColumnDisplayed": function () {}, + "isColumnInViewport": function () {}, + "isEmpty": function () {}, + "isPinningLeft": function () {}, + "isPinningRight": function () {}, + "isPivotActive": function () {}, + "isPivotMode": function () {}, + "isPivotSettingAllowed": function () {}, + "isPrimaryColumnGroupsPresent": function () {}, + "isReady": function () {}, + "isRowGroupEmpty": function () {}, + "isSecondaryColumnsPresent": function () {}, + "moveColumn": function () {}, + "moveColumnByIndex": function () {}, + "moveColumns": function () {}, + "moveRowGroupColumn": function () {}, + "normaliseColumnWidth": function () {}, + "orderColumnStateList": function () {}, + "orderGridColsLikeLastPrimary": function () {}, + "processSecondaryColumnDefinitions": function () {}, + "putFixedColumnsFirst": function () {}, + "raiseColumnEvents": function () {}, + "raiseColumnMovedEvent": function () {}, + "raiseColumnPinnedEvent": function () {}, + "raiseColumnResizeEvent": function () {}, + "raiseColumnVisibleEvent": function () {}, + "removePivotColumn": function () {}, + "removePivotColumns": function () {}, + "removeRowGroupColumn": function () {}, + "removeRowGroupColumns": function () {}, + "removeValueColumn": function () {}, + "removeValueColumns": function () {}, + "resetColumnGroupState": function () {}, + "resetColumnState": function () {}, + "resizeColumnSets": function () {}, + "setBeans": function () {}, + "setColumnAggFunc": function () {}, + "setColumnDefs": function () {}, + "setColumnGroupOpened": function () {}, + "setColumnGroupState": function () {}, + "setColumnPinned": function () {}, + "setColumnState": function () {}, + "setColumnVisible": function () {}, + "setColumnWidth": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {}, + "setFirstRightAndLastLeftPinned": function () {}, + "setLeftValues": function () {}, + "setLeftValuesOfColumns": function () {}, + "setLeftValuesOfGroups": function () {}, + "setPivotColumns": function () {}, + "setPivotMode": function () {}, + "setPrimaryColumnList": function () {}, + "setRowGroupActive": function () {}, + "setRowGroupColumns": function () {}, + "setSecondaryColumns": function () {}, + "setValueActive": function () {}, + "setValueColumns": function () {}, + "setVirtualViewportLeftAndRight": function () {}, + "setVirtualViewportPosition": function () {}, + "setupAllDisplayedColumns": function () {}, + "setupQuickFilterColumns": function () {}, + "sizeColumnsToFit": function () {}, + "sortColumnListUsingIndexes": function () {}, + "syncColumnWithNoState": function () {}, + "syncColumnWithStateItem": function () {}, + "updateBodyWidths": function () {}, + "updateDisplayedCenterVirtualColumns": function () {}, + "updateDisplayedColumns": function () {}, + "updateDisplayedColumnsFromTrees": function () {}, + "updateDisplayedVirtualGroups": function () {}, + "updateGridColumns": function () {}, + "updateGroupsAndDisplayedColumns": function () {}, + "updateOpenClosedVisibilityInColumnGroups": function () {}, + "updatePrimaryColumnList": function () {}, + "updateVirtualSets": function () {}, + "wrapHeaderNameWithAggFunc": function () {} +}; +agGrid.ColumnGroup.prototype = { + "addChild": function () {}, + "addDisplayedLeafColumns": function () {}, + "addEventListener": function () {}, + "addLeafColumns": function () {}, + "calculateDisplayedColumns": function () {}, + "checkLeft": function () {}, + "createAgEvent": function () {}, + "getActualWidth": function () {}, + "getChildren": function () {}, + "getColGroupDef": function () {}, + "getColumnGroupShow": function () {}, + "getDefinition": function () {}, + "getDisplayedChildren": function () {}, + "getDisplayedLeafColumns": function () {}, + "getGroupId": function () {}, + "getInstanceId": function () {}, + "getLeafColumns": function () {}, + "getLeft": function () {}, + "getMinWidth": function () {}, + "getOldLeft": function () {}, + "getOriginalColumnGroup": function () {}, + "getParent": function () {}, + "getPinned": function () {}, + "getUniqueId": function () {}, + "isChildInThisGroupDeepSearch": function () {}, + "isEmptyGroup": function () {}, + "isExpandable": function () {}, + "isExpanded": function () {}, + "isMoving": function () {}, + "isPadding": function () {}, + "isResizable": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "setExpanded": function () {}, + "setLeft": function () {}, + "setParent": function () {} +}; +agGrid.ColumnKeyCreator.prototype = { + "getUniqueKey": function () {} +}; +agGrid.ColumnUtils.prototype = { + "calculateColInitialWidth": function () {}, + "depthFirstAllColumnTreeSearch": function () {}, + "depthFirstDisplayedColumnTreeSearch": function () {}, + "depthFirstOriginalTreeSearch": function () {}, + "getOriginalPathForColumn": function () {} +}; +agGrid.Component.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.ComponentProvider.prototype = { + "init": function () {}, + "registerComponent": function () {}, + "registerDefaultComponent": function () {}, + "registerFwComponent": function () {}, + "retrieve": function () {}, + "translateIfDeprecated": function () {} +}; +agGrid.ComponentResolver.prototype = { + "createAgGridComponent": function () {}, + "createInternalAgGridComponent": function () {}, + "getComponentToUse": function () {}, + "initialiseComponent": function () {}, + "mergeParams": function () {}, + "newAgGridComponent": function () {}, + "resolveByName": function () {} +}; +agGrid.Context.prototype = { + "addComponent": function () {}, + "autoWireBean": function () {}, + "autoWireBeans": function () {}, + "createBeanEntry": function () {}, + "createBeans": function () {}, + "createComponent": function () {}, + "destroy": function () {}, + "getBean": function () {}, + "getBeanName": function () {}, + "getBeansForParameters": function () {}, + "getEnterpriseDefaultComponents": function () {}, + "lookupBeanInstance": function () {}, + "methodWireBean": function () {}, + "methodWireBeans": function () {}, + "postConstruct": function () {}, + "preConstruct": function () {}, + "setupComponents": function () {}, + "wireBean": function () {}, + "wireBeans": function () {} +}; +agGrid.ContextMenuFactory.prototype = { + "getMenuItems": function () {}, + "hideActiveMenu": function () {}, + "init": function () {}, + "showMenu": function () {} +}; +agGrid.CsvCreator.prototype = { + "constructor": function () {}, + "createSerializingSession": function () {}, + "export": function () {}, + "exportDataAsCsv": function () {}, + "getData": function () {}, + "getDataAsCsv": function () {}, + "getDefaultFileExtension": function () {}, + "getDefaultFileName": function () {}, + "getMergedParamsAndData": function () {}, + "getMimeType": function () {}, + "isExportSuppressed": function () {}, + "mergeDefaultParams": function () {}, + "postConstruct": function () {}, + "setBeans": function () {} +}; +agGrid.DateFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "bodyTemplate": function () {}, + "comparator": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createComponents": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "defaultComparator": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIndividualFilterPasses": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDateFrom": function () {}, + "getDateTo": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilterType": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "nullComparator": function () {}, + "onClearButton": function () {}, + "onDateChanged": function () {}, + "onFilterChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setDateFrom": function () {}, + "setDateFrom_date": function () {}, + "setDateTo": function () {}, + "setDateTo_date": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "translateNull": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.DisplayedGroupCreator.prototype = { + "createColumnGroup": function () {}, + "createDisplayedGroups": function () {}, + "getOriginalPathForColumn": function () {}, + "mapOldGroupsById": function () {}, + "setupParentsIntoColumns": function () {} +}; +agGrid.Downloader.prototype = { + "download": function () {} +}; +agGrid.DragAndDropService.prototype = { + "addDragSource": function () {}, + "addDropTarget": function () {}, + "createDropTargetEvent": function () {}, + "createGhost": function () {}, + "destroy": function () {}, + "enterDragTargetIfExists": function () {}, + "getAllContainersFromDropTarget": function () {}, + "getStringType": function () {}, + "init": function () {}, + "isMouseOnDropTarget": function () {}, + "leaveLastTargetIfExists": function () {}, + "nudge": function () {}, + "onDragStart": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "positionGhost": function () {}, + "removeDragSource": function () {}, + "removeGhost": function () {}, + "setBeans": function () {}, + "setGhostIcon": function () {}, + "workOutHDirection": function () {}, + "workOutVDirection": function () {} +}; +agGrid.DragService.prototype = { + "addDragSource": function () {}, + "destroy": function () {}, + "getFirstActiveTouch": function () {}, + "init": function () {}, + "isEventNearStartEvent": function () {}, + "onCommonMove": function () {}, + "onMouseDown": function () {}, + "onMouseMove": function () {}, + "onMouseUp": function () {}, + "onTouchMove": function () {}, + "onTouchStart": function () {}, + "onTouchUp": function () {}, + "onUpCommon": function () {}, + "removeDragSource": function () {}, + "removeListener": function () {}, + "setNoSelectToBody": function () {} +}; +agGrid.DropZoneColumnComp.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDragSource": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createAggSelect": function () {}, + "createChildAttributes": function () {}, + "createDragItem": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onShowAggFuncSelection": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setTextValue": function () {}, + "setVisible": function () {}, + "setupComponents": function () {}, + "setupRemove": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.EnterpriseBoot.prototype = { + "init": function () {} +}; +agGrid.EnterpriseMenu.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "afterGuiAttached": function () {}, + "constructor": function () {}, + "createColumnsPanel": function () {}, + "createFilterPanel": function () {}, + "createMainPanel": function () {}, + "createTab": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getDefaultMenuOptions": function () {}, + "getGui": function () {}, + "getMenuItems": function () {}, + "getMinDimensions": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isNotSuppressed": function () {}, + "isValidMenuTabItem": function () {}, + "onHidePopup": function () {}, + "onTabItemClicked": function () {}, + "removeEventListener": function () {}, + "showTab": function () {}, + "showTabBasedOnPreviousSelection": function () {} +}; +agGrid.Environment.prototype = { + "getSassVariable": function () {}, + "getTheme": function () {}, + "loadSassVariables": function () {} +}; +agGrid.EventService.prototype = { + "addEventListener": function () {}, + "addGlobalListener": function () {}, + "addModalPriorityEventListener": function () {}, + "dispatchAsync": function () {}, + "dispatchEvent": function () {}, + "dispatchEventOnce": function () {}, + "dispatchToListeners": function () {}, + "flushAsyncQueue": function () {}, + "getListenerList": function () {}, + "removeEventListener": function () {}, + "removeGlobalListener": function () {}, + "setBeans": function () {} +}; +agGrid.ExcelCreator.prototype = { + "constructor": function () {}, + "createSerializingSession": function () {}, + "export": function () {}, + "exportDataAsExcel": function () {}, + "getData": function () {}, + "getDataAsExcelXml": function () {}, + "getDefaultFileExtension": function () {}, + "getDefaultFileName": function () {}, + "getMergedParamsAndData": function () {}, + "getMimeType": function () {}, + "isExportSuppressed": function () {}, + "mergeDefaultParams": function () {}, + "postConstruct": function () {}, + "setBeans": function () {}, + "styleLinker": function () {} +}; +agGrid.ExcelXmlFactory.prototype = { + "columnXmlElement": function () {}, + "createExcelXml": function () {}, + "documentProperties": function () {}, + "excelWorkbook": function () {}, + "excelXmlHeader": function () {}, + "rowCellXmlElement": function () {}, + "rowXmlElement": function () {}, + "styleXmlElement": function () {}, + "stylesXmlElement": function () {}, + "workbook": function () {}, + "worksheetXmlElement": function () {} +}; +agGrid.ExpressionService.prototype = { + "createExpressionFunction": function () {}, + "createFunctionBody": function () {}, + "evaluate": function () {}, + "evaluateExpression": function () {}, + "setBeans": function () {} +}; +agGrid.FilterManager.prototype = { + "aggregateRowForQuickFilter": function () {}, + "cachedFilter": function () {}, + "checkExternalFilter": function () {}, + "createFilterInstance": function () {}, + "createFilterWrapper": function () {}, + "createValueGetter": function () {}, + "destroy": function () {}, + "destroyFilter": function () {}, + "disposeFilterWrapper": function () {}, + "doesFilterPass": function () {}, + "doesRowPassFilter": function () {}, + "doesRowPassOtherFilters": function () {}, + "doesRowPassQuickFilter": function () {}, + "doesRowPassQuickFilterCache": function () {}, + "doesRowPassQuickFilterNoCache": function () {}, + "getFilterComponent": function () {}, + "getFilterModel": function () {}, + "getOrCreateFilterWrapper": function () {}, + "getQuickFilterTextForColumn": function () {}, + "init": function () {}, + "isAdvancedFilterPresent": function () {}, + "isAnyFilterPresent": function () {}, + "isQuickFilterPresent": function () {}, + "onFilterChanged": function () {}, + "onNewColumnsLoaded": function () {}, + "onNewRowsLoaded": function () {}, + "parseQuickFilter": function () {}, + "putIntoGui": function () {}, + "setAdvancedFilterPresent": function () {}, + "setFilterModel": function () {}, + "setModelOnFilterWrapper": function () {}, + "setQuickFilter": function () {}, + "setQuickFilterParts": function () {}, + "updateFilterFlagInColumns": function () {} +}; +agGrid.FilterStage.prototype = { + "execute": function () {} +}; +agGrid.FlattenStage.prototype = { + "addRowNodeToRowsToDisplay": function () {}, + "createDetailNode": function () {}, + "ensureFooterNodeExists": function () {}, + "execute": function () {}, + "recursivelyAddToRowsToDisplay": function () {}, + "resetRowTops": function () {} +}; +agGrid.FocusedCellController.prototype = { + "clearFocusedCell": function () {}, + "getFocusCellToUseAfterRefresh": function () {}, + "getFocusedCell": function () {}, + "getGridCellForDomElement": function () {}, + "init": function () {}, + "isAnyCellFocused": function () {}, + "isCellFocused": function () {}, + "isRowFocused": function () {}, + "isRowNodeFocused": function () {}, + "onCellFocused": function () {}, + "setFocusedCell": function () {} +}; +agGrid.Grid.prototype = { + "destroy": function () {}, + "dispatchGridReadyEvent": function () {}, + "getRowModelClass": function () {}, + "setColumnsAndData": function () {} +}; +agGrid.Grid.RowModelClasses.clientSide.prototype = { + "batchUpdateRowData": function () {}, + "commonUpdateRowData": function () {}, + "createChangePath": function () {}, + "doAggregate": function () {}, + "doFilter": function () {}, + "doPivot": function () {}, + "doRowGrouping": function () {}, + "doRowsToDisplay": function () {}, + "doSort": function () {}, + "ensureRowAtPixel": function () {}, + "executeBatchUpdateRowData": function () {}, + "expandOrCollapseAll": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "forEachPivotNode": function () {}, + "getCopyOfNodesMap": function () {}, + "getCurrentPageHeight": function () {}, + "getGroupState": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRootNode": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getTopLevelNodes": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowInPixel": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onFilterChanged": function () {}, + "onRowGroupOpened": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "onValueChanged": function () {}, + "recursivelyWalkNodesAndCallback": function () {}, + "refreshModel": function () {}, + "resetRowHeights": function () {}, + "restoreGroupState": function () {}, + "setDatasource": function () {}, + "setRowData": function () {}, + "updateRowData": function () {} +}; +agGrid.Grid.RowModelClasses.infinite.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListeners": function () {}, + "checkForDeprecated": function () {}, + "constructor": function () {}, + "createModelUpdatedEvent": function () {}, + "destroy": function () {}, + "destroyCache": function () {}, + "destroyDatasource": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "getBlockState": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isMaxRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onCacheUpdated": function () {}, + "onColumnEverything": function () {}, + "onFilterChanged": function () {}, + "onSortChanged": function () {}, + "purgeCache": function () {}, + "refreshCache": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "resetCache": function () {}, + "setDatasource": function () {}, + "setVirtualRowCount": function () {}, + "updateRowData": function () {} +}; +agGrid.Grid.RowModelClasses.serverSide.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListeners": function () {}, + "addToCache": function () {}, + "cacheExists": function () {}, + "constructor": function () {}, + "createCacheParams": function () {}, + "createNewRowNodeBlockLoader": function () {}, + "createNodeCache": function () {}, + "destroy": function () {}, + "destroyDatasource": function () {}, + "destroyRowNodeBlockLoader": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "executeOnCache": function () {}, + "extractSortModel": function () {}, + "findChangedColumnsInSort": function () {}, + "forEachNode": function () {}, + "getBlockState": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "isAlive": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "isSortingWithValueColumn": function () {}, + "onCacheUpdated": function () {}, + "onColumnEverything": function () {}, + "onColumnPivotChanged": function () {}, + "onColumnRowGroupChanged": function () {}, + "onFilterChanged": function () {}, + "onPivotModeChanged": function () {}, + "onRowGroupOpened": function () {}, + "onSortChanged": function () {}, + "onValueChanged": function () {}, + "postConstruct": function () {}, + "purgeCache": function () {}, + "removeEventListener": function () {}, + "removeFromCache": function () {}, + "reset": function () {}, + "resetRowTops": function () {}, + "setBeans": function () {}, + "setDatasource": function () {}, + "setDisplayIndexes": function () {}, + "toValueObjects": function () {}, + "updateRowIndexesAndBounds": function () {} +}; +agGrid.Grid.RowModelClasses.viewport.prototype = { + "calculateFirstRow": function () {}, + "calculateLastRow": function () {}, + "createBlankRowNode": function () {}, + "destroyDatasource": function () {}, + "forEachNode": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onViewportChanged": function () {}, + "purgeRowsNotInViewport": function () {}, + "setRowCount": function () {}, + "setRowData": function () {}, + "setViewportDatasource": function () {} +}; +agGrid.GridApi.prototype = { + "__getAlignedGridService": function () {}, + "addAggFunc": function () {}, + "addAggFuncs": function () {}, + "addDetailGridInfo": function () {}, + "addEventListener": function () {}, + "addGlobalListener": function () {}, + "addItems": function () {}, + "addRangeSelection": function () {}, + "addRenderedRowListener": function () {}, + "addVirtualRowListener": function () {}, + "batchUpdateRowData": function () {}, + "camelCaseToHumanReadable": function () {}, + "checkGridSize": function () {}, + "clearAggFuncs": function () {}, + "clearFocusedCell": function () {}, + "clearRangeSelection": function () {}, + "closeToolPanel": function () {}, + "collapseAll": function () {}, + "copySelectedRangeDown": function () {}, + "copySelectedRangeToClipboard": function () {}, + "copySelectedRowsToClipboard": function () {}, + "deselectAll": function () {}, + "deselectAllFiltered": function () {}, + "deselectIndex": function () {}, + "deselectNode": function () {}, + "destroy": function () {}, + "destroyFilter": function () {}, + "dispatchEvent": function () {}, + "doLayout": function () {}, + "ensureColIndexVisible": function () {}, + "ensureColumnVisible": function () {}, + "ensureIndexVisible": function () {}, + "ensureNodeVisible": function () {}, + "expandAll": function () {}, + "expireValueCache": function () {}, + "exportDataAsCsv": function () {}, + "exportDataAsExcel": function () {}, + "flashCells": function () {}, + "forEachDetailGridInfo": function () {}, + "forEachLeafNode": function () {}, + "forEachNode": function () {}, + "forEachNodeAfterFilter": function () {}, + "forEachNodeAfterFilterAndSort": function () {}, + "getBestCostNodeSelection": function () {}, + "getCacheBlockState": function () {}, + "getCellEditorInstances": function () {}, + "getCellRendererInstances": function () {}, + "getColumnDef": function () {}, + "getDataAsCsv": function () {}, + "getDataAsExcel": function () {}, + "getDetailGridInfo": function () {}, + "getDisplayedRowAtIndex": function () {}, + "getDisplayedRowCount": function () {}, + "getEditingCells": function () {}, + "getFilterApi": function () {}, + "getFilterApiForColDef": function () {}, + "getFilterInstance": function () {}, + "getFilterModel": function () {}, + "getFirstDisplayedRow": function () {}, + "getFirstRenderedRow": function () {}, + "getFloatingBottomRow": function () {}, + "getFloatingBottomRowCount": function () {}, + "getFloatingTopRow": function () {}, + "getFloatingTopRowCount": function () {}, + "getFocusedCell": function () {}, + "getInfinitePageState": function () {}, + "getInfiniteRowCount": function () {}, + "getLastDisplayedRow": function () {}, + "getLastRenderedRow": function () {}, + "getModel": function () {}, + "getOpenedToolPanel": function () {}, + "getPinnedBottomRow": function () {}, + "getPinnedBottomRowCount": function () {}, + "getPinnedTopRow": function () {}, + "getPinnedTopRowCount": function () {}, + "getPreferredWidth": function () {}, + "getRangeSelections": function () {}, + "getRenderedNodes": function () {}, + "getRowNode": function () {}, + "getSelectedNodes": function () {}, + "getSelectedNodesById": function () {}, + "getSelectedRows": function () {}, + "getSideBar": function () {}, + "getSortModel": function () {}, + "getStatusPanel": function () {}, + "getValue": function () {}, + "getVerticalPixelRange": function () {}, + "getVirtualPageState": function () {}, + "getVirtualRowCount": function () {}, + "hideOverlay": function () {}, + "hidePopupMenu": function () {}, + "init": function () {}, + "insertItemsAtIndex": function () {}, + "isAdvancedFilterPresent": function () {}, + "isAnimationFrameQueueEmpty": function () {}, + "isAnyFilterPresent": function () {}, + "isMaxRowFound": function () {}, + "isNodeSelected": function () {}, + "isQuickFilterPresent": function () {}, + "isSideBarVisible": function () {}, + "isToolPanelShowing": function () {}, + "onFilterChanged": function () {}, + "onGroupExpandedOrCollapsed": function () {}, + "onRowHeightChanged": function () {}, + "onSortChanged": function () {}, + "openToolPanel": function () {}, + "paginationGetCurrentPage": function () {}, + "paginationGetPageSize": function () {}, + "paginationGetRowCount": function () {}, + "paginationGetTotalPages": function () {}, + "paginationGoToFirstPage": function () {}, + "paginationGoToLastPage": function () {}, + "paginationGoToNextPage": function () {}, + "paginationGoToPage": function () {}, + "paginationGoToPreviousPage": function () {}, + "paginationIsLastPageFound": function () {}, + "paginationSetPageSize": function () {}, + "purgeEnterpriseCache": function () {}, + "purgeInfiniteCache": function () {}, + "purgeInfinitePageCache": function () {}, + "purgeServerSideCache": function () {}, + "purgeVirtualPageCache": function () {}, + "recomputeAggregates": function () {}, + "redrawRows": function () {}, + "refreshCells": function () {}, + "refreshClientSideRowModel": function () {}, + "refreshGroupRows": function () {}, + "refreshHeader": function () {}, + "refreshInMemoryRowModel": function () {}, + "refreshInfiniteCache": function () {}, + "refreshInfinitePageCache": function () {}, + "refreshRows": function () {}, + "refreshToolPanel": function () {}, + "refreshView": function () {}, + "refreshVirtualPageCache": function () {}, + "registerGridComp": function () {}, + "registerHeaderRootComp": function () {}, + "removeDetailGridInfo": function () {}, + "removeEventListener": function () {}, + "removeGlobalListener": function () {}, + "removeItems": function () {}, + "resetQuickFilter": function () {}, + "resetRowHeights": function () {}, + "rowDataChanged": function () {}, + "selectAll": function () {}, + "selectAllFiltered": function () {}, + "selectIndex": function () {}, + "selectNode": function () {}, + "setColumnDefs": function () {}, + "setDatasource": function () {}, + "setDomLayout": function () {}, + "setEnterpriseDatasource": function () {}, + "setFilterModel": function () {}, + "setFloatingBottomRowData": function () {}, + "setFloatingFiltersHeight": function () {}, + "setFloatingTopRowData": function () {}, + "setFocusedCell": function () {}, + "setFunctionsReadOnly": function () {}, + "setGridAutoHeight": function () {}, + "setGroupHeaderHeight": function () {}, + "setGroupRemoveLowestSingleChildren": function () {}, + "setGroupRemoveSingleChildren": function () {}, + "setHeaderHeight": function () {}, + "setInfiniteRowCount": function () {}, + "setPinnedBottomRowData": function () {}, + "setPinnedTopRowData": function () {}, + "setPivotGroupHeaderHeight": function () {}, + "setPivotHeaderHeight": function () {}, + "setPopupParent": function () {}, + "setQuickFilter": function () {}, + "setRowData": function () {}, + "setServerSideDatasource": function () {}, + "setSideBar": function () {}, + "setSideBarVisible": function () {}, + "setSortModel": function () {}, + "setSuppressClipboardPaste": function () {}, + "setSuppressRowDrag": function () {}, + "setViewportDatasource": function () {}, + "setVirtualRowCount": function () {}, + "showColumnMenuAfterButtonClick": function () {}, + "showColumnMenuAfterMouseClick": function () {}, + "showLoadingOverlay": function () {}, + "showNoRowsOverlay": function () {}, + "showToolPanel": function () {}, + "sizeColumnsToFit": function () {}, + "softRefreshView": function () {}, + "startEditingCell": function () {}, + "stopEditing": function () {}, + "tabToNextCell": function () {}, + "tabToPreviousCell": function () {}, + "timeFullRedraw": function () {}, + "updateRowData": function () {} +}; +agGrid.GridCell.prototype = { + "createId": function () {}, + "equals": function () {}, + "getGridCellDef": function () {}, + "getGridRow": function () {}, + "toString": function () {} +}; +agGrid.GridCore.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addRtlSupport": function () {}, + "appendChild": function () {}, + "closeToolPanel": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureNodeVisible": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getOpenedToolPanel": function () {}, + "getPreferredWidth": function () {}, + "getRefElement": function () {}, + "getRootGui": function () {}, + "getSideBar": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isSideBarVisible": function () {}, + "isToolPanelShowing": function () {}, + "isVisible": function () {}, + "onGridSizeChanged": function () {}, + "openToolPanel": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setSideBar": function () {}, + "setSideBarVisible": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GridOptionsWrapper.prototype = { + "addEventListener": function () {}, + "addLayoutElement": function () {}, + "agWire": function () {}, + "checkColumnDefProperties": function () {}, + "checkForDeprecated": function () {}, + "checkForViolations": function () {}, + "checkGridOptionsProperties": function () {}, + "checkProperties": function () {}, + "destroy": function () {}, + "doesExternalFilterPass": function () {}, + "getAggFuncs": function () {}, + "getAlignedGrids": function () {}, + "getApi": function () {}, + "getAutoGroupColumnDef": function () {}, + "getAutoSizePadding": function () {}, + "getBatchUpdateWaitMillis": function () {}, + "getBlockLoadDebounceMillis": function () {}, + "getBusinessKeyForNodeFunc": function () {}, + "getCacheBlockSize": function () {}, + "getCacheOverflowSize": function () {}, + "getChildCountFunc": function () {}, + "getClipboardDeliminator": function () {}, + "getColResizeDefault": function () {}, + "getColWidth": function () {}, + "getColumnApi": function () {}, + "getColumnDefs": function () {}, + "getColumnTypes": function () {}, + "getContext": function () {}, + "getContextMenuItemsFunc": function () {}, + "getDataPathFunc": function () {}, + "getDatasource": function () {}, + "getDefaultColDef": function () {}, + "getDefaultColGroupDef": function () {}, + "getDefaultExportParams": function () {}, + "getDefaultGroupSortComparator": function () {}, + "getDefaultRowHeight": function () {}, + "getDocument": function () {}, + "getDoesDataFlowerFunc": function () {}, + "getDomData": function () {}, + "getDomLayout": function () {}, + "getFloatingFiltersHeight": function () {}, + "getFullWidthCellRendererParams": function () {}, + "getGroupDefaultExpanded": function () {}, + "getGroupHeaderHeight": function () {}, + "getGroupRowAggNodesFunc": function () {}, + "getGroupRowRendererParams": function () {}, + "getHeaderHeight": function () {}, + "getIcons": function () {}, + "getInfiniteInitialRowCount": function () {}, + "getIsFullWidthCellFunc": function () {}, + "getIsRowMasterFunc": function () {}, + "getIsRowSelectableFunc": function () {}, + "getIsServerSideGroupFunc": function () {}, + "getLocaleTextFunc": function () {}, + "getMainMenuItemsFunc": function () {}, + "getMaxBlocksInCache": function () {}, + "getMaxColWidth": function () {}, + "getMaxConcurrentDatasourceRequests": function () {}, + "getMinColWidth": function () {}, + "getNavigateToNextCellFunc": function () {}, + "getNodeChildDetailsFunc": function () {}, + "getOverlayLoadingTemplate": function () {}, + "getOverlayNoRowsTemplate": function () {}, + "getPaginationNumberFormatterFunc": function () {}, + "getPaginationPageSize": function () {}, + "getPinnedBottomRowData": function () {}, + "getPinnedTopRowData": function () {}, + "getPivotColumnGroupTotals": function () {}, + "getPivotGroupHeaderHeight": function () {}, + "getPivotHeaderHeight": function () {}, + "getPivotPanelShow": function () {}, + "getPivotRowTotals": function () {}, + "getPopupParent": function () {}, + "getPostProcessPopupFunc": function () {}, + "getPostSortFunc": function () {}, + "getProcessCellForClipboardFunc": function () {}, + "getProcessCellFromClipboardFunc": function () {}, + "getProcessDataFromClipboardFunc": function () {}, + "getProcessHeaderForClipboardFunc": function () {}, + "getProcessRowPostCreateFunc": function () {}, + "getProcessSecondaryColDefFunc": function () {}, + "getProcessSecondaryColGroupDefFunc": function () {}, + "getQuickFilterText": function () {}, + "getRowBuffer": function () {}, + "getRowClass": function () {}, + "getRowClassFunc": function () {}, + "getRowData": function () {}, + "getRowGroupPanelShow": function () {}, + "getRowHeightAsNumber": function () {}, + "getRowHeightForNode": function () {}, + "getRowNodeIdFunc": function () {}, + "getRowStyle": function () {}, + "getRowStyleFunc": function () {}, + "getScrollbarWidth": function () {}, + "getSendToClipboardFunc": function () {}, + "getServerSideDatasource": function () {}, + "getServerSideGroupKeyFunc": function () {}, + "getSideBar": function () {}, + "getSortingOrder": function () {}, + "getTabToNextCellFunc": function () {}, + "getViewportDatasource": function () {}, + "getViewportRowModelBufferSize": function () {}, + "getViewportRowModelPageSize": function () {}, + "getVirtualItemHeight": function () {}, + "globalEventHandler": function () {}, + "init": function () {}, + "isAccentedSort": function () {}, + "isAggregateOnlyChangedColumns": function () {}, + "isAllowContextMenuWithControlKey": function () {}, + "isAngularCompileFilters": function () {}, + "isAngularCompileHeaders": function () {}, + "isAngularCompileRows": function () {}, + "isAnimateRows": function () {}, + "isCacheQuickFilter": function () {}, + "isDebug": function () {}, + "isDeltaRowDataMode": function () {}, + "isDynamicRowHeight": function () {}, + "isEmbedFullWidthRows": function () {}, + "isEnableCellChangeFlash": function () {}, + "isEnableCellExpressions": function () {}, + "isEnableColResize": function () {}, + "isEnableFilter": function () {}, + "isEnableGroupEdit": function () {}, + "isEnableOldSetFilterModel": function () {}, + "isEnableRangeSelection": function () {}, + "isEnableRtl": function () {}, + "isEnableServerSideFilter": function () {}, + "isEnableServerSideSorting": function () {}, + "isEnableSorting": function () {}, + "isEnsureDomOrder": function () {}, + "isEnterMovesDown": function () {}, + "isEnterMovesDownAfterEdit": function () {}, + "isEnterprise": function () {}, + "isExternalFilterPresent": function () {}, + "isFloatingFilter": function () {}, + "isFullRowEdit": function () {}, + "isFunctionsPassive": function () {}, + "isFunctionsReadOnly": function () {}, + "isGroupHideOpenParents": function () {}, + "isGroupIncludeFooter": function () {}, + "isGroupIncludeTotalFooter": function () {}, + "isGroupMultiAutoColumn": function () {}, + "isGroupRemoveLowestSingleChildren": function () {}, + "isGroupRemoveSingleChildren": function () {}, + "isGroupSelectsChildren": function () {}, + "isGroupSelectsFiltered": function () {}, + "isGroupSuppressAutoColumn": function () {}, + "isGroupSuppressBlankHeader": function () {}, + "isGroupSuppressRow": function () {}, + "isGroupUseEntireRow": function () {}, + "isMasterDetail": function () {}, + "isMultiSortKeyCtrl": function () {}, + "isNumeric": function () {}, + "isPagination": function () {}, + "isPaginationAutoPageSize": function () {}, + "isPivotMode": function () {}, + "isPivotTotals": function () {}, + "isPurgeClosedRowNodes": function () {}, + "isRememberGroupStateWhenNewData": function () {}, + "isRowDeselection": function () {}, + "isRowDragManaged": function () {}, + "isRowModelDefault": function () {}, + "isRowModelInfinite": function () {}, + "isRowModelServerSide": function () {}, + "isRowModelViewport": function () {}, + "isRowMultiSelectWithClick": function () {}, + "isRowSelection": function () {}, + "isRowSelectionMulti": function () {}, + "isServerSideSortingAlwaysResets": function () {}, + "isShowToolPanel": function () {}, + "isSingleClickEdit": function () {}, + "isStopEditingWhenGridLosesFocus": function () {}, + "isSuppressAggAtRootLevel": function () {}, + "isSuppressAggFuncInHeader": function () {}, + "isSuppressAnimationFrame": function () {}, + "isSuppressAutoSize": function () {}, + "isSuppressCellSelection": function () {}, + "isSuppressChangeDetection": function () {}, + "isSuppressClickEdit": function () {}, + "isSuppressClipboardPaste": function () {}, + "isSuppressColumnMoveAnimation": function () {}, + "isSuppressColumnVirtualisation": function () {}, + "isSuppressContextMenu": function () {}, + "isSuppressCopyRowsToClipboard": function () {}, + "isSuppressCsvExport": function () {}, + "isSuppressDragLeaveHidesColumns": function () {}, + "isSuppressEnterpriseResetOnNewColumns": function () {}, + "isSuppressExcelExport": function () {}, + "isSuppressFieldDotNotation": function () {}, + "isSuppressFocusAfterRefresh": function () {}, + "isSuppressHorizontalScroll": function () {}, + "isSuppressLoadingOverlay": function () {}, + "isSuppressMakeColumnVisibleAfterUnGroup": function () {}, + "isSuppressMenuHide": function () {}, + "isSuppressMiddleClickScrolls": function () {}, + "isSuppressMovableColumns": function () {}, + "isSuppressMultiRangeSelection": function () {}, + "isSuppressMultiSort": function () {}, + "isSuppressNoRowsOverlay": function () {}, + "isSuppressPaginationPanel": function () {}, + "isSuppressParentsInRowNodes": function () {}, + "isSuppressPreventDefaultOnMouseWheel": function () {}, + "isSuppressRowClickSelection": function () {}, + "isSuppressRowDrag": function () {}, + "isSuppressRowHoverHighlight": function () {}, + "isSuppressRowTransform": function () {}, + "isSuppressScrollOnNewData": function () {}, + "isSuppressSetColumnStateEvents": function () {}, + "isSuppressTabbing": function () {}, + "isSuppressTouch": function () {}, + "isTreeData": function () {}, + "isUnSortIcon": function () {}, + "isValueCache": function () {}, + "isValueCacheNeverExpires": function () {}, + "removeEventListener": function () {}, + "rowClassRules": function () {}, + "setDomData": function () {}, + "setProperty": function () {}, + "specialForNewMaterial": function () {}, + "treeDataViolations": function () {}, + "updateLayoutClasses": function () {}, + "useAsyncEvents": function () {} +}; +agGrid.GridPanel.prototype = { + "__agComponentMetaData": function () {}, + "addAngularApplyCheck": function () {}, + "addAnnotatedEventListeners": function () {}, + "addBodyViewportListener": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDragListeners": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListeners": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addKeyboardEvents": function () {}, + "addMouseListeners": function () {}, + "addOrRemoveCssClass": function () {}, + "addRowDragListener": function () {}, + "addScrollEventListener": function () {}, + "addScrollListener": function () {}, + "addShortcutKeyListeners": function () {}, + "addStopEditingWhenGridLosesFocus": function () {}, + "appendChild": function () {}, + "buildRowContainerComponents": function () {}, + "checkBodyHeight": function () {}, + "checkViewportAndScrolls": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "disableBrowserDragging": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doHorizontalScroll": function () {}, + "ensureColumnVisible": function () {}, + "ensureIndexVisible": function () {}, + "executeFrame": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getBodyClientRect": function () {}, + "getBodyContainer": function () {}, + "getBodyHeight": function () {}, + "getBodyViewportScrollLeft": function () {}, + "getCenterWidth": function () {}, + "getCompId": function () {}, + "getDropTargetBodyContainers": function () {}, + "getDropTargetLeftContainers": function () {}, + "getDropTargetRightContainers": function () {}, + "getGui": function () {}, + "getHScrollPosition": function () {}, + "getRefElement": function () {}, + "getRowContainers": function () {}, + "getRowForEvent": function () {}, + "getVScrollPosition": function () {}, + "getWidthForSizeColsToFit": function () {}, + "handleContextMenuMouseEvent": function () {}, + "hideFullWidthViewportScrollbars": function () {}, + "hideOverlay": function () {}, + "hideVerticalScrollOnCenter": function () {}, + "horizontallyScrollHeaderCenterAndFloatingCenter": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isHorizontalScrollShowing": function () {}, + "isVerticalScrollShowing": function () {}, + "isVisible": function () {}, + "mockContextMenuForIPad": function () {}, + "onAnyBodyScroll": function () {}, + "onBodyHorizontalScroll": function () {}, + "onBodyViewportResized": function () {}, + "onContextMenu": function () {}, + "onCtrlAndA": function () {}, + "onCtrlAndC": function () {}, + "onCtrlAndD": function () {}, + "onCtrlAndV": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onDisplayedColumnsWidthChanged": function () {}, + "onDomLayoutChanged": function () {}, + "onHorizontalViewportChanged": function () {}, + "onNewColumnsLoaded": function () {}, + "onRowDataChanged": function () {}, + "preventDefaultOnContextMenu": function () {}, + "processKeyboardEvent": function () {}, + "processMouseEvent": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawRowsAfterScroll": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "removeScrollEventListener": function () {}, + "scrollHorizontally": function () {}, + "scrollToTop": function () {}, + "scrollVertically": function () {}, + "setBodyAndHeaderHeights": function () {}, + "setBodyViewportScrollLeft": function () {}, + "setBottomPaddingOnPinned": function () {}, + "setCenterWidth": function () {}, + "setColumnMovingCss": function () {}, + "setElementWidth": function () {}, + "setGui": function () {}, + "setHorizontalScrollPosition": function () {}, + "setPinnedContainersVisible": function () {}, + "setPinnedLeftWidth": function () {}, + "setPinnedRightWidth": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVerticalScrollPosition": function () {}, + "setVisible": function () {}, + "setWidthsOfContainers": function () {}, + "setupOverlay": function () {}, + "setupRowAnimationCssClass": function () {}, + "showLoadingOverlay": function () {}, + "showNoRowsOverlay": function () {}, + "showOrHideOverlay": function () {}, + "sizeColumnsToFit": function () {}, + "suppressScrollOnFloatingRow": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "synchroniseVerticalScrollPositions": function () {}, + "updateScrollVisibleService": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GridRow.prototype = { + "before": function () {}, + "equals": function () {}, + "getGridCell": function () {}, + "isFloatingBottom": function () {}, + "isFloatingTop": function () {}, + "isNotFloating": function () {}, + "toString": function () {} +}; +agGrid.GridSerializer.prototype = { + "doAddHeaderHeader": function () {}, + "recursivelyAddHeaderGroups": function () {}, + "serialize": function () {} +}; +agGrid.GroupCellRenderer.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCheckboxIfNeeded": function () {}, + "addChildCount": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addExpandAndContract": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addValueElement": function () {}, + "appendChild": function () {}, + "assignBlankValueToGroupFooterCell": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createFooterCell": function () {}, + "createGroupCell": function () {}, + "createLeafCell": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isEmbeddedRowMismatch": function () {}, + "isExpandable": function () {}, + "isUserWantsSelected": function () {}, + "isVisible": function () {}, + "onAllChildrenCountChanged": function () {}, + "onCellDblClicked": function () {}, + "onExpandClicked": function () {}, + "onExpandOrContract": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setIndent": function () {}, + "setPaddingDeprecatedWay": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDragOpenParents": function () {}, + "setupIndent": function () {}, + "showExpandAndContractIcons": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateChildCount": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.GroupInstanceIdCreator.prototype = { + "getInstanceIdForKey": function () {} +}; +agGrid.GroupStage.prototype = { + "addToParent": function () {}, + "createGroup": function () {}, + "createGroupingDetails": function () {}, + "execute": function () {}, + "findParentForNode": function () {}, + "getChildrenMappedKey": function () {}, + "getExistingPathForNode": function () {}, + "getGroupInfo": function () {}, + "getGroupInfoFromCallback": function () {}, + "getGroupInfoFromGroupColumns": function () {}, + "getOrCreateNextNode": function () {}, + "handleTransaction": function () {}, + "insertNodes": function () {}, + "insertOneNode": function () {}, + "isExpanded": function () {}, + "moveNode": function () {}, + "moveNodesInWrongPath": function () {}, + "postConstruct": function () {}, + "recursiveSortChildren": function () {}, + "removeFromParent": function () {}, + "removeNodes": function () {}, + "removeOneNode": function () {}, + "shotgunResetEverything": function () {}, + "sortGroupsWithComparator": function () {}, + "swapGroupWithUserNode": function () {} +}; +agGrid.HeaderContainer.prototype = { + "createHeaderRowComps": function () {}, + "destroy": function () {}, + "forEachHeaderElement": function () {}, + "init": function () {}, + "onColumnResized": function () {}, + "onColumnRowGroupChanged": function () {}, + "onColumnValueChanged": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onScrollVisibilityChanged": function () {}, + "refresh": function () {}, + "registerGridComp": function () {}, + "removeAndCreateAllRowComps": function () {}, + "removeHeaderRowComps": function () {}, + "setWidthOfPinnedContainer": function () {}, + "setupDragAndDrop": function () {} +}; +agGrid.HeaderRootComp.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addPreventHeaderScroll": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachHeaderElement": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onDomLayoutChanged": function () {}, + "onPivotModeChanged": function () {}, + "postConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshHeader": function () {}, + "registerGridComp": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setHeight": function () {}, + "setHorizontalScroll": function () {}, + "setLeftVisible": function () {}, + "setRightVisible": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.HeaderRowComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createFloatingFilterParams": function () {}, + "createFloatingFilterWrapper": function () {}, + "createHeaderComp": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachHeaderElement": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getItemsAtDept": function () {}, + "getRefElement": function () {}, + "getWidthForRow": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onColumnResized": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onRowHeightChanged": function () {}, + "onVirtualColumnsChanged": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAndDestroyAllChildComponents": function () {}, + "removeAndDestroyChildComponents": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setWidth": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.HorizontalResizeService.prototype = { + "addResizeBar": function () {}, + "onDragStart": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "resetIcons": function () {}, + "setResizeIcons": function () {} +}; +agGrid.InfiniteRowModel.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListeners": function () {}, + "checkForDeprecated": function () {}, + "constructor": function () {}, + "createModelUpdatedEvent": function () {}, + "destroy": function () {}, + "destroyCache": function () {}, + "destroyDatasource": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "getBlockState": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "getVirtualRowCount": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isMaxRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onCacheUpdated": function () {}, + "onColumnEverything": function () {}, + "onFilterChanged": function () {}, + "onSortChanged": function () {}, + "purgeCache": function () {}, + "refreshCache": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "resetCache": function () {}, + "setDatasource": function () {}, + "setVirtualRowCount": function () {}, + "updateRowData": function () {} +}; +agGrid.LargeTextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.LicenseManager.prototype = { + "getLicenseDetails": function () {}, + "validateLicense": function () {} +}; +agGrid.Logger.prototype = { + "isLogging": function () {}, + "log": function () {} +}; +agGrid.LoggerFactory.prototype = { + "create": function () {}, + "isLogging": function () {}, + "setBeans": function () {} +}; +agGrid.MD5.prototype = { + "add32": function () {}, + "add32Compat": function () {}, + "add32Std": function () {}, + "cmn": function () {}, + "ff": function () {}, + "gg": function () {}, + "hex": function () {}, + "hh": function () {}, + "ii": function () {}, + "init": function () {}, + "md5": function () {}, + "md51": function () {}, + "md5blk": function () {}, + "md5cycle": function () {}, + "rhex": function () {} +}; +agGrid.MenuItemComponent.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onOptionSelected": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.MenuList.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addHoverForChildPopup": function () {}, + "addItem": function () {}, + "addMenuItems": function () {}, + "addOrRemoveCssClass": function () {}, + "addSeparator": function () {}, + "appendChild": function () {}, + "clearActiveItem": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "mouseEnterItem": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeActiveItem": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeChildPopup": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "showChildMenu": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.MouseEventService.prototype = { + "getGridCellForEvent": function () {}, + "getRenderedCellForEvent": function () {}, + "init": function () {}, + "isEventFromThisGrid": function () {}, + "stampDomElementWithGridInstance": function () {} +}; +agGrid.MoveColumnController.prototype = { + "attemptMoveColumns": function () {}, + "calculateOldIndex": function () {}, + "calculateValidMoves": function () {}, + "checkCenterForScrolling": function () {}, + "ensureIntervalCleared": function () {}, + "ensureIntervalStarted": function () {}, + "getIconName": function () {}, + "init": function () {}, + "isColumnHidden": function () {}, + "moveInterval": function () {}, + "normaliseDirection": function () {}, + "normaliseX": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "registerGridComp": function () {}, + "setColumnsPinned": function () {}, + "setColumnsVisible": function () {} +}; +agGrid.NumberFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addFilterChangedEventListeners": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "asNumber": function () {}, + "bodyTemplate": function () {}, + "comparator": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doIndividualFilterPasses": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilter": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "nullComparator": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "onTextFieldsChanged": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setFilter": function () {}, + "setFilterTo": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "stringToFloat": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "translateNull": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.NumberSequence.prototype = { + "next": function () {}, + "peek": function () {}, + "skip": function () {} +}; +agGrid.OriginalColumnGroup.prototype = { + "addEventListener": function () {}, + "addLeafColumns": function () {}, + "getChildren": function () {}, + "getColGroupDef": function () {}, + "getColumnGroupShow": function () {}, + "getGroupId": function () {}, + "getId": function () {}, + "getLeafColumns": function () {}, + "getLevel": function () {}, + "isExpandable": function () {}, + "isExpanded": function () {}, + "isPadding": function () {}, + "isVisible": function () {}, + "onColumnVisibilityChanged": function () {}, + "removeEventListener": function () {}, + "setChildren": function () {}, + "setExpandable": function () {}, + "setExpanded": function () {}, + "setupExpandable": function () {} +}; +agGrid.PinnedRowModel.prototype = { + "createNodesFromData": function () {}, + "forEachPinnedBottomRow": function () {}, + "forEachPinnedTopRow": function () {}, + "getPinnedBottomRow": function () {}, + "getPinnedBottomRowCount": function () {}, + "getPinnedBottomRowData": function () {}, + "getPinnedBottomTotalHeight": function () {}, + "getPinnedTopRow": function () {}, + "getPinnedTopRowCount": function () {}, + "getPinnedTopRowData": function () {}, + "getPinnedTopTotalHeight": function () {}, + "getRowAtPixel": function () {}, + "getTotalHeight": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isRowsToRender": function () {}, + "setPinnedBottomRowData": function () {}, + "setPinnedTopRowData": function () {} +}; +agGrid.PivotColDefService.prototype = { + "addPivotTotalsToGroups": function () {}, + "addRowGroupTotals": function () {}, + "createColDef": function () {}, + "createPivotColumnDefs": function () {}, + "createRowGroupTotal": function () {}, + "extractColIdsForValueColumn": function () {}, + "headerNameComparator": function () {}, + "recursivelyAddGroup": function () {}, + "recursivelyAddPivotTotal": function () {}, + "sameAggFuncs": function () {} +}; +agGrid.PivotCompFactory.prototype = { + "create": function () {} +}; +agGrid.PivotDropZonePanel.prototype = { + "addAnnotatedEventListeners": function () {}, + "addArrow": function () {}, + "addColumns": function () {}, + "addColumnsToGui": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEmptyMessageToGui": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addIconAndTitleToGui": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkDragStartedBySelf": function () {}, + "checkInsertIndex": function () {}, + "checkVisibility": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createColumnComponent": function () {}, + "destroy": function () {}, + "destroyGui": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getExistingColumns": function () {}, + "getGui": function () {}, + "getIconName": function () {}, + "getNewHorizontalInsertIndex": function () {}, + "getNewVerticalInsertIndex": function () {}, + "getNonGhostColumns": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isColumnDroppable": function () {}, + "isExistingColumnsEmpty": function () {}, + "isHorizontal": function () {}, + "isInterestedIn": function () {}, + "isPotentialDndColumns": function () {}, + "isVisible": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "passBeansUp": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "rearrangeColumns": function () {}, + "refresh": function () {}, + "refreshGui": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeColumns": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setBeans": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDropTarget": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateColumns": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PivotModePanel.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createTemplate": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "onBtPivotMode": function () {}, + "onPivotModeChanged": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PivotStage.prototype = { + "bucketChildren": function () {}, + "bucketRowNode": function () {}, + "bucketUpRowNodes": function () {}, + "execute": function () {}, + "executePivotOff": function () {}, + "executePivotOn": function () {}, + "getPivotColumnDefs": function () {}, + "setUniqueValues": function () {} +}; +agGrid.PopupEditorWrapper.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "focusOut": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCancelAfterEnd": function () {}, + "isCancelBeforeStart": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "onKeyDown": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PopupSelectCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.PopupService.prototype = { + "addAsModalPopup": function () {}, + "callPostProcessPopup": function () {}, + "getPopupParent": function () {}, + "isEventFromCurrentPopup": function () {}, + "isEventSameChainAsOriginalEvent": function () {}, + "keepXWithinBounds": function () {}, + "keepYWithinBounds": function () {}, + "positionPopup": function () {}, + "positionPopupForMenu": function () {}, + "positionPopupOverComponent": function () {}, + "positionPopupUnderComponent": function () {}, + "positionPopupUnderMouseEvent": function () {} +}; +agGrid.PopupTextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getStartValue": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.Promise.prototype = { + "firstOneOnly": function () {}, + "map": function () {}, + "onDone": function () {}, + "onReject": function () {}, + "resolveNow": function () {}, + "then": function () {} +}; +agGrid.RangeController.prototype = { + "addRange": function () {}, + "clearSelection": function () {}, + "createNewActiveRange": function () {}, + "dispatchChangedEvent": function () {}, + "extendRangeInDirection": function () {}, + "extendRangeToCell": function () {}, + "getCellRangeCount": function () {}, + "getCellRanges": function () {}, + "init": function () {}, + "isCellInAnyRange": function () {}, + "isCellInSpecificRange": function () {}, + "isEmpty": function () {}, + "isMoreThanOneCell": function () {}, + "isRowInRange": function () {}, + "onBodyScroll": function () {}, + "onDragStart": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "registerGridComp": function () {}, + "selectionChanged": function () {}, + "setRange": function () {}, + "setRangeToCell": function () {}, + "updateSelectedColumns": function () {} +}; +agGrid.RichSelectCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createRowComponent": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isPopup": function () {}, + "isVisible": function () {}, + "onClick": function () {}, + "onEnterKeyDown": function () {}, + "onKeyDown": function () {}, + "onMouseMove": function () {}, + "onNavigationKeyPressed": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "renderSelectedValue": function () {}, + "setGui": function () {}, + "setSelectedValue": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.RichSelectRow.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "populateWithRenderer": function () {}, + "populateWithoutRenderer": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setState": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.RowComp.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addDomData": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addHoverFunctionality": function () {}, + "addListeners": function () {}, + "addOrRemoveCssClass": function () {}, + "afterFlush": function () {}, + "afterRowAttached": function () {}, + "angular1Compile": function () {}, + "appendChild": function () {}, + "applyPaginationOffset": function () {}, + "callAfterRowAttachedOnCells": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createCells": function () {}, + "createChildAttributes": function () {}, + "createChildScopeOrNull": function () {}, + "createFullWidthParams": function () {}, + "createFullWidthRowContainer": function () {}, + "createFullWidthRows": function () {}, + "createNewCell": function () {}, + "createRowContainer": function () {}, + "createRowEvent": function () {}, + "createRowEventWithSource": function () {}, + "createTemplate": function () {}, + "destroy": function () {}, + "destroyContainingCells": function () {}, + "destroyFullWidthComponents": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureCellInCorrectContainer": function () {}, + "ensureDomOrder": function () {}, + "executeProcessRowPostCreateFunc": function () {}, + "forEachCellComp": function () {}, + "getAgComponentMetaData": function () {}, + "getAndClearDelayedDestroyFunctions": function () {}, + "getAndClearNextVMTurnFunctions": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getBodyRowElement": function () {}, + "getCellForCol": function () {}, + "getCompId": function () {}, + "getContainerForCell": function () {}, + "getFullWidthRowElement": function () {}, + "getGui": function () {}, + "getInitialRowClasses": function () {}, + "getInitialRowTopStyle": function () {}, + "getPinnedLeftRowElement": function () {}, + "getPinnedRightRowElement": function () {}, + "getRefElement": function () {}, + "getRenderedCellForColumn": function () {}, + "getRowBusinessKey": function () {}, + "getRowNode": function () {}, + "init": function () {}, + "insertCellsIntoContainer": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isCellEligibleToBeRemoved": function () {}, + "isCellInWrongRow": function () {}, + "isEditing": function () {}, + "isFullWidth": function () {}, + "isVisible": function () {}, + "lazyCreateCells": function () {}, + "onCellFocusChanged": function () {}, + "onColumnResized": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onExpandedChanged": function () {}, + "onGridColumnsChanged": function () {}, + "onMouseEvent": function () {}, + "onPaginationChanged": function () {}, + "onRowClick": function () {}, + "onRowDblClick": function () {}, + "onRowHeightChanged": function () {}, + "onRowIndexChanged": function () {}, + "onRowNodeCellChanged": function () {}, + "onRowNodeDataChanged": function () {}, + "onRowNodeDraggingChanged": function () {}, + "onRowSelected": function () {}, + "onTopChanged": function () {}, + "onVirtualColumnsChanged": function () {}, + "postProcessClassesFromGridOptions": function () {}, + "postProcessCss": function () {}, + "postProcessRowClassRules": function () {}, + "postProcessRowDragging": function () {}, + "postProcessStylesFromGridOptions": function () {}, + "preProcessRowClassRules": function () {}, + "preProcessStylesFromGridOptions": function () {}, + "processClassesFromGridOptions": function () {}, + "processRowClassRules": function () {}, + "processStylesFromGridOptions": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refreshCells": function () {}, + "refreshCellsInAnimationFrame": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "removeRenderedCells": function () {}, + "roundRowTopToBounds": function () {}, + "setAnimateFlags": function () {}, + "setEditingRow": function () {}, + "setGui": function () {}, + "setRowTop": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupNormalRowContainers": function () {}, + "setupRowContainers": function () {}, + "startRowEditing": function () {}, + "stopEditing": function () {}, + "stopRowEditing": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateRowIndexes": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.RowGroupCompFactory.prototype = { + "create": function () {} +}; +agGrid.RowGroupDropZonePanel.prototype = { + "addAnnotatedEventListeners": function () {}, + "addArrow": function () {}, + "addColumns": function () {}, + "addColumnsToGui": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEmptyMessageToGui": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addIconAndTitleToGui": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkDragStartedBySelf": function () {}, + "checkInsertIndex": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createColumnComponent": function () {}, + "destroy": function () {}, + "destroyGui": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getExistingColumns": function () {}, + "getGui": function () {}, + "getIconName": function () {}, + "getNewHorizontalInsertIndex": function () {}, + "getNewVerticalInsertIndex": function () {}, + "getNonGhostColumns": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isColumnDroppable": function () {}, + "isExistingColumnsEmpty": function () {}, + "isHorizontal": function () {}, + "isInterestedIn": function () {}, + "isPotentialDndColumns": function () {}, + "isVisible": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "passBeansUp": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "rearrangeColumns": function () {}, + "refreshGui": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeColumns": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setBeans": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDropTarget": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateColumns": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.RowNode.prototype = { + "addEventListener": function () {}, + "calculateSelectedFromChildren": function () {}, + "checkRowSelectable": function () {}, + "clearRowTop": function () {}, + "createDaemonNode": function () {}, + "createDataChangedEvent": function () {}, + "createGlobalRowEvent": function () {}, + "createLocalRowEvent": function () {}, + "depthFirstSearch": function () {}, + "dispatchCellChangedEvent": function () {}, + "dispatchLocalEvent": function () {}, + "doRowRangeSelection": function () {}, + "getFirstChildOfFirstChild": function () {}, + "getRowIndexString": function () {}, + "hasChildren": function () {}, + "isEmptyFillerNode": function () {}, + "isExpandable": function () {}, + "isParentOfNode": function () {}, + "isPixelInRange": function () {}, + "isRowPinned": function () {}, + "isSelected": function () {}, + "onMouseEnter": function () {}, + "onMouseLeave": function () {}, + "removeEventListener": function () {}, + "resetQuickFilterAggregateText": function () {}, + "selectChildNodes": function () {}, + "selectThisNode": function () {}, + "setAggData": function () {}, + "setAllChildrenCount": function () {}, + "setChildIndex": function () {}, + "setData": function () {}, + "setDataAndId": function () {}, + "setDataValue": function () {}, + "setDragging": function () {}, + "setExpanded": function () {}, + "setFirstChild": function () {}, + "setGroupValue": function () {}, + "setId": function () {}, + "setLastChild": function () {}, + "setRowHeight": function () {}, + "setRowIndex": function () {}, + "setRowSelectable": function () {}, + "setRowTop": function () {}, + "setSelected": function () {}, + "setSelectedInitialValue": function () {}, + "setSelectedParams": function () {}, + "setUiLevel": function () {}, + "updateData": function () {}, + "updateDataOnDetailNode": function () {} +}; +agGrid.RowNodeBlock.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "constructor": function () {}, + "createBlankRowNode": function () {}, + "createRowNodes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachNode": function () {}, + "forEachNodeCallback": function () {}, + "forEachNodeDeep": function () {}, + "forEachNodeShallow": function () {}, + "getBlockNumber": function () {}, + "getEndRow": function () {}, + "getLastAccessed": function () {}, + "getRowUsingLocalIndex": function () {}, + "getStartRow": function () {}, + "getState": function () {}, + "getVersion": function () {}, + "init": function () {}, + "isAlive": function () {}, + "isAnyNodeOpen": function () {}, + "load": function () {}, + "pageLoadFailed": function () {}, + "pageLoaded": function () {}, + "populateWithRowData": function () {}, + "removeEventListener": function () {}, + "setBlankRowNode": function () {}, + "setDirty": function () {}, + "setDirtyAndPurge": function () {}, + "setNewData": function () {}, + "setRowNode": function () {} +}; +agGrid.RowNodeBlockLoader.prototype = { + "addBlock": function () {}, + "checkBlockToLoad": function () {}, + "destroy": function () {}, + "getBlockState": function () {}, + "loadComplete": function () {}, + "performCheckBlocksToLoad": function () {}, + "printCacheStatus": function () {}, + "removeBlock": function () {}, + "setBeans": function () {} +}; +agGrid.RowNodeCache.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "checkBlockToLoad": function () {}, + "checkVirtualRowCount": function () {}, + "constructor": function () {}, + "destroy": function () {}, + "destroyBlock": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "forEachBlockId": function () {}, + "forEachBlockInOrder": function () {}, + "forEachBlockInReverseOrder": function () {}, + "forEachNodeDeep": function () {}, + "getBlock": function () {}, + "getBlockIdsSorted": function () {}, + "getRowNodesInRange": function () {}, + "getVirtualRowCount": function () {}, + "hack_setVirtualRowCount": function () {}, + "init": function () {}, + "isActive": function () {}, + "isAlive": function () {}, + "isMaxRowFound": function () {}, + "onCacheUpdated": function () {}, + "onPageLoaded": function () {}, + "postCreateBlock": function () {}, + "purgeBlocksIfNeeded": function () {}, + "purgeCache": function () {}, + "removeBlockFromCache": function () {}, + "removeEventListener": function () {}, + "setBlock": function () {}, + "setVirtualRowCount": function () {} +}; +agGrid.RowRenderer.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addRenderedRowListener": function () {}, + "agWire": function () {}, + "binRowComps": function () {}, + "calculateIndexesToDraw": function () {}, + "checkAngularCompile": function () {}, + "constructor": function () {}, + "createOrUpdateRowComp": function () {}, + "createRowComp": function () {}, + "destroy": function () {}, + "destroyRowComps": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "ensureCellVisible": function () {}, + "findNextCellToFocusOn": function () {}, + "flashCells": function () {}, + "flushContainers": function () {}, + "forEachCellComp": function () {}, + "forEachCellCompFiltered": function () {}, + "forEachRowComp": function () {}, + "getAllCellsForColumn": function () {}, + "getCellEditorInstances": function () {}, + "getCellRendererInstances": function () {}, + "getCellToRestoreFocusToAfterRefresh": function () {}, + "getComponentForCell": function () {}, + "getEditingCells": function () {}, + "getFirstVirtualRenderedRow": function () {}, + "getLastVirtualRenderedRow": function () {}, + "getLockOnRefresh": function () {}, + "getRenderedIndexesForRowNodes": function () {}, + "getRenderedNodes": function () {}, + "isAlive": function () {}, + "keepRowBecauseEditing": function () {}, + "moveEditToNextCellOrRow": function () {}, + "moveToCellAfter": function () {}, + "moveToNextCellNotEditing": function () {}, + "moveToNextEditingCell": function () {}, + "moveToNextEditingRow": function () {}, + "navigateToNextCell": function () {}, + "onDisplayedColumnsChanged": function () {}, + "onDomLayoutChanged": function () {}, + "onModelUpdated": function () {}, + "onPageLoaded": function () {}, + "onPinnedRowDataChanged": function () {}, + "onTabKeyDown": function () {}, + "redraw": function () {}, + "redrawAfterModelUpdate": function () {}, + "redrawAfterScroll": function () {}, + "redrawFullWidthEmbeddedRows": function () {}, + "redrawRows": function () {}, + "refreshCells": function () {}, + "refreshFloatingRowComps": function () {}, + "refreshFloatingRows": function () {}, + "refreshFullWidthRows": function () {}, + "registerGridComp": function () {}, + "releaseLockOnRefresh": function () {}, + "removeEventListener": function () {}, + "removeRowComps": function () {}, + "removeRowCompsNotToDraw": function () {}, + "restoreFocusedCell": function () {}, + "scrollToTopIfNewData": function () {}, + "sizeContainerToPageHeight": function () {}, + "startEditingCell": function () {}, + "stopEditing": function () {}, + "tabToNextCell": function () {}, + "workOutFirstAndLastRowsToRender": function () {} +}; +agGrid.ScrollVisibleService.prototype = { + "isBodyHorizontalScrollShowing": function () {}, + "isLeftVerticalScrollShowing": function () {}, + "isRightVerticalScrollShowing": function () {}, + "setScrollsVisible": function () {} +}; +agGrid.SelectCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.SelectableService.prototype = { + "init": function () {}, + "recurseDown": function () {}, + "updateSelectableAfterFiltering": function () {}, + "updateSelectableAfterGrouping": function () {} +}; +agGrid.SelectionController.prototype = { + "clearOtherNodes": function () {}, + "deselectAllRowNodes": function () {}, + "deselectIndex": function () {}, + "deselectNode": function () {}, + "getBestCostNodeSelection": function () {}, + "getLastSelectedNode": function () {}, + "getNodeForIdIfSelected": function () {}, + "getSelectedNodes": function () {}, + "getSelectedRows": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "onRowSelected": function () {}, + "removeGroupsFromSelection": function () {}, + "reset": function () {}, + "selectAllRowNodes": function () {}, + "selectIndex": function () {}, + "selectNode": function () {}, + "setBeans": function () {}, + "setLastSelectedNode": function () {}, + "setRowModel": function () {}, + "syncInNewRowNode": function () {}, + "syncInOldRowNode": function () {}, + "syncInRowNode": function () {}, + "updateGroupsFromChildrenSelections": function () {} +}; +agGrid.SetFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "bodyTemplate": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "createSetListItem": function () {}, + "customInit": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doOnFilterChanged": function () {}, + "doSelectAll": function () {}, + "doesFilterPass": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getGui": function () {}, + "getMiniFilter": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "getUniqueValue": function () {}, + "getUniqueValueCount": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isEverythingSelected": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isNothingSelected": function () {}, + "isValueSelected": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "onAnyFilterChanged": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onItemSelected": function () {}, + "onMiniFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "onSelectAll": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetFilterValues": function () {}, + "resetState": function () {}, + "selectEverything": function () {}, + "selectNothing": function () {}, + "selectValue": function () {}, + "serialize": function () {}, + "setFilterValues": function () {}, + "setGui": function () {}, + "setLoading": function () {}, + "setMiniFilter": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "unselectValue": function () {}, + "updateCheckboxIcon": function () {}, + "updateSelectAll": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.SetFilterListItem.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isSelected": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "render": function () {}, + "setGui": function () {}, + "setSelected": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateCheckboxIcon": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.SetFilterModel.prototype = { + "areValuesSync": function () {}, + "createAllUniqueValues": function () {}, + "createAvailableUniqueValues": function () {}, + "extractSyncValuesToUse": function () {}, + "getDisplayedValue": function () {}, + "getDisplayedValueCount": function () {}, + "getMiniFilter": function () {}, + "getModel": function () {}, + "getUniqueValue": function () {}, + "getUniqueValueCount": function () {}, + "getUniqueValues": function () {}, + "isEverythingSelected": function () {}, + "isFilterActive": function () {}, + "isNothingSelected": function () {}, + "isValueSelected": function () {}, + "keyToValue": function () {}, + "onAsyncValuesLoaded": function () {}, + "onFilterValuesReady": function () {}, + "processMiniFilter": function () {}, + "refreshAfterAnyFilterChanged": function () {}, + "refreshAfterNewRowsLoaded": function () {}, + "refreshSelection": function () {}, + "refreshValues": function () {}, + "selectEverything": function () {}, + "selectNothing": function () {}, + "selectOn": function () {}, + "selectValue": function () {}, + "setMiniFilter": function () {}, + "setModel": function () {}, + "setSyncModel": function () {}, + "setValues": function () {}, + "setValuesType": function () {}, + "sortValues": function () {}, + "unselectValue": function () {}, + "valueToKey": function () {} +}; +agGrid.SetLeftFeature.prototype = { + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "animateInLeft": function () {}, + "constructor": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getColumnOrGroup": function () {}, + "init": function () {}, + "isAlive": function () {}, + "modifyLeftForPrintLayout": function () {}, + "onLeftChanged": function () {}, + "removeEventListener": function () {}, + "setColsSpanning": function () {}, + "setLeft": function () {}, + "setLeftFirstTime": function () {} +}; +agGrid.SideBarComp.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "close": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getActiveToolPanelItem": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getPreferredWidth": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isToolPanelShowing": function () {}, + "isVisible": function () {}, + "openToolPanel": function () {}, + "openedItem": function () {}, + "postConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "registerGridComp": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "reset": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.SortController.prototype = { + "clearSortBarThisColumn": function () {}, + "compareColIds": function () {}, + "dispatchSortChangedEvents": function () {}, + "getColumnsWithSortingOrdered": function () {}, + "getNextSortDirection": function () {}, + "getSortForRowController": function () {}, + "getSortModel": function () {}, + "onSortChanged": function () {}, + "progressSort": function () {}, + "setSortForColumn": function () {}, + "setSortModel": function () {} +}; +agGrid.SortStage.prototype = { + "execute": function () {} +}; +agGrid.StandardMenuFactory.prototype = { + "hideActiveMenu": function () {}, + "isMenuEnabled": function () {}, + "showMenuAfterButtonClick": function () {}, + "showMenuAfterMouseEvent": function () {}, + "showPopup": function () {} +}; +agGrid.StatusBar.prototype = { + "__agComponentMetaData": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createAndRenderComponents": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "postConstruct": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.StatusBarService.prototype = { + "getStatusPanel": function () {}, + "registerStatusPanel": function () {} +}; +agGrid.StylingService.prototype = { + "processAllCellClasses": function () {}, + "processClassRules": function () {}, + "processStaticCellClasses": function () {} +}; +agGrid.TabbedLayout.prototype = { + "addItem": function () {}, + "getGui": function () {}, + "getMinDimensions": function () {}, + "setAfterAttachedParams": function () {}, + "showFirstItem": function () {}, + "showItem": function () {}, + "showItemWrapper": function () {} +}; +agGrid.TemplateService.prototype = { + "getTemplate": function () {}, + "handleHttpResult": function () {} +}; +agGrid.TextCellEditor.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "focusIn": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getStartValue": function () {}, + "getValue": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.TextFilter.prototype = { + "__agComponentMetaData": function () {}, + "acceptsBooleanLogic": function () {}, + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addFilterChangedListener": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "afterGuiAttached": function () {}, + "appendChild": function () {}, + "bodyTemplate": function () {}, + "checkIndividualFilter": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createConditionBody": function () {}, + "createConditionTemplate": function () {}, + "customInit": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "doOnFilterChanged": function () {}, + "doesFilterPass": function () {}, + "filterValues": function () {}, + "floatingFilter": function () {}, + "generateFilterHeader": function () {}, + "generateTemplate": function () {}, + "getAgComponentMetaData": function () {}, + "getApplicableFilterTypes": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getDebounceMs": function () {}, + "getDefaultType": function () {}, + "getFilter": function () {}, + "getGui": function () {}, + "getModel": function () {}, + "getNullableModel": function () {}, + "getRefElement": function () {}, + "individualFilterPasses": function () {}, + "init": function () {}, + "initialiseFilterBodyUi": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isFilterActive": function () {}, + "isFilterConditionActive": function () {}, + "isVisible": function () {}, + "modelFromFloatingFilter": function () {}, + "onClearButton": function () {}, + "onFilterChanged": function () {}, + "onFilterTextFieldChanged": function () {}, + "onFilterTypeChanged": function () {}, + "onFloatingFilterChanged": function () {}, + "onNewRowsLoaded": function () {}, + "parse": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "redrawCondition": function () {}, + "refreshFilterBodyUi": function () {}, + "refreshOperatorUi": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "resetState": function () {}, + "serialize": function () {}, + "setFilter": function () {}, + "setFilterType": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setType": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "translate": function () {}, + "wireQuerySelectors": function () {}, + "wrapCondition": function () {} +}; +agGrid.TouchListener.prototype = { + "addEventListener": function () {}, + "checkForDoubleTap": function () {}, + "destroy": function () {}, + "getActiveTouch": function () {}, + "onTouchEnd": function () {}, + "onTouchMove": function () {}, + "onTouchStart": function () {}, + "removeEventListener": function () {} +}; +agGrid.ValueFormatterService.prototype = { + "formatValue": function () {} +}; +agGrid.ValueService.prototype = { + "executeValueGetter": function () {}, + "getKeyForNode": function () {}, + "getValue": function () {}, + "getValueCallback": function () {}, + "init": function () {}, + "setValue": function () {}, + "setValueUsingField": function () {} +}; +agGrid.ValuesDropZonePanel.prototype = { + "addAnnotatedEventListeners": function () {}, + "addArrow": function () {}, + "addColumns": function () {}, + "addColumnsToGui": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEmptyMessageToGui": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addIconAndTitleToGui": function () {}, + "addOrRemoveCssClass": function () {}, + "appendChild": function () {}, + "checkDragStartedBySelf": function () {}, + "checkInsertIndex": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "createColumnComponent": function () {}, + "destroy": function () {}, + "destroyGui": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getExistingColumns": function () {}, + "getGui": function () {}, + "getIconName": function () {}, + "getNewHorizontalInsertIndex": function () {}, + "getNewVerticalInsertIndex": function () {}, + "getNonGhostColumns": function () {}, + "getRefElement": function () {}, + "init": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isColumnDroppable": function () {}, + "isExistingColumnsEmpty": function () {}, + "isHorizontal": function () {}, + "isInterestedIn": function () {}, + "isPotentialDndColumns": function () {}, + "isVisible": function () {}, + "onDragEnter": function () {}, + "onDragLeave": function () {}, + "onDragStop": function () {}, + "onDragging": function () {}, + "passBeansUp": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "rearrangeColumns": function () {}, + "refreshGui": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeColumns": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "setBeans": function () {}, + "setGui": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "setupDropTarget": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "updateColumns": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.VerticalStack.prototype = { + "addPanel": function () {}, + "doLayout": function () {}, + "getGui": function () {} +}; +agGrid.ViewportRowModel.prototype = { + "calculateFirstRow": function () {}, + "calculateLastRow": function () {}, + "createBlankRowNode": function () {}, + "destroyDatasource": function () {}, + "forEachNode": function () {}, + "getCurrentPageHeight": function () {}, + "getNodesInRangeForSelection": function () {}, + "getPageFirstRow": function () {}, + "getPageLastRow": function () {}, + "getRow": function () {}, + "getRowBounds": function () {}, + "getRowCount": function () {}, + "getRowIndexAtPixel": function () {}, + "getRowNode": function () {}, + "getType": function () {}, + "init": function () {}, + "isEmpty": function () {}, + "isLastRowFound": function () {}, + "isRowPresent": function () {}, + "isRowsToRender": function () {}, + "onViewportChanged": function () {}, + "purgeRowsNotInViewport": function () {}, + "setRowCount": function () {}, + "setRowData": function () {}, + "setViewportDatasource": function () {} +}; +agGrid.VirtualList.prototype = { + "addAnnotatedEventListeners": function () {}, + "addCssClass": function () {}, + "addDestroyFunc": function () {}, + "addDestroyableEventListener": function () {}, + "addEventListener": function () {}, + "addEventListenerCommon": function () {}, + "addEventListenersToComponent": function () {}, + "addEventListenersToElement": function () {}, + "addFeature": function () {}, + "addGuiEventListener": function () {}, + "addOrRemoveCssClass": function () {}, + "addScrollListener": function () {}, + "appendChild": function () {}, + "clearVirtualRows": function () {}, + "constructor": function () {}, + "copyAttributesFromNode": function () {}, + "createChildAttributes": function () {}, + "destroy": function () {}, + "dispatchEvent": function () {}, + "dispatchEventAsync": function () {}, + "drawVirtualRows": function () {}, + "ensureIndexVisible": function () {}, + "ensureRowsRendered": function () {}, + "getAgComponentMetaData": function () {}, + "getAttrLists": function () {}, + "getAttribute": function () {}, + "getCompId": function () {}, + "getGui": function () {}, + "getRefElement": function () {}, + "getRowHeight": function () {}, + "getScrollTop": function () {}, + "init": function () {}, + "insertRow": function () {}, + "instantiate": function () {}, + "instantiateRecurse": function () {}, + "isAlive": function () {}, + "isVisible": function () {}, + "queryForHtmlElement": function () {}, + "queryForHtmlInputElement": function () {}, + "refresh": function () {}, + "removeAnnotatedEventListeners": function () {}, + "removeCssClass": function () {}, + "removeEventListener": function () {}, + "removeVirtualRows": function () {}, + "setComponentCreator": function () {}, + "setGui": function () {}, + "setModel": function () {}, + "setRowHeight": function () {}, + "setTemplate": function () {}, + "setTemplateFromElement": function () {}, + "setVisible": function () {}, + "swapComponentForNode": function () {}, + "swapInComponentForQuerySelectors": function () {}, + "wireQuerySelectors": function () {} +}; +agGrid.XmlFactory.prototype = { + "createXml": function () {}, + "returnAttributeIfPopulated": function () {} +}; +/********************************************************************** + * End Generated Extern for agGrid +/**********************************************************************/ diff --git a/ag-grid-react/README.md b/ag-grid-react/README.md index cbb4b1c19..c0ca83f2a 100644 --- a/ag-grid-react/README.md +++ b/ag-grid-react/README.md @@ -1,11 +1,11 @@ # cljsjs/ag-grid-react - The JavaScript Datagrid for Enterprise -React Toolbox depends on React with Addons, so, to be able to use it, you not only have to depend in +React Toolbox depends on React with Addons, so, to be able to use it, you not only have to depend on cljsjs/ag-grid-react: [](dependency) ```clojure -[cljsjs/ag-grid-react "17.0.0-0"] ;; latest release +[cljsjs/ag-grid-react "19.0.0-0"] ;; latest release ``` [](/dependency) diff --git a/ag-grid-react/build.boot b/ag-grid-react/build.boot index 467696b76..324e2e2d0 100644 --- a/ag-grid-react/build.boot +++ b/ag-grid-react/build.boot @@ -1,9 +1,9 @@ (set-env! - :resource-paths #{"resources"} - :dependencies '[[cljsjs/boot-cljsjs "0.10.3" :scope "test"] - [cljsjs/react "16.0.0-0" :scope "provided"] - [cljsjs/react-dom "16.0.0-0" :scope "provided"] - [cljsjs/ag-grid "15.0.0-0"]]) + :resource-paths #{"resources"} + :dependencies '[[cljsjs/boot-cljsjs "0.10.3" :scope "test"] + [cljsjs/react "16.0.0-0" :scope "provided"] + [cljsjs/react-dom "16.0.0-0" :scope "provided"] + [cljsjs/ag-grid-community "19.0.0-0"]]) (require '[cljsjs.boot-cljsjs.packaging :refer :all] '[boot.core :as boot] @@ -11,61 +11,61 @@ '[boot.util :refer [dosh]] '[clojure.java.io :as io]) -(def +lib-version+ "17.0.0") -(def +lib-checksum+ "7BEBAFD4BBCE29CE1B9EB02A88C2E62E") +(def +lib-version+ "19.0.0") +(def +lib-checksum+ "D904467925A64A9E000A57F471C59CDF") (def +version+ (str +lib-version+ "-0")) -(def +lib-folder+ (format "ag-grid-react-%s" +lib-version+)) +(def +lib-folder+ (format "ag-grid-%s/packages/ag-grid-react" +lib-version+)) (defn- dosh-cmd [& args] - (apply dosh (if (re-find #"^Windows" (.get (System/getProperties) "os.name")) - (into ["cmd.exe" "/c"] args) - args))) + (apply dosh (if (re-find #"^Windows" (.get (System/getProperties) "os.name")) + (into ["cmd.exe" "/c"] args) + args))) (defn- path [x] (.toString (java.nio.file.Paths/get x (into-array String nil)))) (task-options! - pom {:project 'cljsjs/ag-grid-react - :version +version+ - :description "The JavaScript Datagrid for Enterprise" - :url "http://ag-grid.com/" - :scm {:url "https://github.com/cljsjs/packages"} - :license {"MIT" "http://opensource.org/licenses/MIT"}}) + pom {:project 'cljsjs/ag-grid-react + :version +version+ + :description "The JavaScript Datagrid for Enterprise" + :url "http://ag-grid.com/" + :scm {:url "https://github.com/cljsjs/packages"} + :license {"MIT" "http://opensource.org/licenses/MIT"}}) (deftask download-lib [] - (download :url (format "https://github.com/ceolter/ag-grid-react/archive/%s.zip" +lib-version+) - :checksum +lib-checksum+ - :unzip true)) + (download :url (format "https://github.com/ceolter/ag-grid/archive/%s.zip" +lib-version+) + :checksum +lib-checksum+ + :unzip true)) (deftask build [] - (let [tmp (boot/tmp-dir!)] - (with-pre-wrap fileset - (doseq [f (boot/input-files fileset) - :let [target (io/file tmp (tmpdir/path f))]] - (io/make-parents target) - (io/copy (tmpdir/file f) target)) - (io/copy - (io/file tmp "webpack.config.js") - (io/file tmp +lib-folder+ "webpack-cljsjs.config.js")) - (binding [boot.util/*sh-dir* (str (io/file tmp +lib-folder+))] - (dosh-cmd "npm" "install") - (dosh-cmd "npm" "install" "ag-grid" "gulp" "webpack@^1.9.11") - (dosh-cmd (path (str (io/file tmp +lib-folder+) "/node_modules/.bin/gulp"))) - (dosh-cmd (path (str (io/file tmp +lib-folder+) "/node_modules/.bin/webpack")) "--config" "webpack-cljsjs.config.js")) - (-> fileset (boot/add-resource tmp) boot/commit!)))) + (let [tmp (boot/tmp-dir!)] + (with-pre-wrap fileset + (doseq [f (boot/input-files fileset) + :let [target (io/file tmp (tmpdir/path f))]] + (io/make-parents target) + (io/copy (tmpdir/file f) target)) + (io/copy + (io/file tmp "webpack.config.js") + (io/file tmp +lib-folder+ "webpack-cljsjs.config.js")) + (binding [boot.util/*sh-dir* (str (io/file tmp +lib-folder+))] + (dosh-cmd "npm" "install") + (dosh-cmd "npm" "install" "ag-grid-community@19.0.0" "gulp" "webpack@1.15.0") + (dosh-cmd (path (str (io/file tmp +lib-folder+) "/node_modules/.bin/gulp"))) + (dosh-cmd (path (str (io/file tmp +lib-folder+) "/node_modules/.bin/webpack")) "--config" "webpack-cljsjs.config.js")) + (-> fileset (boot/add-resource tmp) boot/commit!)))) (deftask package [] - (comp - (download-lib) - (build) - (sift :move {#".*ag-grid-react.inc.js" "cljsjs/ag-grid-react/development/ag-grid-react.inc.js"}) - (sift :include #{#"^cljsjs"}) - (minify :in "cljsjs/ag-grid-react/development/ag-grid-react.inc.js" - :out "cljsjs/ag-grid-react/production/ag-grid-react.min.inc.js" - :lang :ecmascript5) - (deps-cljs :name "cljsjs.ag-grid-react" - :requires ["cljsjs.react" - "cljsjs.react.dom" - "cljsjs.ag-grid"]) - (pom) - (jar))) + (comp + (download-lib) + (build) + (sift :move {#".*ag-grid-react.inc.js" "cljsjs/ag-grid-react/development/ag-grid-react.inc.js"}) + (sift :include #{#"^cljsjs"}) + (minify :in "cljsjs/ag-grid-react/development/ag-grid-react.inc.js" + :out "cljsjs/ag-grid-react/production/ag-grid-react.min.inc.js" + :lang :ecmascript5) + (deps-cljs :name "cljsjs.ag-grid-react" + :requires ["cljsjs.react" + "cljsjs.react.dom" + "cljsjs.ag-grid-community"]) + (pom) + (jar))) diff --git a/ag-grid-react/resources/webpack.config.js b/ag-grid-react/resources/webpack.config.js index 7dcc3d54f..c979021ad 100644 --- a/ag-grid-react/resources/webpack.config.js +++ b/ag-grid-react/resources/webpack.config.js @@ -9,7 +9,7 @@ module.exports = { externals: { "react": "React", "react-dom": "ReactDOM", - "ag-grid": "agGrid" + "ag-grid-community": "agGrid" }, output: {