ag-grid-community 32.3.2 → 33.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -50
- package/dist/ag-grid-community.js +55097 -49364
- package/dist/ag-grid-community.min.js +1 -1
- package/dist/ag-grid-community.min.noStyle.js +1 -1
- package/dist/ag-grid-community.noStyle.js +54255 -48477
- package/dist/package/main.cjs.js +38771 -41341
- package/dist/package/main.cjs.min.js +162 -147
- package/dist/package/main.esm.min.mjs +170 -155
- package/dist/package/main.esm.mjs +39092 -41662
- package/dist/package/package.json +18 -13
- package/dist/types/package.json +118 -0
- package/dist/types/src/alignedGrids/alignedGridsModule.d.ts +6 -0
- package/dist/types/src/alignedGrids/alignedGridsService.d.ts +22 -0
- package/dist/types/src/allCommunityModule.d.ts +5 -0
- package/dist/types/src/api/apiFunctionService.d.ts +16 -0
- package/dist/types/src/api/apiModule.d.ts +10 -0
- package/dist/types/src/api/coreApi.d.ts +9 -0
- package/dist/types/src/api/gridApi.d.ts +908 -0
- package/dist/types/src/api/gridApiFunctions.d.ts +3 -0
- package/dist/types/src/api/rowApi.d.ts +14 -0
- package/dist/types/src/api/rowModelApiUtils.d.ts +7 -0
- package/dist/types/src/api/sharedApiModule.d.ts +10 -0
- package/dist/types/src/baseUrl.d.ts +1 -0
- package/dist/types/src/clientSideRowModel/abstractClientSideNodeManager.d.ts +62 -0
- package/dist/types/src/clientSideRowModel/changedRowNodes.d.ts +13 -0
- package/dist/types/src/clientSideRowModel/clientSideNodeManager.d.ts +5 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModel.d.ts +141 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelApi.d.ts +16 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelModule.d.ts +10 -0
- package/dist/types/src/clientSideRowModel/filterStage.d.ts +19 -0
- package/dist/types/src/clientSideRowModel/sortStage.d.ts +14 -0
- package/dist/types/src/columnAutosize/columnAutosizeApi.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeModule.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeService.d.ts +33 -0
- package/dist/types/src/columnMove/column-moving.css-GENERATED.d.ts +1 -0
- package/dist/types/src/columnMove/columnAnimationService.d.ts +21 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropPivotTarget.d.ts +22 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropTarget.d.ts +32 -0
- package/dist/types/src/columnMove/columnDrag/moveColumnFeature.d.ts +48 -0
- package/dist/types/src/columnMove/columnMoveApi.d.ts +5 -0
- package/dist/types/src/columnMove/columnMoveModule.d.ts +6 -0
- package/dist/types/src/columnMove/columnMoveService.d.ts +21 -0
- package/dist/types/src/columnMove/columnMoveUtils.d.ts +5 -0
- package/dist/types/src/columnMove/internalColumnMoveUtils.d.ts +40 -0
- package/dist/types/src/columnResize/columnResizeApi.d.ts +8 -0
- package/dist/types/src/columnResize/columnResizeModule.d.ts +6 -0
- package/dist/types/src/columnResize/columnResizeService.d.ts +33 -0
- package/dist/types/src/columnResize/groupResizeFeature.d.ts +40 -0
- package/dist/types/src/columnResize/resizeFeature.d.ts +21 -0
- package/dist/types/src/columns/baseColsService.d.ts +43 -0
- package/dist/types/src/columns/columnApi.d.ts +26 -0
- package/dist/types/src/columns/columnDefFactory.d.ts +16 -0
- package/dist/types/src/columns/columnEventUtils.d.ts +7 -0
- package/dist/types/src/columns/columnFactoryUtils.d.ts +16 -0
- package/dist/types/src/columns/columnFlexService.d.ts +18 -0
- package/dist/types/src/columns/columnGroups/columnGroupApi.d.ts +20 -0
- package/dist/types/src/columns/columnGroups/columnGroupModule.d.ts +7 -0
- package/dist/types/src/columns/columnGroups/columnGroupService.d.ts +51 -0
- package/dist/types/src/columns/columnHover/columnHoverApi.d.ts +3 -0
- package/dist/types/src/columns/columnHover/columnHoverModule.d.ts +7 -0
- package/dist/types/src/columns/columnHover/columnHoverService.d.ts +18 -0
- package/dist/types/src/columns/columnHover/hoverFeature.d.ts +8 -0
- package/dist/types/src/columns/columnModel.d.ts +57 -0
- package/dist/types/src/columns/columnModule.d.ts +14 -0
- package/dist/types/src/columns/columnNameService.d.ts +19 -0
- package/dist/types/src/columns/columnStateUtils.d.ts +59 -0
- package/dist/types/src/columns/columnUtils.d.ts +22 -0
- package/dist/types/src/columns/columnViewportService.d.ts +37 -0
- package/dist/types/src/columns/dataTypeService.d.ts +47 -0
- package/dist/types/src/columns/selectionColService.d.ts +21 -0
- package/dist/types/src/columns/visibleColsService.d.ts +52 -0
- package/dist/types/src/components/framework/agComponentUtils.d.ts +7 -0
- package/dist/types/src/components/framework/cellRendererFunctionModule.d.ts +5 -0
- package/dist/types/src/components/framework/frameworkComponentWrapper.d.ts +26 -0
- package/dist/types/src/components/framework/registry.d.ts +25 -0
- package/dist/types/src/components/framework/userCompUtils.d.ts +52 -0
- package/dist/types/src/components/framework/userComponentFactory.d.ts +30 -0
- package/dist/types/src/constants/direction.d.ts +2 -0
- package/dist/types/src/constants/keyCode.d.ts +24 -0
- package/dist/types/src/context/beanStub.d.ts +83 -0
- package/dist/types/src/context/context.d.ts +251 -0
- package/dist/types/src/csvExport/csvCreator.d.ts +21 -0
- package/dist/types/src/csvExport/csvExportApi.d.ts +4 -0
- package/dist/types/src/csvExport/csvExportModule.d.ts +6 -0
- package/dist/types/src/csvExport/csvSerializingSession.d.ts +26 -0
- package/dist/types/src/ctrlsService.d.ts +55 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.d.ts +25 -0
- package/dist/types/src/dragAndDrop/dragAndDropService.d.ts +153 -0
- package/dist/types/src/dragAndDrop/dragApi.d.ts +5 -0
- package/dist/types/src/dragAndDrop/dragModule.d.ts +24 -0
- package/dist/types/src/dragAndDrop/dragService.d.ts +53 -0
- package/dist/types/src/dragAndDrop/horizontalResizeService.d.ts +20 -0
- package/dist/types/src/dragAndDrop/rowDragComp.d.ts +24 -0
- package/dist/types/src/dragAndDrop/rowDragFeature.d.ts +55 -0
- package/dist/types/src/dragAndDrop/rowDragService.d.ts +14 -0
- package/dist/types/src/edit/cell-editing.css-GENERATED.d.ts +1 -0
- package/dist/types/src/edit/cellEditors/dateStringCellEditor.d.ts +6 -0
- package/dist/types/src/edit/cellEditors/selectCellEditor.d.ts +20 -0
- package/dist/types/src/edit/editApi.d.ts +12 -0
- package/dist/types/src/edit/editModule.d.ts +38 -0
- package/dist/types/src/edit/editService.d.ts +32 -0
- package/dist/types/src/edit/rowEditService.d.ts +9 -0
- package/dist/types/src/entities/agColumn.d.ts +149 -0
- package/dist/types/src/entities/agColumnGroup.d.ts +57 -0
- package/dist/types/src/entities/agProvidedColumnGroup.d.ts +42 -0
- package/dist/types/src/entities/colDef.d.ts +864 -0
- package/dist/types/src/entities/gridOptions.d.ts +2260 -0
- package/dist/types/src/entities/positionUtils.d.ts +13 -0
- package/dist/types/src/entities/rowNode.d.ts +305 -0
- package/dist/types/src/entities/rowNodeUtils.d.ts +5 -0
- package/dist/types/src/environment.d.ts +32 -0
- package/dist/types/src/eventService.d.ts +18 -0
- package/dist/types/src/eventTypes.d.ts +8 -0
- package/dist/types/src/events.d.ts +890 -0
- package/dist/types/src/export/baseCreator.d.ts +13 -0
- package/dist/types/src/export/baseGridSerializingSession.d.ts +37 -0
- package/dist/types/src/export/downloader.d.ts +1 -0
- package/dist/types/src/export/exportModule.d.ts +5 -0
- package/dist/types/src/export/gridSerializer.d.ts +27 -0
- package/dist/types/src/export/iGridSerializer.d.ts +37 -0
- package/dist/types/src/filter/column-filters.css-GENERATED.d.ts +1 -0
- package/dist/types/src/filter/columnFilterApi.d.ts +11 -0
- package/dist/types/src/filter/columnFilterService.d.ts +81 -0
- package/dist/types/src/filter/filterManager.d.ts +82 -0
- package/dist/types/src/filter/filterMenuFactory.d.ts +23 -0
- package/dist/types/src/filter/filterModule.d.ts +45 -0
- package/dist/types/src/filter/filterValueService.d.ts +10 -0
- package/dist/types/src/filter/filterWrapperComp.d.ts +21 -0
- package/dist/types/src/filter/floating/floatingFilter.d.ts +76 -0
- package/dist/types/src/filter/floating/floatingFilterMapper.d.ts +3 -0
- package/dist/types/src/filter/floating/provided/floatingFilterTextInputService.d.ts +20 -0
- package/dist/types/src/filter/floating/provided/readOnlyFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/floating/provided/simpleFloatingFilter.d.ts +25 -0
- package/dist/types/src/filter/floating/provided/textInputFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/dateCompWrapper.d.ts +25 -0
- package/dist/types/src/filter/provided/date/dateFilter.d.ts +43 -0
- package/dist/types/src/filter/provided/date/dateFilterModelFormatter.d.ts +14 -0
- package/dist/types/src/filter/provided/date/dateFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/defaultDateComponent.d.ts +23 -0
- package/dist/types/src/filter/provided/number/numberFilter.d.ts +32 -0
- package/dist/types/src/filter/provided/number/numberFloatingFilter.d.ts +12 -0
- package/dist/types/src/filter/provided/optionsFactory.d.ts +13 -0
- package/dist/types/src/filter/provided/providedFilter.d.ts +84 -0
- package/dist/types/src/filter/provided/simpleFilter.d.ts +106 -0
- package/dist/types/src/filter/provided/simpleFilterModelFormatter.d.ts +16 -0
- package/dist/types/src/filter/provided/simpleFilterUtils.d.ts +7 -0
- package/dist/types/src/filter/provided/text/textFilter.d.ts +33 -0
- package/dist/types/src/filter/provided/text/textFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/quickFilterService.d.ts +28 -0
- package/dist/types/src/focusService.d.ts +72 -0
- package/dist/types/src/grid.d.ts +54 -0
- package/dist/types/src/gridBodyComp/abstractFakeScrollComp.d.ts +21 -0
- package/dist/types/src/gridBodyComp/centerWidthFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/fakeHScrollComp.d.ts +23 -0
- package/dist/types/src/gridBodyComp/fakeVScrollComp.d.ts +11 -0
- package/dist/types/src/gridBodyComp/gridBodyComp.d.ts +15 -0
- package/dist/types/src/gridBodyComp/gridBodyCtrl.d.ts +81 -0
- package/dist/types/src/gridBodyComp/gridBodyScrollFeature.d.ts +71 -0
- package/dist/types/src/gridBodyComp/mouseEventUtils.d.ts +12 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerComp.d.ts +20 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +71 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +26 -0
- package/dist/types/src/gridBodyComp/rowContainer/setHeightFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/rowContainer/setPinnedWidthFeature.d.ts +9 -0
- package/dist/types/src/gridBodyComp/scrollVisibleService.d.ts +24 -0
- package/dist/types/src/gridBodyComp/viewportSizeFeature.d.ts +22 -0
- package/dist/types/src/gridComp/gridCtrl.d.ts +43 -0
- package/dist/types/src/gridCoreModule.d.ts +6 -0
- package/dist/types/src/gridDestroyService.d.ts +7 -0
- package/dist/types/src/gridOptionsDefault.d.ts +173 -0
- package/dist/types/src/gridOptionsInitial.d.ts +88 -0
- package/dist/types/src/gridOptionsService.d.ts +108 -0
- package/dist/types/src/gridOptionsUtils.d.ts +74 -0
- package/dist/types/src/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/cells/column/headerCellComp.d.ts +15 -0
- package/dist/types/src/headerRendering/cells/column/headerCellCtrl.d.ts +78 -0
- package/dist/types/src/headerRendering/cells/column/headerComp.d.ts +131 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +42 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupComp.d.ts +50 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +41 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +12 -0
- package/dist/types/src/headerRendering/cells/headerModule.d.ts +11 -0
- package/dist/types/src/headerRendering/gridHeaderCtrl.d.ts +19 -0
- package/dist/types/src/headerRendering/headerUtils.d.ts +8 -0
- package/dist/types/src/headerRendering/row/headerRowComp.d.ts +12 -0
- package/dist/types/src/headerRendering/row/headerRowCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +44 -0
- package/dist/types/src/infiniteRowModel/infiniteBlock.d.ts +38 -0
- package/dist/types/src/infiniteRowModel/infiniteCache.d.ts +49 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModel.d.ts +42 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelApi.d.ts +4 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelModule.d.ts +6 -0
- package/dist/types/src/infiniteRowModel/rowNodeBlockLoader.d.ts +23 -0
- package/dist/types/src/interfaces/IRangeService.d.ts +81 -0
- package/dist/types/src/interfaces/IServerSideStore.d.ts +35 -0
- package/dist/types/src/interfaces/autoSize.d.ts +51 -0
- package/dist/types/src/interfaces/dateComponent.d.ts +42 -0
- package/dist/types/src/interfaces/exportParams.d.ts +153 -0
- package/dist/types/src/interfaces/gridState.d.ts +160 -0
- package/dist/types/src/interfaces/groupCellRenderer.d.ts +68 -0
- package/dist/types/src/interfaces/iAggColumnNameService.d.ts +4 -0
- package/dist/types/src/interfaces/iAutoColService.d.ts +11 -0
- package/dist/types/src/interfaces/iCallbackParams.d.ts +236 -0
- package/dist/types/src/interfaces/iCellEditor.d.ts +97 -0
- package/dist/types/src/interfaces/iCellPosition.d.ts +6 -0
- package/dist/types/src/interfaces/iCellRangeFeature.d.ts +8 -0
- package/dist/types/src/interfaces/iCellsParams.d.ts +20 -0
- package/dist/types/src/interfaces/iChartOptions.d.ts +62 -0
- package/dist/types/src/interfaces/iClientSideNodeManager.d.ts +24 -0
- package/dist/types/src/interfaces/iClientSideRowModel.d.ts +94 -0
- package/dist/types/src/interfaces/iColsService.d.ts +49 -0
- package/dist/types/src/interfaces/iColumn.d.ts +242 -0
- package/dist/types/src/interfaces/iContextMenu.d.ts +38 -0
- package/dist/types/src/interfaces/iDatasource.d.ts +27 -0
- package/dist/types/src/interfaces/iDragItem.d.ts +30 -0
- package/dist/types/src/interfaces/iExcelCreator.d.ts +584 -0
- package/dist/types/src/interfaces/iExpansionService.d.ts +14 -0
- package/dist/types/src/interfaces/iFilter.d.ts +182 -0
- package/dist/types/src/interfaces/iFooterService.d.ts +7 -0
- package/dist/types/src/interfaces/iFrameworkEventListenerService.d.ts +6 -0
- package/dist/types/src/interfaces/iFrameworkOverrides.d.ts +47 -0
- package/dist/types/src/interfaces/iGroupHideOpenParentsService.d.ts +9 -0
- package/dist/types/src/interfaces/iHeaderPosition.d.ts +7 -0
- package/dist/types/src/interfaces/iLoadingCellRenderer.d.ts +8 -0
- package/dist/types/src/interfaces/iModule.d.ts +61 -0
- package/dist/types/src/interfaces/iPivotResultColsService.d.ts +11 -0
- package/dist/types/src/interfaces/iPopup.d.ts +25 -0
- package/dist/types/src/interfaces/iRedrawRowsParams.d.ts +5 -0
- package/dist/types/src/interfaces/iRowChildrenService.d.ts +4 -0
- package/dist/types/src/interfaces/iRowDragItem.d.ts +5 -0
- package/dist/types/src/interfaces/iRowModel.d.ts +50 -0
- package/dist/types/src/interfaces/iRowNode.d.ts +270 -0
- package/dist/types/src/interfaces/iRowNodeStage.d.ts +18 -0
- package/dist/types/src/interfaces/iRowPosition.d.ts +8 -0
- package/dist/types/src/interfaces/iSelectionService.d.ts +67 -0
- package/dist/types/src/interfaces/iServerSideDatasource.d.ts +59 -0
- package/dist/types/src/interfaces/iServerSideRowModel.d.ts +55 -0
- package/dist/types/src/interfaces/iSetFilter.d.ts +203 -0
- package/dist/types/src/interfaces/iShowRowGroupColsService.d.ts +8 -0
- package/dist/types/src/interfaces/iSideBar.d.ts +62 -0
- package/dist/types/src/interfaces/iSortModelItem.d.ts +6 -0
- package/dist/types/src/interfaces/iSortOption.d.ts +5 -0
- package/dist/types/src/interfaces/iSparklineCellRendererParams.d.ts +6 -0
- package/dist/types/src/interfaces/iStickyRows.d.ts +17 -0
- package/dist/types/src/interfaces/iToolPanel.d.ts +54 -0
- package/dist/types/src/interfaces/iUserCompDetails.d.ts +17 -0
- package/dist/types/src/interfaces/masterDetail.d.ts +56 -0
- package/dist/types/src/interfaces/menuItem.d.ts +137 -0
- package/dist/types/src/interfaces/serverSideTransaction.d.ts +61 -0
- package/dist/types/src/main.d.ts +323 -0
- package/dist/types/src/misc/animationFrameModule.d.ts +6 -0
- package/dist/types/src/misc/animationFrameService.d.ts +30 -0
- package/dist/types/src/misc/apiEvents/apiEventModule.d.ts +6 -0
- package/dist/types/src/misc/apiEvents/apiEventService.d.ts +21 -0
- package/dist/types/src/misc/apiEvents/eventApi.d.ts +7 -0
- package/dist/types/src/misc/locale/localeModule.d.ts +6 -0
- package/dist/types/src/misc/locale/localeService.d.ts +7 -0
- package/dist/types/src/misc/locale/localeUtils.d.ts +3 -0
- package/dist/types/src/misc/menu/menuApi.d.ts +4 -0
- package/dist/types/src/misc/menu/menuService.d.ts +49 -0
- package/dist/types/src/misc/menu/sharedMenuModule.d.ts +6 -0
- package/dist/types/src/misc/state/stateModule.d.ts +7 -0
- package/dist/types/src/misc/state/stateService.d.ts +52 -0
- package/dist/types/src/misc/touchModule.d.ts +5 -0
- package/dist/types/src/misc/touchService.d.ts +18 -0
- package/dist/types/src/modules/moduleRegistry.d.ts +20 -0
- package/dist/types/src/navigation/cellNavigationService.d.ts +25 -0
- package/dist/types/src/navigation/headerNavigationService.d.ts +22 -0
- package/dist/types/src/navigation/navigationApi.d.ts +10 -0
- package/dist/types/src/navigation/navigationModule.d.ts +6 -0
- package/dist/types/src/navigation/navigationService.d.ts +44 -0
- package/dist/types/src/pagination/pageBoundsListener.d.ts +8 -0
- package/dist/types/src/pagination/pageBoundsService.d.ts +18 -0
- package/dist/types/src/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +24 -0
- package/dist/types/src/pagination/paginationAutoPageSizeService.d.ts +11 -0
- package/dist/types/src/pagination/paginationComp.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pagination/paginationComp.d.ts +46 -0
- package/dist/types/src/pagination/paginationModule.d.ts +7 -0
- package/dist/types/src/pagination/paginationService.d.ts +50 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.d.ts +6 -0
- package/dist/types/src/pinnedColumns/pinnedColumnService.d.ts +25 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModel.d.ts +32 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModule.d.ts +7 -0
- package/dist/types/src/propertyKeys.d.ts +33 -0
- package/dist/types/src/rendering/ariaAnnouncementService.d.ts +16 -0
- package/dist/types/src/rendering/ariaModule.d.ts +5 -0
- package/dist/types/src/rendering/autoWidthCalculator.d.ts +14 -0
- package/dist/types/src/rendering/autoWidthModule.d.ts +5 -0
- package/dist/types/src/rendering/cell/cellComp.d.ts +50 -0
- package/dist/types/src/rendering/cell/cellCtrl.d.ts +143 -0
- package/dist/types/src/rendering/cell/cellFlashService.d.ts +11 -0
- package/dist/types/src/rendering/cell/cellKeyboardListenerFeature.d.ts +24 -0
- package/dist/types/src/rendering/cell/cellMouseListenerFeature.d.ts +20 -0
- package/dist/types/src/rendering/cell/cellPositionFeature.d.ts +32 -0
- package/dist/types/src/rendering/cell/highlightChangesApi.d.ts +3 -0
- package/dist/types/src/rendering/cell/highlightChangesModule.d.ts +7 -0
- package/dist/types/src/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +14 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.d.ts +12 -0
- package/dist/types/src/rendering/cellRenderers/cellRendererModule.d.ts +6 -0
- package/dist/types/src/rendering/cellRenderers/checkboxCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/iCellRenderer.d.ts +78 -0
- package/dist/types/src/rendering/features/positionableFeature.d.ts +93 -0
- package/dist/types/src/rendering/features/setLeftFeature.d.ts +20 -0
- package/dist/types/src/rendering/overlays/overlayComponent.d.ts +14 -0
- package/dist/types/src/rendering/overlays/overlayModule.d.ts +7 -0
- package/dist/types/src/rendering/overlays/overlayService.d.ts +31 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.d.ts +26 -0
- package/dist/types/src/rendering/renderApi.d.ts +13 -0
- package/dist/types/src/rendering/renderModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightService.d.ts +17 -0
- package/dist/types/src/rendering/row/rowComp.d.ts +20 -0
- package/dist/types/src/rendering/row/rowCtrl.d.ts +167 -0
- package/dist/types/src/rendering/rowContainerHeightService.d.ts +28 -0
- package/dist/types/src/rendering/rowRenderer.d.ts +157 -0
- package/dist/types/src/selection/baseSelectionService.d.ts +46 -0
- package/dist/types/src/selection/checkboxSelectionComponent.d.ts +28 -0
- package/dist/types/src/selection/rowRangeSelectionContext.d.ts +50 -0
- package/dist/types/src/selection/rowSelectionApi.d.ts +21 -0
- package/dist/types/src/selection/rowSelectionModule.d.ts +10 -0
- package/dist/types/src/selection/selectAllFeature.d.ts +29 -0
- package/dist/types/src/selection/selectionService.d.ts +70 -0
- package/dist/types/src/sort/rowNodeSorter.d.ts +18 -0
- package/dist/types/src/sort/sortIndicatorComp.d.ts +22 -0
- package/dist/types/src/sort/sortModule.d.ts +7 -0
- package/dist/types/src/sort/sortService.d.ts +39 -0
- package/dist/types/src/styling/cellCustomStyleFeature.d.ts +16 -0
- package/dist/types/src/styling/cellStyleService.d.ts +13 -0
- package/dist/types/src/styling/layoutFeature.d.ts +20 -0
- package/dist/types/src/styling/rowStyleService.d.ts +12 -0
- package/dist/types/src/styling/stylingModule.d.ts +11 -0
- package/dist/types/src/styling/stylingUtils.d.ts +8 -0
- package/dist/types/src/syncService.d.ts +11 -0
- package/dist/types/src/theming/Part.d.ts +64 -0
- package/dist/types/src/theming/Theme.d.ts +70 -0
- package/dist/types/src/theming/core/core-css.d.ts +550 -0
- package/dist/types/src/theming/core/core.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/inject.d.ts +6 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-style-default.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-styles.d.ts +15 -0
- package/dist/types/src/theming/parts/color-scheme/color-schemes.d.ts +69 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/icon-sets.d.ts +4 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/overrides/icon-overrides.d.ts +22 -0
- package/dist/types/src/theming/parts/icon-set/quartz/icon-set-quartz.d.ts +7 -0
- package/dist/types/src/theming/parts/icon-set/shared-icon-styles.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-bordered.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-underlined.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-styles.d.ts +134 -0
- package/dist/types/src/theming/parts/tab-style/tab-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/tab-style/tab-styles.d.ts +200 -0
- package/dist/types/src/theming/parts/theme/themes.d.ts +582 -0
- package/dist/types/src/theming/theme-types.d.ts +216 -0
- package/dist/types/src/theming/theme-utils.d.ts +12 -0
- package/dist/types/src/tooltip/tooltip.css-GENERATED.d.ts +1 -0
- package/dist/types/src/tooltip/tooltipFeature.d.ts +40 -0
- package/dist/types/src/tooltip/tooltipModule.d.ts +6 -0
- package/dist/types/src/tooltip/tooltipService.d.ts +17 -0
- package/dist/types/src/tooltip/tooltipStateManager.d.ts +63 -0
- package/dist/types/src/undoRedo/undoRedoService.d.ts +27 -0
- package/dist/types/src/utils/aria.d.ts +34 -0
- package/dist/types/src/utils/array.d.ts +8 -0
- package/dist/types/src/utils/browser.d.ts +12 -0
- package/dist/types/src/utils/changedPath.d.ts +21 -0
- package/dist/types/src/utils/dom.d.ts +94 -0
- package/dist/types/src/utils/event.d.ts +30 -0
- package/dist/types/src/utils/focus.d.ts +13 -0
- package/dist/types/src/utils/function.d.ts +27 -0
- package/dist/types/src/utils/generic.d.ts +12 -0
- package/dist/types/src/utils/icon.d.ts +16 -0
- package/dist/types/src/utils/keyboard.d.ts +14 -0
- package/dist/types/src/utils/number.d.ts +9 -0
- package/dist/types/src/utils/object.d.ts +3 -0
- package/dist/types/src/utils/promise.d.ts +13 -0
- package/dist/types/src/utils/string.d.ts +1 -0
- package/dist/types/src/validation/enterpriseModuleNames.d.ts +2 -0
- package/dist/types/src/validation/errorMessages/errorText.d.ts +599 -0
- package/dist/types/src/validation/logging.d.ts +24 -0
- package/dist/types/src/validation/resolvableModuleNames.d.ts +8 -0
- package/dist/types/src/validation/rules/colDefValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/gridOptionsValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/iconValidations.d.ts +5 -0
- package/dist/types/src/validation/rules/menuItemValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/userCompValidations.d.ts +3 -0
- package/dist/types/src/validation/validationModule.d.ts +5 -0
- package/dist/types/src/validation/validationService.d.ts +36 -0
- package/dist/types/src/validation/validationTypes.d.ts +39 -0
- package/dist/types/src/valueService/cellApi.d.ts +4 -0
- package/dist/types/src/valueService/changeDetectionService.d.ts +8 -0
- package/dist/types/src/valueService/expressionService.d.ts +10 -0
- package/dist/types/src/valueService/valueModule.d.ts +20 -0
- package/dist/types/src/valueService/valueService.d.ts +45 -0
- package/dist/types/src/vanillaFrameworkOverrides.d.ts +16 -0
- package/dist/types/src/version.d.ts +1 -0
- package/dist/types/src/widgets/agAbstractLabel.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.d.ts +45 -0
- package/dist/types/src/widgets/agSelect.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agSelect.d.ts +30 -0
- package/dist/types/src/widgets/agToggleButton.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/component.d.ts +77 -0
- package/dist/types/src/widgets/managedFocusFeature.d.ts +16 -0
- package/dist/types/src/widgets/popupModule.d.ts +5 -0
- package/dist/types/src/widgets/popupService.d.ts +71 -0
- package/dist/types/src/widgets/tabGuardCtrl.d.ts +58 -0
- package/dist/types/src/widgets/touchListener.d.ts +32 -0
- package/package.json +18 -13
- package/styles/_css-content.scss +34 -18
- package/styles/_index.scss +2 -2
- package/styles/ag-grid-no-native-widgets.css +17 -9
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +17 -9
- package/styles/ag-grid.min.css +3 -3
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideNodeManager.d.ts +0 -45
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +0 -144
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModelApi.d.ts +0 -12
- package/dist/types/client-side-row-model/clientSideRowModel/filterStage.d.ts +0 -11
- package/dist/types/client-side-row-model/clientSideRowModel/flattenStage.d.ts +0 -13
- package/dist/types/client-side-row-model/clientSideRowModel/immutableService.d.ts +0 -15
- package/dist/types/client-side-row-model/clientSideRowModel/sortService.d.ts +0 -18
- package/dist/types/client-side-row-model/clientSideRowModel/sortStage.d.ts +0 -9
- package/dist/types/client-side-row-model/clientSideRowModelModule.d.ts +0 -3
- package/dist/types/client-side-row-model/main.d.ts +0 -1
- package/dist/types/client-side-row-model/version.d.ts +0 -1
- package/dist/types/core/alignedGridsModule.d.ts +0 -1
- package/dist/types/core/alignedGridsService.d.ts +0 -28
- package/dist/types/core/api/apiFunctionService.d.ts +0 -19
- package/dist/types/core/api/apiModule.d.ts +0 -10
- package/dist/types/core/api/cellApi.d.ts +0 -8
- package/dist/types/core/api/coreApi.d.ts +0 -9
- package/dist/types/core/api/eventApi.d.ts +0 -7
- package/dist/types/core/api/gridApi.d.ts +0 -924
- package/dist/types/core/api/gridApiFunctions.d.ts +0 -255
- package/dist/types/core/api/keyboardNavigationApi.d.ts +0 -10
- package/dist/types/core/api/menuApi.d.ts +0 -8
- package/dist/types/core/api/rowApi.d.ts +0 -21
- package/dist/types/core/api/rowModelHelperService.d.ts +0 -18
- package/dist/types/core/api/rowSelectionApi.d.ts +0 -16
- package/dist/types/core/api/sharedApiModule.d.ts +0 -2
- package/dist/types/core/cellNavigationService.d.ts +0 -32
- package/dist/types/core/columns/columnApi.d.ts +0 -63
- package/dist/types/core/columns/columnApplyStateService.d.ts +0 -70
- package/dist/types/core/columns/columnAutosizeService.d.ts +0 -29
- package/dist/types/core/columns/columnDefFactory.d.ts +0 -10
- package/dist/types/core/columns/columnEventDispatcher.d.ts +0 -32
- package/dist/types/core/columns/columnFactory.d.ts +0 -38
- package/dist/types/core/columns/columnGetStateService.d.ts +0 -13
- package/dist/types/core/columns/columnGroupStateService.d.ts +0 -21
- package/dist/types/core/columns/columnModel.d.ts +0 -130
- package/dist/types/core/columns/columnModule.d.ts +0 -2
- package/dist/types/core/columns/columnMoveService.d.ts +0 -21
- package/dist/types/core/columns/columnNameService.d.ts +0 -19
- package/dist/types/core/columns/columnSizeService.d.ts +0 -60
- package/dist/types/core/columns/columnUtils.d.ts +0 -10
- package/dist/types/core/columns/columnViewportService.d.ts +0 -39
- package/dist/types/core/columns/controlsColService.d.ts +0 -11
- package/dist/types/core/columns/dataTypeService.d.ts +0 -57
- package/dist/types/core/columns/funcColsService.d.ts +0 -52
- package/dist/types/core/columns/pivotResultColsService.d.ts +0 -24
- package/dist/types/core/columns/visibleColsService.d.ts +0 -84
- package/dist/types/core/components/componentUtil.d.ts +0 -15
- package/dist/types/core/components/framework/agComponentUtils.d.ts +0 -15
- package/dist/types/core/components/framework/componentMetadataProvider.d.ts +0 -19
- package/dist/types/core/components/framework/componentTypes.d.ts +0 -25
- package/dist/types/core/components/framework/frameworkComponentWrapper.d.ts +0 -26
- package/dist/types/core/components/framework/userComponentFactory.d.ts +0 -81
- package/dist/types/core/components/framework/userComponentRegistry.d.ts +0 -20
- package/dist/types/core/constants/direction.d.ts +0 -8
- package/dist/types/core/constants/keyCode.d.ts +0 -24
- package/dist/types/core/context/beanStub.d.ts +0 -83
- package/dist/types/core/context/context.d.ts +0 -254
- package/dist/types/core/ctrlsFactory.d.ts +0 -9
- package/dist/types/core/ctrlsService.d.ts +0 -55
- package/dist/types/core/dragAndDrop/dragAndDropImageComponent.d.ts +0 -24
- package/dist/types/core/dragAndDrop/dragAndDropService.d.ts +0 -183
- package/dist/types/core/dragAndDrop/dragApi.d.ts +0 -5
- package/dist/types/core/dragAndDrop/dragModule.d.ts +0 -1
- package/dist/types/core/dragAndDrop/dragService.d.ts +0 -59
- package/dist/types/core/edit/cellEditors/dateStringCellEditor.d.ts +0 -9
- package/dist/types/core/edit/cellEditors/selectCellEditor.d.ts +0 -20
- package/dist/types/core/edit/editApi.d.ts +0 -13
- package/dist/types/core/edit/editModule.d.ts +0 -9
- package/dist/types/core/edit/editService.d.ts +0 -27
- package/dist/types/core/edit/rowEditService.d.ts +0 -10
- package/dist/types/core/entities/agColumn.d.ts +0 -164
- package/dist/types/core/entities/agColumnGroup.d.ts +0 -58
- package/dist/types/core/entities/agProvidedColumnGroup.d.ts +0 -43
- package/dist/types/core/entities/cellPositionUtils.d.ts +0 -14
- package/dist/types/core/entities/colDef.d.ts +0 -866
- package/dist/types/core/entities/gridOptions.d.ts +0 -2320
- package/dist/types/core/entities/rowNode.d.ts +0 -321
- package/dist/types/core/entities/rowNodeEventThrottle.d.ts +0 -15
- package/dist/types/core/entities/rowPositionUtils.d.ts +0 -24
- package/dist/types/core/environment.d.ts +0 -33
- package/dist/types/core/eventService.d.ts +0 -22
- package/dist/types/core/eventTypes.d.ts +0 -8
- package/dist/types/core/events.d.ts +0 -887
- package/dist/types/core/filter/columnFilterApi.d.ts +0 -13
- package/dist/types/core/filter/columnFilterService.d.ts +0 -91
- package/dist/types/core/filter/filterManager.d.ts +0 -85
- package/dist/types/core/filter/filterModule.d.ts +0 -13
- package/dist/types/core/filter/filterWrapperComp.d.ts +0 -25
- package/dist/types/core/filter/floating/floatingFilter.d.ts +0 -80
- package/dist/types/core/filter/floating/floatingFilterMapper.d.ts +0 -3
- package/dist/types/core/filter/floating/provided/floatingFilterTextInputService.d.ts +0 -22
- package/dist/types/core/filter/floating/provided/readOnlyFloatingFilter.d.ts +0 -16
- package/dist/types/core/filter/floating/provided/simpleFloatingFilter.d.ts +0 -34
- package/dist/types/core/filter/floating/provided/textInputFloatingFilter.d.ts +0 -25
- package/dist/types/core/filter/provided/date/dateCompWrapper.d.ts +0 -26
- package/dist/types/core/filter/provided/date/dateFilter.d.ts +0 -48
- package/dist/types/core/filter/provided/date/dateFilterModelFormatter.d.ts +0 -14
- package/dist/types/core/filter/provided/date/dateFloatingFilter.d.ts +0 -31
- package/dist/types/core/filter/provided/date/defaultDateComponent.d.ts +0 -21
- package/dist/types/core/filter/provided/number/numberFilter.d.ts +0 -32
- package/dist/types/core/filter/provided/number/numberFloatingFilter.d.ts +0 -14
- package/dist/types/core/filter/provided/optionsFactory.d.ts +0 -15
- package/dist/types/core/filter/provided/providedFilter.d.ts +0 -88
- package/dist/types/core/filter/provided/simpleFilter.d.ts +0 -112
- package/dist/types/core/filter/provided/simpleFilterModelFormatter.d.ts +0 -16
- package/dist/types/core/filter/provided/text/textFilter.d.ts +0 -34
- package/dist/types/core/filter/provided/text/textFloatingFilter.d.ts +0 -13
- package/dist/types/core/filter/quickFilterService.d.ts +0 -34
- package/dist/types/core/focusService.d.ts +0 -109
- package/dist/types/core/grid.d.ts +0 -64
- package/dist/types/core/gridBodyComp/abstractFakeScrollComp.d.ts +0 -25
- package/dist/types/core/gridBodyComp/centerWidthFeature.d.ts +0 -12
- package/dist/types/core/gridBodyComp/fakeHScrollComp.d.ts +0 -24
- package/dist/types/core/gridBodyComp/fakeVScrollComp.d.ts +0 -15
- package/dist/types/core/gridBodyComp/gridBodyComp.d.ts +0 -20
- package/dist/types/core/gridBodyComp/gridBodyCtrl.d.ts +0 -107
- package/dist/types/core/gridBodyComp/gridBodyScrollFeature.d.ts +0 -75
- package/dist/types/core/gridBodyComp/mouseEventService.d.ts +0 -22
- package/dist/types/core/gridBodyComp/navigationService.d.ts +0 -61
- package/dist/types/core/gridBodyComp/pinnedWidthService.d.ts +0 -14
- package/dist/types/core/gridBodyComp/rowContainer/dragListenerFeature.d.ts +0 -13
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerComp.d.ts +0 -21
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +0 -82
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +0 -38
- package/dist/types/core/gridBodyComp/rowContainer/setHeightFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedLeftWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedRightWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowDragFeature.d.ts +0 -67
- package/dist/types/core/gridBodyComp/scrollVisibleService.d.ts +0 -31
- package/dist/types/core/gridBodyComp/viewportSizeFeature.d.ts +0 -32
- package/dist/types/core/gridComp/gridCtrl.d.ts +0 -51
- package/dist/types/core/gridCoreModule.d.ts +0 -7
- package/dist/types/core/gridDestroyService.d.ts +0 -11
- package/dist/types/core/gridOptionsService.d.ts +0 -104
- package/dist/types/core/gridOptionsUtils.d.ts +0 -55
- package/dist/types/core/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +0 -77
- package/dist/types/core/headerRendering/cells/column/headerCellComp.d.ts +0 -19
- package/dist/types/core/headerRendering/cells/column/headerCellCtrl.d.ts +0 -87
- package/dist/types/core/headerRendering/cells/column/headerComp.d.ts +0 -130
- package/dist/types/core/headerRendering/cells/column/resizeFeature.d.ts +0 -28
- package/dist/types/core/headerRendering/cells/column/selectAllFeature.d.ts +0 -35
- package/dist/types/core/headerRendering/cells/column/sortIndicatorComp.d.ts +0 -25
- package/dist/types/core/headerRendering/cells/column/standardMenu.d.ts +0 -26
- package/dist/types/core/headerRendering/cells/columnGroup/groupResizeFeature.d.ts +0 -51
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +0 -54
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupComp.d.ts +0 -44
- package/dist/types/core/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +0 -43
- package/dist/types/core/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +0 -12
- package/dist/types/core/headerRendering/cells/hoverFeature.d.ts +0 -14
- package/dist/types/core/headerRendering/columnDrag/bodyDropPivotTarget.d.ts +0 -25
- package/dist/types/core/headerRendering/columnDrag/bodyDropTarget.d.ts +0 -37
- package/dist/types/core/headerRendering/columnDrag/moveColumnFeature.d.ts +0 -56
- package/dist/types/core/headerRendering/columnMoveHelper.d.ts +0 -40
- package/dist/types/core/headerRendering/common/headerNavigationService.d.ts +0 -32
- package/dist/types/core/headerRendering/common/headerPosition.d.ts +0 -28
- package/dist/types/core/headerRendering/common/horizontalResizeService.d.ts +0 -24
- package/dist/types/core/headerRendering/gridHeaderCtrl.d.ts +0 -31
- package/dist/types/core/headerRendering/row/headerRowComp.d.ts +0 -16
- package/dist/types/core/headerRendering/row/headerRowCtrl.d.ts +0 -67
- package/dist/types/core/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +0 -53
- package/dist/types/core/interfaces/IRangeService.d.ts +0 -89
- package/dist/types/core/interfaces/IServerSideStore.d.ts +0 -65
- package/dist/types/core/interfaces/autoSizeStrategy.d.ts +0 -34
- package/dist/types/core/interfaces/dateComponent.d.ts +0 -43
- package/dist/types/core/interfaces/exportParams.d.ts +0 -153
- package/dist/types/core/interfaces/gridState.d.ts +0 -160
- package/dist/types/core/interfaces/groupCellRenderer.d.ts +0 -68
- package/dist/types/core/interfaces/iAutoColService.d.ts +0 -6
- package/dist/types/core/interfaces/iCallbackParams.d.ts +0 -231
- package/dist/types/core/interfaces/iCellEditor.d.ts +0 -94
- package/dist/types/core/interfaces/iChartOptions.d.ts +0 -95
- package/dist/types/core/interfaces/iClientSideRowModel.d.ts +0 -52
- package/dist/types/core/interfaces/iColumn.d.ts +0 -242
- package/dist/types/core/interfaces/iColumnChooserFactory.d.ts +0 -11
- package/dist/types/core/interfaces/iContextMenuFactory.d.ts +0 -6
- package/dist/types/core/interfaces/iDatasource.d.ts +0 -27
- package/dist/types/core/interfaces/iDetailGridApiService.d.ts +0 -7
- package/dist/types/core/interfaces/iExcelCreator.d.ts +0 -599
- package/dist/types/core/interfaces/iExpansionService.d.ts +0 -8
- package/dist/types/core/interfaces/iFilter.d.ts +0 -186
- package/dist/types/core/interfaces/iFrameworkOverrides.d.ts +0 -48
- package/dist/types/core/interfaces/iImmutableService.d.ts +0 -4
- package/dist/types/core/interfaces/iInfiniteRowModel.d.ts +0 -8
- package/dist/types/core/interfaces/iModule.d.ts +0 -38
- package/dist/types/core/interfaces/iRowModel.d.ts +0 -50
- package/dist/types/core/interfaces/iRowNode.d.ts +0 -279
- package/dist/types/core/interfaces/iRowNodeStage.d.ts +0 -14
- package/dist/types/core/interfaces/iSelectionService.d.ts +0 -48
- package/dist/types/core/interfaces/iServerSideDatasource.d.ts +0 -59
- package/dist/types/core/interfaces/iServerSideRowModel.d.ts +0 -38
- package/dist/types/core/interfaces/iSetFilter.d.ts +0 -203
- package/dist/types/core/interfaces/iShowRowGroupColsService.d.ts +0 -10
- package/dist/types/core/interfaces/iSideBar.d.ts +0 -62
- package/dist/types/core/interfaces/iSparklineCellRendererParams.d.ts +0 -438
- package/dist/types/core/interfaces/iStatusBarService.d.ts +0 -7
- package/dist/types/core/interfaces/iToolPanel.d.ts +0 -60
- package/dist/types/core/interfaces/masterDetail.d.ts +0 -49
- package/dist/types/core/interfaces/menuItem.d.ts +0 -136
- package/dist/types/core/interfaces/serverSideTransaction.d.ts +0 -61
- package/dist/types/core/localeService.d.ts +0 -6
- package/dist/types/core/main.d.ts +0 -282
- package/dist/types/core/misc/animationFrameService.d.ts +0 -36
- package/dist/types/core/misc/apiEventService.d.ts +0 -20
- package/dist/types/core/misc/expansionService.d.ts +0 -17
- package/dist/types/core/misc/frameworkEventListenerService.d.ts +0 -11
- package/dist/types/core/misc/menuService.d.ts +0 -98
- package/dist/types/core/misc/resizeObserverService.d.ts +0 -6
- package/dist/types/core/misc/state/stateModule.d.ts +0 -3
- package/dist/types/core/misc/state/stateService.d.ts +0 -67
- package/dist/types/core/modules/moduleNames.d.ts +0 -28
- package/dist/types/core/modules/moduleRegistry.d.ts +0 -43
- package/dist/types/core/pagination/pageBoundsListener.d.ts +0 -13
- package/dist/types/core/pagination/pageBoundsService.d.ts +0 -21
- package/dist/types/core/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +0 -24
- package/dist/types/core/pagination/paginationAutoPageSizeService.d.ts +0 -15
- package/dist/types/core/pagination/paginationComp.d.ts +0 -47
- package/dist/types/core/pagination/paginationModule.d.ts +0 -3
- package/dist/types/core/pagination/paginationService.d.ts +0 -54
- package/dist/types/core/pinnedRowModel/pinnedRowModel.d.ts +0 -35
- package/dist/types/core/pinnedRowModel/pinnedRowModule.d.ts +0 -1
- package/dist/types/core/propertyKeys.d.ts +0 -133
- package/dist/types/core/rendering/ariaAnnouncementService.d.ts +0 -18
- package/dist/types/core/rendering/autoWidthCalculator.d.ts +0 -19
- package/dist/types/core/rendering/cell/cellComp.d.ts +0 -60
- package/dist/types/core/rendering/cell/cellCtrl.d.ts +0 -166
- package/dist/types/core/rendering/cell/cellCustomStyleFeature.d.ts +0 -18
- package/dist/types/core/rendering/cell/cellKeyboardListenerFeature.d.ts +0 -26
- package/dist/types/core/rendering/cell/cellMouseListenerFeature.d.ts +0 -22
- package/dist/types/core/rendering/cell/cellPositionFeature.d.ts +0 -33
- package/dist/types/core/rendering/cell/cellRangeFeature.d.ts +0 -25
- package/dist/types/core/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +0 -17
- package/dist/types/core/rendering/cellRenderers/animateSlideCellRenderer.d.ts +0 -15
- package/dist/types/core/rendering/cellRenderers/iCellRenderer.d.ts +0 -75
- package/dist/types/core/rendering/cellRenderers/loadingCellRenderer.d.ts +0 -19
- package/dist/types/core/rendering/cellRenderers/skeletonCellRenderer.d.ts +0 -10
- package/dist/types/core/rendering/checkboxSelectionComponent.d.ts +0 -30
- package/dist/types/core/rendering/columnAnimationService.d.ts +0 -24
- package/dist/types/core/rendering/columnHoverService.d.ts +0 -11
- package/dist/types/core/rendering/features/positionableFeature.d.ts +0 -94
- package/dist/types/core/rendering/features/setLeftFeature.d.ts +0 -21
- package/dist/types/core/rendering/features/stickyRowFeature.d.ts +0 -54
- package/dist/types/core/rendering/overlays/overlayComponent.d.ts +0 -15
- package/dist/types/core/rendering/overlays/overlayModule.d.ts +0 -1
- package/dist/types/core/rendering/overlays/overlayService.d.ts +0 -37
- package/dist/types/core/rendering/overlays/overlayWrapperComponent.d.ts +0 -30
- package/dist/types/core/rendering/renderApi.d.ts +0 -14
- package/dist/types/core/rendering/renderModule.d.ts +0 -1
- package/dist/types/core/rendering/row/rowComp.d.ts +0 -21
- package/dist/types/core/rendering/row/rowCssClassCalculator.d.ts +0 -29
- package/dist/types/core/rendering/row/rowCtrl.d.ts +0 -188
- package/dist/types/core/rendering/row/rowDragComp.d.ts +0 -33
- package/dist/types/core/rendering/rowContainerHeightService.d.ts +0 -34
- package/dist/types/core/rendering/rowRenderer.d.ts +0 -190
- package/dist/types/core/rowNodeCache/iRowNodeBlock.d.ts +0 -24
- package/dist/types/core/rowNodeCache/rowNodeBlock.d.ts +0 -29
- package/dist/types/core/rowNodeCache/rowNodeBlockLoader.d.ts +0 -30
- package/dist/types/core/rowNodeCache/rowNodeBlockModule.d.ts +0 -1
- package/dist/types/core/rowNodes/rowNodeSorter.d.ts +0 -27
- package/dist/types/core/rowNodes/selectableService.d.ts +0 -15
- package/dist/types/core/selection/rowRangeSelectionContext.d.ts +0 -68
- package/dist/types/core/selection/selectionService.d.ts +0 -73
- package/dist/types/core/sortController.d.ts +0 -38
- package/dist/types/core/styling/layoutFeature.d.ts +0 -21
- package/dist/types/core/styling/stylingService.d.ts +0 -18
- package/dist/types/core/syncService.d.ts +0 -16
- package/dist/types/core/undoRedo/undoRedoService.d.ts +0 -35
- package/dist/types/core/utils/aria.d.ts +0 -33
- package/dist/types/core/utils/array.d.ts +0 -18
- package/dist/types/core/utils/browser.d.ts +0 -16
- package/dist/types/core/utils/changedPath.d.ts +0 -23
- package/dist/types/core/utils/dom.d.ts +0 -92
- package/dist/types/core/utils/event.d.ts +0 -29
- package/dist/types/core/utils/focus.d.ts +0 -3
- package/dist/types/core/utils/function.d.ts +0 -29
- package/dist/types/core/utils/generic.d.ts +0 -20
- package/dist/types/core/utils/icon.d.ts +0 -90
- package/dist/types/core/utils/keyboard.d.ts +0 -18
- package/dist/types/core/utils/number.d.ts +0 -14
- package/dist/types/core/utils/numberSequence.d.ts +0 -8
- package/dist/types/core/utils/object.d.ts +0 -10
- package/dist/types/core/utils/promise.d.ts +0 -16
- package/dist/types/core/utils/string.d.ts +0 -21
- package/dist/types/core/validation/rules/colDefValidations.d.ts +0 -3
- package/dist/types/core/validation/rules/gridOptionsValidations.d.ts +0 -183
- package/dist/types/core/validation/validationService.d.ts +0 -17
- package/dist/types/core/validation/validationTypes.d.ts +0 -34
- package/dist/types/core/valueService/changeDetectionService.d.ts +0 -13
- package/dist/types/core/valueService/expressionService.d.ts +0 -10
- package/dist/types/core/valueService/valueService.d.ts +0 -44
- package/dist/types/core/vanillaFrameworkOverrides.d.ts +0 -16
- package/dist/types/core/version.d.ts +0 -1
- package/dist/types/core/widgets/agPickerField.d.ts +0 -49
- package/dist/types/core/widgets/agSelect.d.ts +0 -29
- package/dist/types/core/widgets/component.d.ts +0 -95
- package/dist/types/core/widgets/managedFocusFeature.d.ts +0 -19
- package/dist/types/core/widgets/popupService.d.ts +0 -108
- package/dist/types/core/widgets/tabGuardCtrl.d.ts +0 -61
- package/dist/types/core/widgets/tooltipFeature.d.ts +0 -38
- package/dist/types/core/widgets/tooltipStateManager.d.ts +0 -72
- package/dist/types/core/widgets/touchListener.d.ts +0 -33
- package/dist/types/csv-export/csvExport/baseCreator.d.ts +0 -15
- package/dist/types/csv-export/csvExport/csvCreator.d.ts +0 -20
- package/dist/types/csv-export/csvExport/csvExportApi.d.ts +0 -3
- package/dist/types/csv-export/csvExport/downloader.d.ts +0 -3
- package/dist/types/csv-export/csvExport/gridSerializer.d.ts +0 -34
- package/dist/types/csv-export/csvExport/interfaces/index.d.ts +0 -38
- package/dist/types/csv-export/csvExport/sessions/baseGridSerializingSession.d.ts +0 -30
- package/dist/types/csv-export/csvExport/sessions/csvSerializingSession.d.ts +0 -21
- package/dist/types/csv-export/csvExport/xmlFactory.d.ts +0 -5
- package/dist/types/csv-export/csvExport/zipContainer/compress.d.ts +0 -4
- package/dist/types/csv-export/csvExport/zipContainer/convert.d.ts +0 -3
- package/dist/types/csv-export/csvExport/zipContainer/crcTable.d.ts +0 -1
- package/dist/types/csv-export/csvExport/zipContainer/zipContainer.d.ts +0 -20
- package/dist/types/csv-export/csvExport/zipContainer/zipContainerHelper.d.ts +0 -13
- package/dist/types/csv-export/csvExportModule.d.ts +0 -3
- package/dist/types/csv-export/main.d.ts +0 -9
- package/dist/types/csv-export/version.d.ts +0 -1
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteBlock.d.ts +0 -31
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteCache.d.ts +0 -47
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModel.d.ts +0 -50
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModelApi.d.ts +0 -4
- package/dist/types/infinite-row-model/infiniteRowModelModule.d.ts +0 -3
- package/dist/types/infinite-row-model/main.d.ts +0 -1
- package/dist/types/infinite-row-model/version.d.ts +0 -1
- package/dist/types/main.d.ts +0 -5
- package/dist/types/theming/Part.d.ts +0 -33
- package/dist/types/theming/Theme.d.ts +0 -39
- package/dist/types/theming/main.d.ts +0 -9
- package/dist/types/theming/styles/core/GENERATED-core.d.ts +0 -1
- package/dist/types/theming/styles/core/core-css.d.ts +0 -468
- package/dist/types/theming/styles/parts/checkbox-style/GENERATED-checkbox-style-default.d.ts +0 -1
- package/dist/types/theming/styles/parts/checkbox-style/checkbox-styles.d.ts +0 -56
- package/dist/types/theming/styles/parts/color-scheme/color-schemes.d.ts +0 -6
- package/dist/types/theming/styles/parts/icon-set/alpine/GENERATED-icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/alpine/icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/icon-sets.d.ts +0 -3
- package/dist/types/theming/styles/parts/icon-set/material/GENERATED-icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/material/icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/GENERATED-icon-set-quartz.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/icon-set-quartz.d.ts +0 -6
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-underlined.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/input-styles.d.ts +0 -70
- package/dist/types/theming/styles/parts/tab-style/GENERATED-tab-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/tab-style/tab-styles.d.ts +0 -101
- package/dist/types/theming/styles/parts/theme/themes.d.ts +0 -3
- package/dist/types/theming/theme-types.d.ts +0 -206
- package/dist/types/theming/theme-utils.d.ts +0 -8
- package/dist/types/theming/version.d.ts +0 -1
- /package/dist/types/{core → src}/api/apiUtils.d.ts +0 -0
- /package/dist/types/{core → src}/api/csrmSsrmSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/iApiFunction.d.ts +0 -0
- /package/dist/types/{core → src}/api/scrollApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/ssrmInfiniteSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/autoScrollService.d.ts +0 -0
- /package/dist/types/{core → src}/columns/columnKeyCreator.d.ts +0 -0
- /package/dist/types/{core → src}/columns/groupInstanceIdCreator.d.ts +0 -0
- /package/dist/types/{core → src}/components/emptyBean.d.ts +0 -0
- /package/dist/types/{core → src}/components/framework/unwrapUserComp.d.ts +0 -0
- /package/dist/types/{core → src}/context/bean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericBean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericContext.d.ts +0 -0
- /package/dist/types/{core → src}/context/gridBeanComparator.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/checkboxCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/dateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iCellEditorInput.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateStringCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iLargeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iNumberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iSelectCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/largeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/numberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/popupEditorWrapper.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/simpleCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/textCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/entities/dataType.d.ts +0 -0
- /package/dist/types/{core → src}/entities/defaultColumnTypes.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterApi.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterLocaleText.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/iFloatingFilterInputService.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/providedFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/iColumnFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/dateFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/iDateFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iProvidedFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iScalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iSimpleFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/iNumberFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/scalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/iTextFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/quickFilterApi.d.ts +0 -0
- /package/dist/types/{core → src}/gridComp/gridComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/abstractCell/abstractHeaderCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/groupWidthFeature.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/headerGroupCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/cssClassApplier.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/floatingFilter/headerFilterCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/gridHeaderComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/rowContainer/headerRowContainerComp.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/IChartService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/advancedFilterModel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/agFieldParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/brandedType.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterBuilderParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterCtrl.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAfterGuiAttachedParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggFuncService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggregationStage.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAlignedGrid.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCellEditorRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iClipboardService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnVO.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCommon.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCsvCreator.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iEventEmitter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFiltersToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFocusableContainer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMenuFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMultiFilter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPivotColDefService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPopupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iRichCellEditorParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iServerSideSelection.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iStatusPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iViewportDatasource.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iWatermark.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iXmlFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/renderStatusService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowDataTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowNodeTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/selectionState.d.ts +0 -0
- /package/dist/types/{core → src}/localEventService.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateApi.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateModelMigration.d.ts +0 -0
- /package/dist/types/{core → src}/pagination/paginationApi.d.ts +0 -0
- /package/dist/types/{core → src}/pinnedRowModel/pinnedRowApi.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cellRenderers/checkboxCellRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cssClassManager.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/dndSourceComp.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/loadingOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/noRowsOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/overlayApi.d.ts +0 -0
- /package/dist/types/{core/api → src/sort}/sortApi.d.ts +0 -0
- /package/dist/types/{theming/styles → src/theming}/parts/icon-set/quartz/quartz-icon-data.d.ts +0 -0
- /package/dist/types/{theming/styles/parts/tab-style/GENERATED-tab-style-rolodex.d.ts → src/theming/parts/tab-style/tab-style-rolodex.css-GENERATED.d.ts} +0 -0
- /package/dist/types/{core/rendering → src/tooltip}/tooltipComponent.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/iUndoRedo.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/undoRedoStack.d.ts +0 -0
- /package/dist/types/{core → src}/utils/date.d.ts +0 -0
- /package/dist/types/{core → src}/utils/fuzzyMatch.d.ts +0 -0
- /package/dist/types/{core → src}/utils/mouse.d.ts +0 -0
- /package/dist/types/{core → src}/validation/apiFunctionValidator.d.ts +0 -0
- /package/dist/types/{core → src}/valueService/valueCache.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractInputField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractLabel.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agCheckbox.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputDateField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputNumberField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextArea.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agList.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agRadioButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agToggleButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/popupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardComp.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardFeature.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconSetAlpineCSS = ".ag-icon:before{background-color:currentColor;content:\"\";display:block;height:var(--ag-icon-size);-webkit-mask-image:linear-gradient(#0000,#0000);mask-image:linear-gradient(#0000,#0000);-webkit-mask-size:contain;mask-size:contain;width:var(--ag-icon-size)}.ag-icon-aggregation:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24 6H8v2l8 8-8 8v2h16v-2H11l8-8-8-8h13z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24 6H8v2l8 8-8 8v2h16v-2H11l8-8-8-8h13z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-arrows:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.515 11.171 2.687 16l4.828 4.829-1.414 1.414L-.142 16l6.243-6.243zm16.97 0 1.414-1.414L32.142 16l-6.243 6.243-1.414-1.414L29.313 16zM16.028 13.2l2.829 2.828-2.829 2.829-2.828-2.829zm-4.857 11.285L16 29.313l4.829-4.828 1.414 1.414L16 32.142l-6.243-6.243zm0-16.97L9.757 6.101 16-.142l6.243 6.243-1.414 1.414L16 2.687z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.515 11.171 2.687 16l4.828 4.829-1.414 1.414L-.142 16l6.243-6.243zm16.97 0 1.414-1.414L32.142 16l-6.243 6.243-1.414-1.414L29.313 16zM16.028 13.2l2.829 2.828-2.829 2.829-2.828-2.829zm-4.857 11.285L16 29.313l4.829-4.828 1.414 1.414L16 32.142l-6.243-6.243zm0-16.97L9.757 6.101 16-.142l6.243 6.243-1.414 1.414L16 2.687z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-asc:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333 5.332 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333 5.332 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-cancel:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16 2.667A13.32 13.32 0 0 0 2.667 16c0 7.373 5.96 13.333 13.333 13.333S29.333 23.373 29.333 16 23.373 2.667 16 2.667m6.667 18.12-1.88 1.88L16 17.88l-4.787 4.787-1.88-1.88L14.12 16l-4.787-4.787 1.88-1.88L16 14.12l4.787-4.787 1.88 1.88L17.88 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16 2.667A13.32 13.32 0 0 0 2.667 16c0 7.373 5.96 13.333 13.333 13.333S29.333 23.373 29.333 16 23.373 2.667 16 2.667m6.667 18.12-1.88 1.88L16 17.88l-4.787 4.787-1.88-1.88L14.12 16l-4.787-4.787 1.88-1.88L16 14.12l4.787-4.787 1.88 1.88L17.88 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-chart:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Echart%3C/title%3E%3Cg fill='%23000' fill-rule='nonzero'%3E%3Cpath d='M14 7h4v18h-4zM8 17h4v8H8zM20 13h4v12h-4z'/%3E%3C/g%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Echart%3C/title%3E%3Cg fill='%23000' fill-rule='nonzero'%3E%3Cpath d='M14 7h4v18h-4zM8 17h4v8H8zM20 13h4v12h-4z'/%3E%3C/g%3E%3C/svg%3E\")}.ag-icon-color-picker:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M23.907 17.587 10.574 4.254l-1.88 1.88 3.173 3.173-8.28 8.28 10.16 10.16zm-16.547 0 6.387-6.387 6.387 6.387zm18.387 2s-2.667 2.893-2.667 4.667c0 1.467 1.2 2.667 2.667 2.667s2.667-1.2 2.667-2.667c0-1.773-2.667-4.667-2.667-4.667' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M23.907 17.587 10.574 4.254l-1.88 1.88 3.173 3.173-8.28 8.28 10.16 10.16zm-16.547 0 6.387-6.387 6.387 6.387zm18.387 2s-2.667 2.893-2.667 4.667c0 1.467 1.2 2.667 2.667 2.667s2.667-1.2 2.667-2.667c0-1.773-2.667-4.667-2.667-4.667' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-columns:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M26 25H6V7h20zM12 11H8v12h4zm6 0h-4v12h4zm6 12V11h-4v12z' style='fill-rule:nonzero' transform='translate(0 -1)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M26 25H6V7h20zM12 11H8v12h4zm6 0h-4v12h4zm6 12V11h-4v12z' style='fill-rule:nonzero' transform='translate(0 -1)'/%3E%3C/svg%3E\")}.ag-icon-contracted:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m12 6 10 10-10 10-2-2 8-8-8-8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m12 6 10 10-10 10-2-2 8-8-8-8z'/%3E%3C/svg%3E\")}.ag-icon-copy:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M22 1.333H6A2.675 2.675 0 0 0 3.333 4v18.667H6V4h16zm4 5.334H11.333a2.675 2.675 0 0 0-2.667 2.667v18.667c0 1.467 1.2 2.667 2.667 2.667H26c1.467 0 2.667-1.2 2.667-2.667V9.334c0-1.467-1.2-2.667-2.667-2.667M26 28H11.333V9.333H26z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M22 1.333H6A2.675 2.675 0 0 0 3.333 4v18.667H6V4h16zm4 5.334H11.333a2.675 2.675 0 0 0-2.667 2.667v18.667c0 1.467 1.2 2.667 2.667 2.667H26c1.467 0 2.667-1.2 2.667-2.667V9.334c0-1.467-1.2-2.667-2.667-2.667M26 28H11.333V9.333H26z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-cross:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M15.984 13.894 27.05 2.828l2.122 2.122-11.066 11.066 11.066 11.066-2.122 2.12-11.066-11.066L4.918 29.202l-2.12-2.12 11.066-11.066L2.798 4.95l2.12-2.122z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M15.984 13.894 27.05 2.828l2.122 2.122-11.066 11.066 11.066 11.066-2.122 2.12-11.066-11.066L4.918 29.202l-2.12-2.12 11.066-11.066L2.798 4.95l2.12-2.122z'/%3E%3C/svg%3E\")}.ag-icon-csv:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='M.688-.226a.2.2 0 0 1-.017.074.28.28 0 0 1-.145.14.412.412 0 0 1-.234.013.28.28 0 0 1-.202-.168.468.468 0 0 1-.04-.19q0-.086.025-.155a.319.319 0 0 1 .182-.191.4.4 0 0 1 .134-.025q.087 0 .155.035a.3.3 0 0 1 .104.085.17.17 0 0 1 .036.097.06.06 0 0 1-.018.044.06.06 0 0 1-.042.019.06.06 0 0 1-.042-.013.2.2 0 0 1-.031-.046.2.2 0 0 0-.066-.079.16.16 0 0 0-.095-.027.17.17 0 0 0-.142.068.3.3 0 0 0-.053.193.4.4 0 0 0 .023.139.2.2 0 0 0 .067.083.2.2 0 0 0 .1.027q.063 0 .106-.031a.2.2 0 0 0 .065-.091.2.2 0 0 1 .023-.046q.014-.018.044-.018a.06.06 0 0 1 .044.018.06.06 0 0 1 .019.045' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 7.122 25.977)'/%3E%3Cpath d='M.622-.215a.2.2 0 0 1-.033.117.23.23 0 0 1-.098.081.4.4 0 0 1-.153.029.34.34 0 0 1-.175-.04.23.23 0 0 1-.079-.077.17.17 0 0 1-.031-.093q0-.027.019-.045a.06.06 0 0 1 .046-.019.06.06 0 0 1 .039.014.1.1 0 0 1 .027.044.3.3 0 0 0 .03.057q.015.023.044.038.03.015.076.015.065 0 .105-.03a.09.09 0 0 0 .04-.075.08.08 0 0 0-.022-.058.14.14 0 0 0-.056-.034 1 1 0 0 0-.092-.025.7.7 0 0 1-.129-.042.2.2 0 0 1-.083-.066.17.17 0 0 1-.03-.104q0-.058.032-.105a.2.2 0 0 1 .093-.07.4.4 0 0 1 .144-.025q.066 0 .114.016a.3.3 0 0 1 .08.044.2.2 0 0 1 .046.057q.015.03.015.058a.07.07 0 0 1-.018.046.06.06 0 0 1-.046.021q-.025 0-.038-.012a.2.2 0 0 1-.028-.041.2.2 0 0 0-.047-.063Q.387-.625.326-.625a.15.15 0 0 0-.09.025q-.035.024-.035.059 0 .021.012.037a.1.1 0 0 0 .032.027.4.4 0 0 0 .111.036q.06.015.11.031.048.018.083.042a.2.2 0 0 1 .054.062.2.2 0 0 1 .019.091' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 13.339 25.977)'/%3E%3Cpath d='m.184-.633.162.48.163-.483q.013-.038.019-.053a.062.062 0 0 1 .061-.039q.018 0 .034.009a.1.1 0 0 1 .025.025q.009.015.009.031L.654-.64l-.007.025-.009.024-.173.468-.019.051a.2.2 0 0 1-.021.042.1.1 0 0 1-.033.03.1.1 0 0 1-.049.012.1.1 0 0 1-.05-.011A.1.1 0 0 1 .26-.03a.2.2 0 0 1-.021-.042L.22-.123.05-.587.041-.612.033-.638.03-.662q0-.025.02-.046a.07.07 0 0 1 .05-.02q.037 0 .053.023.015.023.031.072' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 18.94 25.977)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='M.688-.226a.2.2 0 0 1-.017.074.28.28 0 0 1-.145.14.412.412 0 0 1-.234.013.28.28 0 0 1-.202-.168.468.468 0 0 1-.04-.19q0-.086.025-.155a.319.319 0 0 1 .182-.191.4.4 0 0 1 .134-.025q.087 0 .155.035a.3.3 0 0 1 .104.085.17.17 0 0 1 .036.097.06.06 0 0 1-.018.044.06.06 0 0 1-.042.019.06.06 0 0 1-.042-.013.2.2 0 0 1-.031-.046.2.2 0 0 0-.066-.079.16.16 0 0 0-.095-.027.17.17 0 0 0-.142.068.3.3 0 0 0-.053.193.4.4 0 0 0 .023.139.2.2 0 0 0 .067.083.2.2 0 0 0 .1.027q.063 0 .106-.031a.2.2 0 0 0 .065-.091.2.2 0 0 1 .023-.046q.014-.018.044-.018a.06.06 0 0 1 .044.018.06.06 0 0 1 .019.045' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 7.122 25.977)'/%3E%3Cpath d='M.622-.215a.2.2 0 0 1-.033.117.23.23 0 0 1-.098.081.4.4 0 0 1-.153.029.34.34 0 0 1-.175-.04.23.23 0 0 1-.079-.077.17.17 0 0 1-.031-.093q0-.027.019-.045a.06.06 0 0 1 .046-.019.06.06 0 0 1 .039.014.1.1 0 0 1 .027.044.3.3 0 0 0 .03.057q.015.023.044.038.03.015.076.015.065 0 .105-.03a.09.09 0 0 0 .04-.075.08.08 0 0 0-.022-.058.14.14 0 0 0-.056-.034 1 1 0 0 0-.092-.025.7.7 0 0 1-.129-.042.2.2 0 0 1-.083-.066.17.17 0 0 1-.03-.104q0-.058.032-.105a.2.2 0 0 1 .093-.07.4.4 0 0 1 .144-.025q.066 0 .114.016a.3.3 0 0 1 .08.044.2.2 0 0 1 .046.057q.015.03.015.058a.07.07 0 0 1-.018.046.06.06 0 0 1-.046.021q-.025 0-.038-.012a.2.2 0 0 1-.028-.041.2.2 0 0 0-.047-.063Q.387-.625.326-.625a.15.15 0 0 0-.09.025q-.035.024-.035.059 0 .021.012.037a.1.1 0 0 0 .032.027.4.4 0 0 0 .111.036q.06.015.11.031.048.018.083.042a.2.2 0 0 1 .054.062.2.2 0 0 1 .019.091' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 13.339 25.977)'/%3E%3Cpath d='m.184-.633.162.48.163-.483q.013-.038.019-.053a.062.062 0 0 1 .061-.039q.018 0 .034.009a.1.1 0 0 1 .025.025q.009.015.009.031L.654-.64l-.007.025-.009.024-.173.468-.019.051a.2.2 0 0 1-.021.042.1.1 0 0 1-.033.03.1.1 0 0 1-.049.012.1.1 0 0 1-.05-.011A.1.1 0 0 1 .26-.03a.2.2 0 0 1-.021-.042L.22-.123.05-.587.041-.612.033-.638.03-.662q0-.025.02-.046a.07.07 0 0 1 .05-.02q.037 0 .053.023.015.023.031.072' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 18.94 25.977)'/%3E%3C/svg%3E\")}.ag-icon-cut:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M13.775 15.198 3.835 2.945a1.501 1.501 0 0 1 2.33-1.89l14.997 18.488A6.003 6.003 0 0 1 29.657 25c0 3.311-2.688 6-6 6s-6-2.689-6-6c0-1.335.437-2.569 1.176-3.566l-3.127-3.855-3.001 3.7A5.97 5.97 0 0 1 14 25c0 3.311-2.689 6-6 6s-6-2.689-6-6a6.003 6.003 0 0 1 8.315-5.536zm9.882 6.702a3.1 3.1 0 0 0-3.1 3.1c0 1.711 1.389 3.1 3.1 3.1s3.1-1.389 3.1-3.1-1.389-3.1-3.1-3.1M8 21.95a3.05 3.05 0 1 0 .001 6.101A3.05 3.05 0 0 0 8 21.95m9.63-11.505 1.932 2.381 8.015-9.881a1.5 1.5 0 0 0-2.329-1.89z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M13.775 15.198 3.835 2.945a1.501 1.501 0 0 1 2.33-1.89l14.997 18.488A6.003 6.003 0 0 1 29.657 25c0 3.311-2.688 6-6 6s-6-2.689-6-6c0-1.335.437-2.569 1.176-3.566l-3.127-3.855-3.001 3.7A5.97 5.97 0 0 1 14 25c0 3.311-2.689 6-6 6s-6-2.689-6-6a6.003 6.003 0 0 1 8.315-5.536zm9.882 6.702a3.1 3.1 0 0 0-3.1 3.1c0 1.711 1.389 3.1 3.1 3.1s3.1-1.389 3.1-3.1-1.389-3.1-3.1-3.1M8 21.95a3.05 3.05 0 1 0 .001 6.101A3.05 3.05 0 0 0 8 21.95m9.63-11.505 1.932 2.381 8.015-9.881a1.5 1.5 0 0 0-2.329-1.89z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-desc:before,.ag-icon-down:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m26.667 16-1.88-1.88-7.453 7.44V5.333h-2.667V21.56l-7.44-7.453L5.334 16l10.667 10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m26.667 16-1.88-1.88-7.453 7.44V5.333h-2.667V21.56l-7.44-7.453L5.334 16l10.667 10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-excel:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='m.052-.139.16-.234-.135-.208a.4.4 0 0 1-.028-.052.1.1 0 0 1-.01-.042.05.05 0 0 1 .018-.037.07.07 0 0 1 .045-.016q.03 0 .047.018a1 1 0 0 1 .047.066l.107.174.115-.174.024-.038.019-.026.021-.015a.1.1 0 0 1 .027-.005.06.06 0 0 1 .044.016.05.05 0 0 1 .018.039q0 .033-.038.089l-.141.211.152.234a.3.3 0 0 1 .03.051.1.1 0 0 1 .009.038.1.1 0 0 1-.008.031.1.1 0 0 1-.024.023.1.1 0 0 1-.034.008.1.1 0 0 1-.035-.008.1.1 0 0 1-.023-.022L.427-.067.301-.265l-.134.204-.022.034-.016.019a.1.1 0 0 1-.022.015.1.1 0 0 1-.03.005.06.06 0 0 1-.044-.016.06.06 0 0 1-.017-.047q0-.036.036-.088' style='fill-rule:nonzero' transform='matrix(17.82892 0 0 16.50777 10.371 25.928)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='m.052-.139.16-.234-.135-.208a.4.4 0 0 1-.028-.052.1.1 0 0 1-.01-.042.05.05 0 0 1 .018-.037.07.07 0 0 1 .045-.016q.03 0 .047.018a1 1 0 0 1 .047.066l.107.174.115-.174.024-.038.019-.026.021-.015a.1.1 0 0 1 .027-.005.06.06 0 0 1 .044.016.05.05 0 0 1 .018.039q0 .033-.038.089l-.141.211.152.234a.3.3 0 0 1 .03.051.1.1 0 0 1 .009.038.1.1 0 0 1-.008.031.1.1 0 0 1-.024.023.1.1 0 0 1-.034.008.1.1 0 0 1-.035-.008.1.1 0 0 1-.023-.022L.427-.067.301-.265l-.134.204-.022.034-.016.019a.1.1 0 0 1-.022.015.1.1 0 0 1-.03.005.06.06 0 0 1-.044-.016.06.06 0 0 1-.017-.047q0-.036.036-.088' style='fill-rule:nonzero' transform='matrix(17.82892 0 0 16.50777 10.371 25.928)'/%3E%3C/svg%3E\")}.ag-icon-expanded:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M20 26 10 16 20 6l2 2-8 8 8 8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M20 26 10 16 20 6l2 2-8 8 8 8z'/%3E%3C/svg%3E\")}.ag-icon-eye-slash:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye-slash%3C/title%3E%3Cpath fill='%23000' fill-rule='nonzero' d='M8.95 10.364 7 8.414 8.414 7l2.32 2.32A13.2 13.2 0 0 1 16.5 8c5.608 0 10.542 3.515 12.381 8.667L29 17l-.119.333a13 13 0 0 1-4.255 5.879l1.466 1.466-1.414 1.414-1.754-1.753A13.2 13.2 0 0 1 16.5 26c-5.608 0-10.542-3.515-12.381-8.667L4 17l.119-.333a13 13 0 0 1 4.83-6.303m1.445 1.445A11.02 11.02 0 0 0 6.148 17c1.646 4.177 5.728 7 10.352 7 1.76 0 3.441-.409 4.94-1.146l-1.878-1.878A5.06 5.06 0 0 1 16.5 22c-2.789 0-5.05-2.239-5.05-5 0-1.158.398-2.223 1.065-3.07zm1.855-.974 1.794 1.795A5.07 5.07 0 0 1 16.5 12c2.789 0 5.05 2.239 5.05 5 0 .9-.24 1.745-.661 2.474l2.305 2.306A11 11 0 0 0 26.852 17c-1.646-4.177-5.728-7-10.352-7-1.495 0-2.933.295-4.25.835'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye-slash%3C/title%3E%3Cpath fill='%23000' fill-rule='nonzero' d='M8.95 10.364 7 8.414 8.414 7l2.32 2.32A13.2 13.2 0 0 1 16.5 8c5.608 0 10.542 3.515 12.381 8.667L29 17l-.119.333a13 13 0 0 1-4.255 5.879l1.466 1.466-1.414 1.414-1.754-1.753A13.2 13.2 0 0 1 16.5 26c-5.608 0-10.542-3.515-12.381-8.667L4 17l.119-.333a13 13 0 0 1 4.83-6.303m1.445 1.445A11.02 11.02 0 0 0 6.148 17c1.646 4.177 5.728 7 10.352 7 1.76 0 3.441-.409 4.94-1.146l-1.878-1.878A5.06 5.06 0 0 1 16.5 22c-2.789 0-5.05-2.239-5.05-5 0-1.158.398-2.223 1.065-3.07zm1.855-.974 1.794 1.795A5.07 5.07 0 0 1 16.5 12c2.789 0 5.05 2.239 5.05 5 0 .9-.24 1.745-.661 2.474l2.305 2.306A11 11 0 0 0 26.852 17c-1.646-4.177-5.728-7-10.352-7-1.495 0-2.933.295-4.25.835'/%3E%3C/svg%3E\")}.ag-icon-eye:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16.5 23c4.624 0 8.706-2.823 10.352-7-1.646-4.177-5.728-7-10.352-7s-8.706 2.823-10.352 7c1.646 4.177 5.728 7 10.352 7M4.119 15.667C5.958 10.515 10.892 7 16.5 7s10.542 3.515 12.381 8.667L29 16l-.119.333C27.042 21.485 22.108 25 16.5 25S5.958 21.485 4.119 16.333L4 16zM16.5 21c2.789 0 5.049-2.239 5.049-5s-2.26-5-5.049-5-5.049 2.239-5.049 5 2.26 5 5.049 5' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16.5 23c4.624 0 8.706-2.823 10.352-7-1.646-4.177-5.728-7-10.352-7s-8.706 2.823-10.352 7c1.646 4.177 5.728 7 10.352 7M4.119 15.667C5.958 10.515 10.892 7 16.5 7s10.542 3.515 12.381 8.667L29 16l-.119.333C27.042 21.485 22.108 25 16.5 25S5.958 21.485 4.119 16.333L4 16zM16.5 21c2.789 0 5.049-2.239 5.049-5s-2.26-5-5.049-5-5.049 2.239-5.049 5 2.26 5 5.049 5' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-filter:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m28 8-8 8v5l-6 6V16L6 8V6h22zM9 8l7 7v7l2-2v-5l7-7z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m28 8-8 8v5l-6 6V16L6 8V6h22zM9 8l7 7v7l2-2v-5l7-7z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-first:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24.273 22.12 18.153 16l6.12-6.12L22.393 8l-8 8 8 8zM7.727 8h2.667v16H7.727z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24.273 22.12 18.153 16l6.12-6.12L22.393 8l-8 8 8 8zM7.727 8h2.667v16H7.727z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-group:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M14 7v1H9V7zm0-3v1H5.001V4zm-7 7H5v-1h2zm0-3H5V7h2zM3 5H1V4h2zm11 5v1H9v-1zm-7 4H5v-1h2zm7-1v1H9v-1z' style='fill-rule:nonzero' transform='matrix(2 0 0 2 0 -2)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M14 7v1H9V7zm0-3v1H5.001V4zm-7 7H5v-1h2zm0-3H5V7h2zM3 5H1V4h2zm11 5v1H9v-1zm-7 4H5v-1h2zm7-1v1H9v-1z' style='fill-rule:nonzero' transform='matrix(2 0 0 2 0 -2)'/%3E%3C/svg%3E\")}.ag-icon-last:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m7.727 9.88 6.12 6.12-6.12 6.12L9.607 24l8-8-8-8zM21.607 8h2.667v16h-2.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m7.727 9.88 6.12 6.12-6.12 6.12L9.607 24l8-8-8-8zM21.607 8h2.667v16h-2.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-left:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M26.667 14.667H10.44l7.453-7.453L16 5.334 5.333 16.001 16 26.668l1.88-1.88-7.44-7.453h16.227z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M26.667 14.667H10.44l7.453-7.453L16 5.334 5.333 16.001 16 26.668l1.88-1.88-7.44-7.453h16.227z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-linked:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M5.2 16a4.136 4.136 0 0 1 4.133-4.133h5.333V9.334H9.333a6.67 6.67 0 0 0-6.667 6.667 6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.333A4.136 4.136 0 0 1 5.2 16.002zm5.467 1.333h10.667v-2.667H10.667zm12-8h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133 4.136 4.136 0 0 1-4.133 4.133h-5.333v2.533h5.333a6.67 6.67 0 0 0 6.667-6.667 6.67 6.67 0 0 0-6.667-6.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M5.2 16a4.136 4.136 0 0 1 4.133-4.133h5.333V9.334H9.333a6.67 6.67 0 0 0-6.667 6.667 6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.333A4.136 4.136 0 0 1 5.2 16.002zm5.467 1.333h10.667v-2.667H10.667zm12-8h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133 4.136 4.136 0 0 1-4.133 4.133h-5.333v2.533h5.333a6.67 6.67 0 0 0 6.667-6.667 6.67 6.67 0 0 0-6.667-6.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-loading:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M17 29h-2v-8h2zm-3.586-9L7 26.414 5.586 25 12 18.586zm13 5L25 26.414 18.586 20 20 18.586zM29 17h-8v-2h8zm-18 0H3v-2h8zm2.414-5L12 13.414 5.586 7 7 5.586zm13-5L20 13.414 18.586 12 25 5.586zM17 11h-2V3h2z' style='fill-rule:nonzero' transform='translate(-3.692 -3.692)scale(1.23077)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M17 29h-2v-8h2zm-3.586-9L7 26.414 5.586 25 12 18.586zm13 5L25 26.414 18.586 20 20 18.586zM29 17h-8v-2h8zm-18 0H3v-2h8zm2.414-5L12 13.414 5.586 7 7 5.586zm13-5L20 13.414 18.586 12 25 5.586zM17 11h-2V3h2z' style='fill-rule:nonzero' transform='translate(-3.692 -3.692)scale(1.23077)'/%3E%3C/svg%3E\")}.ag-icon-maximize:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M14 30H2V18h2.828v7.05l8.254-8.252 2.12 2.12-8.252 8.254H14zm4-28h12v12h-2.828V6.95l-8.254 8.252-2.12-2.12 8.252-8.254H18z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M14 30H2V18h2.828v7.05l8.254-8.252 2.12 2.12-8.252 8.254H14zm4-28h12v12h-2.828V6.95l-8.254 8.252-2.12-2.12 8.252-8.254H18z'/%3E%3C/svg%3E\")}.ag-icon-menu:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M20 13H0v-2h20zm0-6H0V5h20zm0-6H0v-2h20z' style='fill-rule:nonzero' transform='translate(6 9)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M20 13H0v-2h20zm0-6H0V5h20zm0-6H0v-2h20z' style='fill-rule:nonzero' transform='translate(6 9)'/%3E%3C/svg%3E\")}.ag-icon-menu-alt:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 19a3 3 0 1 0 0-6 3 3 0 0 0 0 6M16 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6M16 27a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 19a3 3 0 1 0 0-6 3 3 0 0 0 0 6M16 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6M16 27a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E\")}.ag-icon-minimize:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M2 18h12v12h-2.828v-7.05l-8.254 8.252-2.12-2.12 8.252-8.254H2zm28-4H18V2h2.828v7.05L29.082.798l2.12 2.12-8.252 8.254H30z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M2 18h12v12h-2.828v-7.05l-8.254 8.252-2.12-2.12 8.252-8.254H2zm28-4H18V2h2.828v7.05L29.082.798l2.12 2.12-8.252 8.254H30z'/%3E%3C/svg%3E\")}.ag-icon-minus:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658H7.901v-2.658z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658H7.901v-2.658z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-next:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M10.94 6 9.06 7.88 17.167 16 9.06 24.12 10.94 26l10-10z' style='fill-rule:nonzero' transform='translate(1)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M10.94 6 9.06 7.88 17.167 16 9.06 24.12 10.94 26l10-10z' style='fill-rule:nonzero' transform='translate(1)'/%3E%3C/svg%3E\")}.ag-icon-none:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enone%3C/title%3E%3Cg fill='%23000' fill-rule='nonzero'%3E%3Cpath d='M23.708 14.645 16 6.939l-7.708 7.706 1.416 1.416L16 9.767l6.292 6.294zM23.708 20.355 16 28.061l-7.708-7.706 1.416-1.416L16 25.233l6.292-6.294z'/%3E%3C/g%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enone%3C/title%3E%3Cg fill='%23000' fill-rule='nonzero'%3E%3Cpath d='M23.708 14.645 16 6.939l-7.708 7.706 1.416 1.416L16 9.767l6.292 6.294zM23.708 20.355 16 28.061l-7.708-7.706 1.416-1.416L16 25.233l6.292-6.294z'/%3E%3C/g%3E%3C/svg%3E\")}.ag-icon-not-allowed:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16 2.667C8.64 2.667 2.667 8.64 2.667 16S8.64 29.333 16 29.333 29.333 23.36 29.333 16 23.36 2.667 16 2.667M5.333 16c0-5.893 4.773-10.667 10.667-10.667 2.467 0 4.733.84 6.533 2.253L7.586 22.533A10.54 10.54 0 0 1 5.333 16M16 26.667c-2.467 0-4.733-.84-6.533-2.253L24.414 9.467A10.54 10.54 0 0 1 26.667 16c0 5.893-4.773 10.667-10.667 10.667' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M16 2.667C8.64 2.667 2.667 8.64 2.667 16S8.64 29.333 16 29.333 29.333 23.36 29.333 16 23.36 2.667 16 2.667M5.333 16c0-5.893 4.773-10.667 10.667-10.667 2.467 0 4.733.84 6.533 2.253L7.586 22.533A10.54 10.54 0 0 1 5.333 16M16 26.667c-2.467 0-4.733-.84-6.533-2.253L24.414 9.467A10.54 10.54 0 0 1 26.667 16c0 5.893-4.773 10.667-10.667 10.667' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-paste:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M25.334 4H19.76C19.2 2.453 17.733 1.333 16 1.333S12.8 2.453 12.24 4H6.667A2.675 2.675 0 0 0 4 6.667V28c0 1.467 1.2 2.667 2.667 2.667h18.667c1.467 0 2.667-1.2 2.667-2.667V6.667C28.001 5.2 26.801 4 25.334 4M16 4c.733 0 1.333.6 1.333 1.333s-.6 1.333-1.333 1.333-1.333-.6-1.333-1.333S15.267 4 16 4m9.333 24H6.666V6.667h2.667v4h13.333v-4h2.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M25.334 4H19.76C19.2 2.453 17.733 1.333 16 1.333S12.8 2.453 12.24 4H6.667A2.675 2.675 0 0 0 4 6.667V28c0 1.467 1.2 2.667 2.667 2.667h18.667c1.467 0 2.667-1.2 2.667-2.667V6.667C28.001 5.2 26.801 4 25.334 4M16 4c.733 0 1.333.6 1.333 1.333s-.6 1.333-1.333 1.333-1.333-.6-1.333-1.333S15.267 4 16 4m9.333 24H6.666V6.667h2.667v4h13.333v-4h2.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-pin:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m10.78 19.777-4.668-4.666s.032-1 .67-1.87c1.366-1.86 4.052-1.96 6.056-1.572l3.158-3.108c-.7-2.342 3.352-5.046 3.352-5.046l9.166 9.168q-.334.447-.67.894c-1.074 1.426-2.538 2.63-4.272 2.338l-3.32 3.218c.046.344.042.03.118 1.152.144 2.13-.64 4.324-2.632 5.34l-.746.364-4.798-4.798-7.292 7.294-1.416-1.416zm8.24-13.672c-.688.568-1.416 1.45-1.024 2.072l.49.722-4.986 4.988c-1.988-.506-4.346-.636-5.156.614l9.02 9.032q.14-.099.272-.21c1.226-1.08.764-3.04.498-4.9l4.79-4.79s1.47.938 2.936-.776l-6.79-6.79q-.026.019-.05.038' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m10.78 19.777-4.668-4.666s.032-1 .67-1.87c1.366-1.86 4.052-1.96 6.056-1.572l3.158-3.108c-.7-2.342 3.352-5.046 3.352-5.046l9.166 9.168q-.334.447-.67.894c-1.074 1.426-2.538 2.63-4.272 2.338l-3.32 3.218c.046.344.042.03.118 1.152.144 2.13-.64 4.324-2.632 5.34l-.746.364-4.798-4.798-7.292 7.294-1.416-1.416zm8.24-13.672c-.688.568-1.416 1.45-1.024 2.072l.49.722-4.986 4.988c-1.988-.506-4.346-.636-5.156.614l9.02 9.032q.14-.099.272-.21c1.226-1.08.764-3.04.498-4.9l4.79-4.79s1.47.938 2.936-.776l-6.79-6.79q-.026.019-.05.038' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-pivot:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M25.128 2.002c2.56.096 4.772 2.292 4.87 4.87a712 712 0 0 1 0 18.256c-.096 2.56-2.292 4.772-4.87 4.87a712 712 0 0 1-18.256 0c-2.558-.096-4.772-2.29-4.87-4.87a712 712 0 0 1 0-18.256c.096-2.56 2.292-4.772 4.87-4.87a712 712 0 0 1 18.256 0m2.966 7.954H9.892v18.136c5.086.13 10.18.098 15.264-.096 1.48-.094 2.746-1.35 2.84-2.84.192-5.064.226-10.134.098-15.2M3.968 24.1q.015.528.036 1.056c.094 1.484 1.354 2.746 2.84 2.84l1.012.036V24.1zM22 15.414l-.292.294-1.416-1.416L23 11.586l2.708 2.706-1.416 1.416-.292-.294v3.592c-.032 2.604-2.246 4.892-4.872 4.992L15.414 24l.294.292-1.416 1.416L11.586 23l2.706-2.708 1.416 1.416-.322.32c3.372.03 6.578-.164 6.614-3.034zM3.88 18.038c.002 1.346.012 2.694.038 4.04h3.938v-4.04zm.05-6.062a681 681 0 0 0-.044 4.042h3.97v-4.042zm5.962-7.99Q8.449 3.999 7.006 4c-1.57.02-2.946 1.348-3.004 2.922q-.02 1.517-.042 3.034h3.896v-2.02h2.036zm14.244-.016v3.966h3.898q-.017-.546-.038-1.092c-.094-1.48-1.35-2.746-2.84-2.84q-.51-.019-1.02-.034m-8.14-.054q-2.035.022-4.07.048v3.972h4.07zm6.106.008a213 213 0 0 0-4.07-.022v4.034h4.07z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M25.128 2.002c2.56.096 4.772 2.292 4.87 4.87a712 712 0 0 1 0 18.256c-.096 2.56-2.292 4.772-4.87 4.87a712 712 0 0 1-18.256 0c-2.558-.096-4.772-2.29-4.87-4.87a712 712 0 0 1 0-18.256c.096-2.56 2.292-4.772 4.87-4.87a712 712 0 0 1 18.256 0m2.966 7.954H9.892v18.136c5.086.13 10.18.098 15.264-.096 1.48-.094 2.746-1.35 2.84-2.84.192-5.064.226-10.134.098-15.2M3.968 24.1q.015.528.036 1.056c.094 1.484 1.354 2.746 2.84 2.84l1.012.036V24.1zM22 15.414l-.292.294-1.416-1.416L23 11.586l2.708 2.706-1.416 1.416-.292-.294v3.592c-.032 2.604-2.246 4.892-4.872 4.992L15.414 24l.294.292-1.416 1.416L11.586 23l2.706-2.708 1.416 1.416-.322.32c3.372.03 6.578-.164 6.614-3.034zM3.88 18.038c.002 1.346.012 2.694.038 4.04h3.938v-4.04zm.05-6.062a681 681 0 0 0-.044 4.042h3.97v-4.042zm5.962-7.99Q8.449 3.999 7.006 4c-1.57.02-2.946 1.348-3.004 2.922q-.02 1.517-.042 3.034h3.896v-2.02h2.036zm14.244-.016v3.966h3.898q-.017-.546-.038-1.092c-.094-1.48-1.35-2.746-2.84-2.84q-.51-.019-1.02-.034m-8.14-.054q-2.035.022-4.07.048v3.972h4.07zm6.106.008a213 213 0 0 0-4.07-.022v4.034h4.07z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-plus:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658h-6.77v6.77h-2.658v-6.77h-6.77v-2.658h6.77v-6.77h2.658v6.77z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658h-6.77v6.77h-2.658v-6.77h-6.77v-2.658h6.77v-6.77h2.658v6.77z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-previous:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M21.94 7.88 20.06 6l-10 10 10 10 1.88-1.88L13.833 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M21.94 7.88 20.06 6l-10 10 10 10 1.88-1.88L13.833 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-right:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m16 5.333-1.88 1.88 7.44 7.453H5.333v2.667H21.56l-7.44 7.453 1.88 1.88 10.667-10.667L16 5.332z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m16 5.333-1.88 1.88 7.44 7.453H5.333v2.667H21.56l-7.44 7.453 1.88 1.88 10.667-10.667L16 5.332z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-save:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M15.708 2.355 8 10.061.292 2.355 1.708.939 8 7.233 14.292.939z' style='fill-rule:nonzero' transform='translate(8 14)'/%3E%3Cpath d='M5 26h22v2H5zM15 4h2v18h-2z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M15.708 2.355 8 10.061.292 2.355 1.708.939 8 7.233 14.292.939z' style='fill-rule:nonzero' transform='translate(8 14)'/%3E%3Cpath d='M5 26h22v2H5zM15 4h2v18h-2z'/%3E%3C/svg%3E\")}.ag-icon-small-down:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.334 10.667 16 21.334l8.667-10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.334 10.667 16 21.334l8.667-10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-small-left:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M21.333 7.334 10.666 16l10.667 8.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M21.333 7.334 10.666 16l10.667 8.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-small-right:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M10.667 24.666 21.334 16 10.667 7.333z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M10.667 24.666 21.334 16 10.667 7.333z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-small-up:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.334 21.333 16 10.666l8.667 10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M7.334 21.333 16 10.666l8.667 10.667z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-tick:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M11.586 22.96 27.718 6.828 29.84 8.95 11.586 27.202 2.4 18.016l2.12-2.122z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M11.586 22.96 27.718 6.828 29.84 8.95 11.586 27.202 2.4 18.016l2.12-2.122z'/%3E%3C/svg%3E\")}.ag-icon-tree-closed:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m11.94 6-1.88 1.88L18.167 16l-8.107 8.12L11.94 26l10-10z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m11.94 6-1.88 1.88L18.167 16l-8.107 8.12L11.94 26l10-10z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-tree-indeterminate:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6 13.5h20v3H6z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6 13.5h20v3H6z'/%3E%3C/svg%3E\")}.ag-icon-tree-open:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24.12 9.06 16 17.167 7.88 9.06 6 10.94l10 10 10-10z' style='fill-rule:nonzero' transform='translate(0 1)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M24.12 9.06 16 17.167 7.88 9.06 6 10.94l10 10 10-10z' style='fill-rule:nonzero' transform='translate(0 1)'/%3E%3C/svg%3E\")}.ag-icon-unlinked:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M22.667 9.333h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133c0 1.907-1.307 3.507-3.08 3.973l1.947 1.947c2.173-1.107 3.667-3.32 3.667-5.92a6.67 6.67 0 0 0-6.667-6.667zm-1.334 5.334h-2.92l2.667 2.667h.253zM2.667 5.693 6.814 9.84A6.65 6.65 0 0 0 2.667 16a6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.334a4.136 4.136 0 0 1-4.133-4.133c0-2.12 1.613-3.867 3.68-4.093l2.76 2.76h-.973v2.667h3.64l3.027 3.027v2.307h2.307l5.347 5.333 1.68-1.68L4.362 4.002 2.669 5.695z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M22.667 9.333h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133c0 1.907-1.307 3.507-3.08 3.973l1.947 1.947c2.173-1.107 3.667-3.32 3.667-5.92a6.67 6.67 0 0 0-6.667-6.667zm-1.334 5.334h-2.92l2.667 2.667h.253zM2.667 5.693 6.814 9.84A6.65 6.65 0 0 0 2.667 16a6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.334a4.136 4.136 0 0 1-4.133-4.133c0-2.12 1.613-3.867 3.68-4.093l2.76 2.76h-.973v2.667h3.64l3.027 3.027v2.307h2.307l5.347 5.333 1.68-1.68L4.362 4.002 2.669 5.695z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-up:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333 5.332 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333 5.332 16z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-grip:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M8 24H6v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zM8 18H6v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zM8 12H6V8h2zm6 0h-2V8h2zm6 0h-2V8h2zm6 0h-2V8h2z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M8 24H6v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zM8 18H6v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zm6 0h-2v-4h2zM8 12H6V8h2zm6 0h-2V8h2zm6 0h-2V8h2zm6 0h-2V8h2z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-settings:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30zm-9 4c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3M2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2zm9-4c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30zm-9 4c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3M2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2zm9-4c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3'/%3E%3C/svg%3E\")}";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconSetAlpine: import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconSetMaterialCSS = ".ag-icon:before{background-color:currentColor;content:\"\";display:block;height:var(--ag-icon-size);-webkit-mask-image:linear-gradient(#0000,#0000);mask-image:linear-gradient(#0000,#0000);-webkit-mask-size:contain;mask-size:contain;width:var(--ag-icon-size)}.ag-icon-aggregation:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eaggregation%3C/title%3E%3Cpath d='M24 5.333H8V8l8.667 8L8 24v2.667h16v-4h-9.333L21.334 16l-6.667-6.667H24z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eaggregation%3C/title%3E%3Cpath d='M24 5.333H8V8l8.667 8L8 24v2.667h16v-4h-9.333L21.334 16l-6.667-6.667H24z'/%3E%3C/svg%3E\")}.ag-icon-arrows:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Earrows%3C/title%3E%3Cpath d='M13.333 11.556h5.333V8h3.556L16 1.778 9.778 8h3.556zm-1.777 1.777H8V9.777l-6.222 6.222L8 22.221v-3.556h3.556zM30.222 16 24 9.778v3.556h-3.556v5.333H24v3.556l6.222-6.222zm-11.555 4.444h-5.333V24H9.778L16 30.222 22.222 24h-3.556z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Earrows%3C/title%3E%3Cpath d='M13.333 11.556h5.333V8h3.556L16 1.778 9.778 8h3.556zm-1.777 1.777H8V9.777l-6.222 6.222L8 22.221v-3.556h3.556zM30.222 16 24 9.778v3.556h-3.556v5.333H24v3.556l6.222-6.222zm-11.555 4.444h-5.333V24H9.778L16 30.222 22.222 24h-3.556z'/%3E%3C/svg%3E\")}.ag-icon-asc:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Easc%3C/title%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Easc%3C/title%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333z'/%3E%3C/svg%3E\")}.ag-icon-cancel:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecancel%3C/title%3E%3Cpath d='M16 2.667C8.627 2.667 2.667 8.627 2.667 16S8.627 29.333 16 29.333 29.333 23.373 29.333 16 23.373 2.667 16 2.667m6.667 18.12-1.88 1.88L16 17.88l-4.787 4.787-1.88-1.88L14.12 16l-4.787-4.787 1.88-1.88L16 14.12l4.787-4.787 1.88 1.88L17.88 16z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecancel%3C/title%3E%3Cpath d='M16 2.667C8.627 2.667 2.667 8.627 2.667 16S8.627 29.333 16 29.333 29.333 23.373 29.333 16 23.373 2.667 16 2.667m6.667 18.12-1.88 1.88L16 17.88l-4.787 4.787-1.88-1.88L14.12 16l-4.787-4.787 1.88-1.88L16 14.12l4.787-4.787 1.88 1.88L17.88 16z'/%3E%3C/svg%3E\")}.ag-icon-chart:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Echart%3C/title%3E%3Cpath d='M6.667 12.267h4v13.067h-4zm7.466-5.6h3.733v18.667h-3.733zM21.6 17.333h3.733v8H21.6z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Echart%3C/title%3E%3Cpath d='M6.667 12.267h4v13.067h-4zm7.466-5.6h3.733v18.667h-3.733zM21.6 17.333h3.733v8H21.6z'/%3E%3C/svg%3E\")}.ag-icon-color-picker:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecolor-picker%3C/title%3E%3Cpath d='M23.907 17.587 10.574 4.254l-1.88 1.88 3.173 3.173-8.28 8.28 10.16 10.16zm-16.547 0 6.387-6.387 6.387 6.387H7.361zm18.387 2s-2.667 2.893-2.667 4.667c0 1.467 1.2 2.667 2.667 2.667s2.667-1.2 2.667-2.667c0-1.773-2.667-4.667-2.667-4.667'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecolor-picker%3C/title%3E%3Cpath d='M23.907 17.587 10.574 4.254l-1.88 1.88 3.173 3.173-8.28 8.28 10.16 10.16zm-16.547 0 6.387-6.387 6.387 6.387H7.361zm18.387 2s-2.667 2.893-2.667 4.667c0 1.467 1.2 2.667 2.667 2.667s2.667-1.2 2.667-2.667c0-1.773-2.667-4.667-2.667-4.667'/%3E%3C/svg%3E\")}.ag-icon-columns:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecolumns%3C/title%3E%3Cpath d='M5.333 10.667h5.333V5.334H5.333zm8 16h5.333v-5.333h-5.333zm-8 0h5.333v-5.333H5.333zm0-8h5.333v-5.333H5.333zm8 0h5.333v-5.333h-5.333zm8-13.334v5.333h5.333V5.333zm-8 5.334h5.333V5.334h-5.333zm8 8h5.333v-5.333h-5.333zm0 8h5.333v-5.333h-5.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecolumns%3C/title%3E%3Cpath d='M5.333 10.667h5.333V5.334H5.333zm8 16h5.333v-5.333h-5.333zm-8 0h5.333v-5.333H5.333zm0-8h5.333v-5.333H5.333zm8 0h5.333v-5.333h-5.333zm8-13.334v5.333h5.333V5.333zm-8 5.334h5.333V5.334h-5.333zm8 8h5.333v-5.333h-5.333zm0 8h5.333v-5.333h-5.333z'/%3E%3C/svg%3E\")}.ag-icon-contracted:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Econtracted%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Econtracted%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\")}.ag-icon-copy:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecopy%3C/title%3E%3Cpath d='M22 1.333H6A2.675 2.675 0 0 0 3.333 4v18.667H6V4h16zm4 5.334H11.333a2.675 2.675 0 0 0-2.667 2.667v18.667c0 1.467 1.2 2.667 2.667 2.667H26c1.467 0 2.667-1.2 2.667-2.667V9.334c0-1.467-1.2-2.667-2.667-2.667M26 28H11.333V9.333H26z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecopy%3C/title%3E%3Cpath d='M22 1.333H6A2.675 2.675 0 0 0 3.333 4v18.667H6V4h16zm4 5.334H11.333a2.675 2.675 0 0 0-2.667 2.667v18.667c0 1.467 1.2 2.667 2.667 2.667H26c1.467 0 2.667-1.2 2.667-2.667V9.334c0-1.467-1.2-2.667-2.667-2.667M26 28H11.333V9.333H26z'/%3E%3C/svg%3E\")}.ag-icon-cross:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecross%3C/title%3E%3Cpath d='m25.333 8.547-1.88-1.88L16 14.12 8.547 6.667l-1.88 1.88L14.12 16l-7.453 7.453 1.88 1.88L16 17.88l7.453 7.453 1.88-1.88L17.88 16z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Ecross%3C/title%3E%3Cpath d='m25.333 8.547-1.88-1.88L16 14.12 8.547 6.667l-1.88 1.88L14.12 16l-7.453 7.453 1.88 1.88L16 17.88l7.453 7.453 1.88-1.88L17.88 16z'/%3E%3C/svg%3E\")}.ag-icon-csv:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='M.688-.226a.2.2 0 0 1-.017.074.28.28 0 0 1-.145.14.412.412 0 0 1-.234.013.28.28 0 0 1-.202-.168.468.468 0 0 1-.04-.19q0-.086.025-.155a.319.319 0 0 1 .182-.191.4.4 0 0 1 .134-.025q.087 0 .155.035a.3.3 0 0 1 .104.085.17.17 0 0 1 .036.097.06.06 0 0 1-.018.044.06.06 0 0 1-.042.019.06.06 0 0 1-.042-.013.2.2 0 0 1-.031-.046.2.2 0 0 0-.066-.079.16.16 0 0 0-.095-.027.17.17 0 0 0-.142.068.3.3 0 0 0-.053.193.4.4 0 0 0 .023.139.2.2 0 0 0 .067.083.2.2 0 0 0 .1.027q.063 0 .106-.031a.2.2 0 0 0 .065-.091.2.2 0 0 1 .023-.046q.014-.018.044-.018a.06.06 0 0 1 .044.018.06.06 0 0 1 .019.045' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 7.122 25.977)'/%3E%3Cpath d='M.622-.215a.2.2 0 0 1-.033.117.23.23 0 0 1-.098.081.4.4 0 0 1-.153.029.34.34 0 0 1-.175-.04.23.23 0 0 1-.079-.077.17.17 0 0 1-.031-.093q0-.027.019-.045a.06.06 0 0 1 .046-.019.06.06 0 0 1 .039.014.1.1 0 0 1 .027.044.3.3 0 0 0 .03.057q.015.023.044.038.03.015.076.015.065 0 .105-.03a.09.09 0 0 0 .04-.075.08.08 0 0 0-.022-.058.14.14 0 0 0-.056-.034 1 1 0 0 0-.092-.025.7.7 0 0 1-.129-.042.2.2 0 0 1-.083-.066.17.17 0 0 1-.03-.104q0-.058.032-.105a.2.2 0 0 1 .093-.07.4.4 0 0 1 .144-.025q.066 0 .114.016a.3.3 0 0 1 .08.044.2.2 0 0 1 .046.057q.015.03.015.058a.07.07 0 0 1-.018.046.06.06 0 0 1-.046.021q-.025 0-.038-.012a.2.2 0 0 1-.028-.041.2.2 0 0 0-.047-.063Q.387-.625.326-.625a.15.15 0 0 0-.09.025q-.035.024-.035.059 0 .021.012.037a.1.1 0 0 0 .032.027.4.4 0 0 0 .111.036q.06.015.11.031.048.018.083.042a.2.2 0 0 1 .054.062.2.2 0 0 1 .019.091' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 13.339 25.977)'/%3E%3Cpath d='m.184-.633.162.48.163-.483q.013-.038.019-.053a.062.062 0 0 1 .061-.039q.018 0 .034.009a.1.1 0 0 1 .025.025q.009.015.009.031L.654-.64l-.007.025-.009.024-.173.468-.019.051a.2.2 0 0 1-.021.042.1.1 0 0 1-.033.03.1.1 0 0 1-.049.012.1.1 0 0 1-.05-.011A.1.1 0 0 1 .26-.03a.2.2 0 0 1-.021-.042L.22-.123.05-.587.041-.612.033-.638.03-.662q0-.025.02-.046a.07.07 0 0 1 .05-.02q.037 0 .053.023.015.023.031.072' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 18.94 25.977)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='M.688-.226a.2.2 0 0 1-.017.074.28.28 0 0 1-.145.14.412.412 0 0 1-.234.013.28.28 0 0 1-.202-.168.468.468 0 0 1-.04-.19q0-.086.025-.155a.319.319 0 0 1 .182-.191.4.4 0 0 1 .134-.025q.087 0 .155.035a.3.3 0 0 1 .104.085.17.17 0 0 1 .036.097.06.06 0 0 1-.018.044.06.06 0 0 1-.042.019.06.06 0 0 1-.042-.013.2.2 0 0 1-.031-.046.2.2 0 0 0-.066-.079.16.16 0 0 0-.095-.027.17.17 0 0 0-.142.068.3.3 0 0 0-.053.193.4.4 0 0 0 .023.139.2.2 0 0 0 .067.083.2.2 0 0 0 .1.027q.063 0 .106-.031a.2.2 0 0 0 .065-.091.2.2 0 0 1 .023-.046q.014-.018.044-.018a.06.06 0 0 1 .044.018.06.06 0 0 1 .019.045' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 7.122 25.977)'/%3E%3Cpath d='M.622-.215a.2.2 0 0 1-.033.117.23.23 0 0 1-.098.081.4.4 0 0 1-.153.029.34.34 0 0 1-.175-.04.23.23 0 0 1-.079-.077.17.17 0 0 1-.031-.093q0-.027.019-.045a.06.06 0 0 1 .046-.019.06.06 0 0 1 .039.014.1.1 0 0 1 .027.044.3.3 0 0 0 .03.057q.015.023.044.038.03.015.076.015.065 0 .105-.03a.09.09 0 0 0 .04-.075.08.08 0 0 0-.022-.058.14.14 0 0 0-.056-.034 1 1 0 0 0-.092-.025.7.7 0 0 1-.129-.042.2.2 0 0 1-.083-.066.17.17 0 0 1-.03-.104q0-.058.032-.105a.2.2 0 0 1 .093-.07.4.4 0 0 1 .144-.025q.066 0 .114.016a.3.3 0 0 1 .08.044.2.2 0 0 1 .046.057q.015.03.015.058a.07.07 0 0 1-.018.046.06.06 0 0 1-.046.021q-.025 0-.038-.012a.2.2 0 0 1-.028-.041.2.2 0 0 0-.047-.063Q.387-.625.326-.625a.15.15 0 0 0-.09.025q-.035.024-.035.059 0 .021.012.037a.1.1 0 0 0 .032.027.4.4 0 0 0 .111.036q.06.015.11.031.048.018.083.042a.2.2 0 0 1 .054.062.2.2 0 0 1 .019.091' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 13.339 25.977)'/%3E%3Cpath d='m.184-.633.162.48.163-.483q.013-.038.019-.053a.062.062 0 0 1 .061-.039q.018 0 .034.009a.1.1 0 0 1 .025.025q.009.015.009.031L.654-.64l-.007.025-.009.024-.173.468-.019.051a.2.2 0 0 1-.021.042.1.1 0 0 1-.033.03.1.1 0 0 1-.049.012.1.1 0 0 1-.05-.011A.1.1 0 0 1 .26-.03a.2.2 0 0 1-.021-.042L.22-.123.05-.587.041-.612.033-.638.03-.662q0-.025.02-.046a.07.07 0 0 1 .05-.02q.037 0 .053.023.015.023.031.072' style='fill-rule:nonzero' transform='matrix(8.39799 0 0 12.455 18.94 25.977)'/%3E%3C/svg%3E\")}.ag-icon-cut:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m19 3-6 6 2 2 7-7V3m-10 9.5a.503.503 0 0 1-.5-.5c0-.274.226-.5.5-.5s.5.226.5.5-.226.5-.5.5M6 20c-1.097 0-2-.903-2-2a2 2 0 0 1 2-2c1.097 0 2 .903 2 2a2 2 0 0 1-2 2M6 8c-1.097 0-2-.903-2-2a2 2 0 0 1 2-2c1.097 0 2 .903 2 2a2 2 0 0 1-2 2m3.64-.36c.23-.5.36-1.05.36-1.64 0-2.194-1.806-4-4-4S2 3.806 2 6s1.806 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.194 0-4 1.806-4 4s1.806 4 4 4 4-1.806 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1z' style='fill-rule:nonzero' transform='translate(4 4)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='m19 3-6 6 2 2 7-7V3m-10 9.5a.503.503 0 0 1-.5-.5c0-.274.226-.5.5-.5s.5.226.5.5-.226.5-.5.5M6 20c-1.097 0-2-.903-2-2a2 2 0 0 1 2-2c1.097 0 2 .903 2 2a2 2 0 0 1-2 2M6 8c-1.097 0-2-.903-2-2a2 2 0 0 1 2-2c1.097 0 2 .903 2 2a2 2 0 0 1-2 2m3.64-.36c.23-.5.36-1.05.36-1.64 0-2.194-1.806-4-4-4S2 3.806 2 6s1.806 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.194 0-4 1.806-4 4s1.806 4 4 4 4-1.806 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1z' style='fill-rule:nonzero' transform='translate(4 4)'/%3E%3C/svg%3E\")}.ag-icon-desc:before,.ag-icon-down:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Edesc%3C/title%3E%3Cpath d='m26.667 16-1.88-1.88-7.453 7.44V5.333h-2.667V21.56l-7.44-7.453L5.334 16l10.667 10.667L26.668 16z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Edesc%3C/title%3E%3Cpath d='m26.667 16-1.88-1.88-7.453 7.44V5.333h-2.667V21.56l-7.44-7.453L5.334 16l10.667 10.667L26.668 16z'/%3E%3C/svg%3E\")}.ag-icon-excel:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='m.052-.139.16-.234-.135-.208a.4.4 0 0 1-.028-.052.1.1 0 0 1-.01-.042.05.05 0 0 1 .018-.037.07.07 0 0 1 .045-.016q.03 0 .047.018a1 1 0 0 1 .047.066l.107.174.115-.174.024-.038.019-.026.021-.015a.1.1 0 0 1 .027-.005.06.06 0 0 1 .044.016.05.05 0 0 1 .018.039q0 .033-.038.089l-.141.211.152.234a.3.3 0 0 1 .03.051.1.1 0 0 1 .009.038.1.1 0 0 1-.008.031.1.1 0 0 1-.024.023.1.1 0 0 1-.034.008.1.1 0 0 1-.035-.008.1.1 0 0 1-.023-.022L.427-.067.301-.265l-.134.204-.022.034-.016.019a.1.1 0 0 1-.022.015.1.1 0 0 1-.03.005.06.06 0 0 1-.044-.016.06.06 0 0 1-.017-.047q0-.036.036-.088' style='fill-rule:nonzero' transform='matrix(17.82892 0 0 16.50777 10.371 25.928)'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M384 131.9c-7.753-8.433-110.425-128.473-114.9-133L48-.1C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48zm-35.9 2.1H257V27.9zM30 479V27h200l1 105c0 13.3-1.3 29 12 29h111l1 318z' style='fill-rule:nonzero' transform='matrix(.06285 0 0 .06285 3.934 -.054)'/%3E%3Cpath d='m.052-.139.16-.234-.135-.208a.4.4 0 0 1-.028-.052.1.1 0 0 1-.01-.042.05.05 0 0 1 .018-.037.07.07 0 0 1 .045-.016q.03 0 .047.018a1 1 0 0 1 .047.066l.107.174.115-.174.024-.038.019-.026.021-.015a.1.1 0 0 1 .027-.005.06.06 0 0 1 .044.016.05.05 0 0 1 .018.039q0 .033-.038.089l-.141.211.152.234a.3.3 0 0 1 .03.051.1.1 0 0 1 .009.038.1.1 0 0 1-.008.031.1.1 0 0 1-.024.023.1.1 0 0 1-.034.008.1.1 0 0 1-.035-.008.1.1 0 0 1-.023-.022L.427-.067.301-.265l-.134.204-.022.034-.016.019a.1.1 0 0 1-.022.015.1.1 0 0 1-.03.005.06.06 0 0 1-.044-.016.06.06 0 0 1-.017-.047q0-.036.036-.088' style='fill-rule:nonzero' transform='matrix(17.82892 0 0 16.50777 10.371 25.928)'/%3E%3C/svg%3E\")}.ag-icon-expanded:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eexpanded%3C/title%3E%3Cpath d='M20.94 9.88 19.06 8l-8 8 8 8 1.88-1.88L14.833 16z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eexpanded%3C/title%3E%3Cpath d='M20.94 9.88 19.06 8l-8 8 8 8 1.88-1.88L14.833 16z'/%3E%3C/svg%3E\")}.ag-icon-eye-slash:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye-slash%3C/title%3E%3Cpath d='M21.106 15.088A5.19 5.19 0 0 0 16 10.814a5.17 5.17 0 0 0-3.668 1.522L9.866 9.868a12.2 12.2 0 0 1 6.133-1.646c5.186 0 9.614 3.225 11.408 7.778a12.34 12.34 0 0 1-5.276 6.133l-2.468-2.466a5.17 5.17 0 0 0 1.449-2.802h-2.123c-.148.508-.42.964-.782 1.33l-1.33-1.33h-2.514l2.196 2.196q-.272.049-.56.05a3.11 3.11 0 0 1-2.99-2.245h-2.123a5.19 5.19 0 0 0 7.3 3.836l2.247 2.247a12.2 12.2 0 0 1-4.434.828c-5.186 0-9.614-3.225-11.408-7.778a12.3 12.3 0 0 1 3.781-5.111l2.924 2.924a5.1 5.1 0 0 0-.404 1.275h4.206l-1.296-1.296a3.1 3.1 0 0 1 2.196-.903c1.404 0 2.587.924 2.976 2.199h2.13z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye-slash%3C/title%3E%3Cpath d='M21.106 15.088A5.19 5.19 0 0 0 16 10.814a5.17 5.17 0 0 0-3.668 1.522L9.866 9.868a12.2 12.2 0 0 1 6.133-1.646c5.186 0 9.614 3.225 11.408 7.778a12.34 12.34 0 0 1-5.276 6.133l-2.468-2.466a5.17 5.17 0 0 0 1.449-2.802h-2.123c-.148.508-.42.964-.782 1.33l-1.33-1.33h-2.514l2.196 2.196q-.272.049-.56.05a3.11 3.11 0 0 1-2.99-2.245h-2.123a5.19 5.19 0 0 0 7.3 3.836l2.247 2.247a12.2 12.2 0 0 1-4.434.828c-5.186 0-9.614-3.225-11.408-7.778a12.3 12.3 0 0 1 3.781-5.111l2.924 2.924a5.1 5.1 0 0 0-.404 1.275h4.206l-1.296-1.296a3.1 3.1 0 0 1 2.196-.903c1.404 0 2.587.924 2.976 2.199h2.13z'/%3E%3C/svg%3E\")}.ag-icon-eye:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye%3C/title%3E%3Cpath d='M16 8.222c-5.186 0-9.614 3.225-11.408 7.778 1.794 4.553 6.222 7.778 11.408 7.778S25.614 20.553 27.408 16C25.614 11.447 21.186 8.222 16 8.222m0 12.964c-2.862 0-5.186-2.324-5.186-5.186s2.324-5.186 5.186-5.186 5.186 2.324 5.186 5.186-2.324 5.186-5.186 5.186m0-8.297c-1.721 0-3.111 1.39-3.111 3.111s1.39 3.111 3.111 3.111 3.111-1.39 3.111-3.111-1.39-3.111-3.111-3.111'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eeye%3C/title%3E%3Cpath d='M16 8.222c-5.186 0-9.614 3.225-11.408 7.778 1.794 4.553 6.222 7.778 11.408 7.778S25.614 20.553 27.408 16C25.614 11.447 21.186 8.222 16 8.222m0 12.964c-2.862 0-5.186-2.324-5.186-5.186s2.324-5.186 5.186-5.186 5.186 2.324 5.186 5.186-2.324 5.186-5.186 5.186m0-8.297c-1.721 0-3.111 1.39-3.111 3.111s1.39 3.111 3.111 3.111 3.111-1.39 3.111-3.111-1.39-3.111-3.111-3.111'/%3E%3C/svg%3E\")}.ag-icon-filter:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Efilter%3C/title%3E%3Cpath d='M13.333 24h5.333v-2.667h-5.333zM4 8v2.667h24V8zm4 9.333h16v-2.667H8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Efilter%3C/title%3E%3Cpath d='M13.333 24h5.333v-2.667h-5.333zM4 8v2.667h24V8zm4 9.333h16v-2.667H8z'/%3E%3C/svg%3E\")}.ag-icon-first:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Efirst%3C/title%3E%3Cpath d='M24.273 22.12 18.153 16l6.12-6.12L22.393 8l-8 8 8 8zM7.727 8h2.667v16H7.727z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Efirst%3C/title%3E%3Cpath d='M24.273 22.12 18.153 16l6.12-6.12L22.393 8l-8 8 8 8zM7.727 8h2.667v16H7.727z'/%3E%3C/svg%3E\")}.ag-icon-group:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Egroup%3C/title%3E%3Cpath d='M18.667 21.333h8.889A3.555 3.555 0 0 1 24 24.889h-5.333zm8.888-7.111v3.556h-8.889v-3.556zM24 7.111a3.555 3.555 0 0 1 3.556 3.556h-16V7.111zm-8.889 17.778h-3.556v-3.556h3.556zm0-7.111h-3.556v-3.556h3.556zM8 10.667H4.444A3.555 3.555 0 0 1 8 7.111z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Egroup%3C/title%3E%3Cpath d='M18.667 21.333h8.889A3.555 3.555 0 0 1 24 24.889h-5.333zm8.888-7.111v3.556h-8.889v-3.556zM24 7.111a3.555 3.555 0 0 1 3.556 3.556h-16V7.111zm-8.889 17.778h-3.556v-3.556h3.556zm0-7.111h-3.556v-3.556h3.556zM8 10.667H4.444A3.555 3.555 0 0 1 8 7.111z'/%3E%3C/svg%3E\")}.ag-icon-last:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Elast%3C/title%3E%3Cpath d='m7.727 9.88 6.12 6.12-6.12 6.12L9.607 24l8-8-8-8zM21.607 8h2.667v16h-2.667z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Elast%3C/title%3E%3Cpath d='m7.727 9.88 6.12 6.12-6.12 6.12L9.607 24l8-8-8-8zM21.607 8h2.667v16h-2.667z'/%3E%3C/svg%3E\")}.ag-icon-left:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eleft%3C/title%3E%3Cpath d='M26.667 14.667H10.44l7.453-7.453L16 5.334 5.333 16.001 16 26.668l1.88-1.88-7.44-7.453h16.227v-2.667z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eleft%3C/title%3E%3Cpath d='M26.667 14.667H10.44l7.453-7.453L16 5.334 5.333 16.001 16 26.668l1.88-1.88-7.44-7.453h16.227v-2.667z'/%3E%3C/svg%3E\")}.ag-icon-linked:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Elinked%3C/title%3E%3Cpath d='M5.2 16a4.136 4.136 0 0 1 4.133-4.133h5.333V9.334H9.333c-3.68 0-6.667 2.987-6.667 6.667s2.987 6.667 6.667 6.667h5.333v-2.533H9.333A4.136 4.136 0 0 1 5.2 16.002zm5.467 1.333h10.667v-2.667H10.667zm12-8h-5.333v2.533h5.333c2.28 0 4.133 1.853 4.133 4.133s-1.853 4.133-4.133 4.133h-5.333v2.533h5.333c3.68 0 6.667-2.987 6.667-6.667s-2.987-6.667-6.667-6.667z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Elinked%3C/title%3E%3Cpath d='M5.2 16a4.136 4.136 0 0 1 4.133-4.133h5.333V9.334H9.333c-3.68 0-6.667 2.987-6.667 6.667s2.987 6.667 6.667 6.667h5.333v-2.533H9.333A4.136 4.136 0 0 1 5.2 16.002zm5.467 1.333h10.667v-2.667H10.667zm12-8h-5.333v2.533h5.333c2.28 0 4.133 1.853 4.133 4.133s-1.853 4.133-4.133 4.133h-5.333v2.533h5.333c3.68 0 6.667-2.987 6.667-6.667s-2.987-6.667-6.667-6.667z'/%3E%3C/svg%3E\")}.ag-icon-loading:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eloading%3C/title%3E%3Cpath d='m17.778 11.708 3.25-3.251 2.516 2.516-3.251 3.25h4.597v3.556h-4.597l3.251 3.25-2.516 2.516-3.25-3.251v4.597h-3.556v-4.597l-3.25 3.251-2.516-2.516 3.251-3.25H7.11v-3.556h4.597l-3.251-3.25 2.516-2.516 3.25 3.251V7.111h3.556zm-3.251 7.847h2.944l2.084-2.084v-2.944l-2.084-2.084h-2.944l-2.084 2.084v2.944z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eloading%3C/title%3E%3Cpath d='m17.778 11.708 3.25-3.251 2.516 2.516-3.251 3.25h4.597v3.556h-4.597l3.251 3.25-2.516 2.516-3.25-3.251v4.597h-3.556v-4.597l-3.25 3.251-2.516-2.516 3.251-3.25H7.11v-3.556h4.597l-3.251-3.25 2.516-2.516 3.25 3.251V7.111h3.556zm-3.251 7.847h2.944l2.084-2.084v-2.944l-2.084-2.084h-2.944l-2.084 2.084v2.944z'/%3E%3C/svg%3E\")}.ag-icon-maximize:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Emaximize%3C/title%3E%3Cpath d='M4 4h24v2.667H4z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Emaximize%3C/title%3E%3Cpath d='M4 4h24v2.667H4z'/%3E%3C/svg%3E\")}.ag-icon-menu:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Emenu%3C/title%3E%3Cpath d='M4 24h24v-2.667H4zm0-6.667h24v-2.667H4zM4 8v2.667h24V8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Emenu%3C/title%3E%3Cpath d='M4 24h24v-2.667H4zm0-6.667h24v-2.667H4zM4 8v2.667h24V8z'/%3E%3C/svg%3E\")}.ag-icon-menu-alt:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 26.667a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 24q0-1.1.784-1.883A2.57 2.57 0 0 1 16 21.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784m0-8a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 16q0-1.1.784-1.883A2.57 2.57 0 0 1 16 13.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784m0-8a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 8q0-1.1.784-1.883A2.57 2.57 0 0 1 16 5.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 26.667a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 24q0-1.1.784-1.883A2.57 2.57 0 0 1 16 21.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784m0-8a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 16q0-1.1.784-1.883A2.57 2.57 0 0 1 16 13.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784m0-8a2.57 2.57 0 0 1-1.883-.784A2.57 2.57 0 0 1 13.333 8q0-1.1.784-1.883A2.57 2.57 0 0 1 16 5.333q1.1 0 1.883.784.784.783.784 1.883t-.784 1.883a2.57 2.57 0 0 1-1.883.784'/%3E%3C/svg%3E\")}.ag-icon-minimize:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eminimize%3C/title%3E%3Cpath d='M8 25.333h16V28H8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eminimize%3C/title%3E%3Cpath d='M8 25.333h16V28H8z'/%3E%3C/svg%3E\")}.ag-icon-minus:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658H7.901v-2.658z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658H7.901v-2.658z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-next:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enext%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enext%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\")}.ag-icon-none:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enone%3C/title%3E%3Cpath d='M4 24h16v-2.667H4zM4 8v2.667h24V8zm0 9.333h24v-2.667H4z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enone%3C/title%3E%3Cpath d='M4 24h16v-2.667H4zM4 8v2.667h24V8zm0 9.333h24v-2.667H4z'/%3E%3C/svg%3E\")}.ag-icon-not-allowed:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enot-allowed%3C/title%3E%3Cpath d='M16 2.667C8.64 2.667 2.667 8.64 2.667 16S8.64 29.333 16 29.333 29.333 23.36 29.333 16 23.36 2.667 16 2.667M5.333 16c0-5.893 4.773-10.667 10.667-10.667 2.467 0 4.733.84 6.533 2.253L7.586 22.533A10.54 10.54 0 0 1 5.333 16M16 26.667c-2.467 0-4.733-.84-6.533-2.253L24.414 9.467A10.54 10.54 0 0 1 26.667 16c0 5.893-4.773 10.667-10.667 10.667'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Enot-allowed%3C/title%3E%3Cpath d='M16 2.667C8.64 2.667 2.667 8.64 2.667 16S8.64 29.333 16 29.333 29.333 23.36 29.333 16 23.36 2.667 16 2.667M5.333 16c0-5.893 4.773-10.667 10.667-10.667 2.467 0 4.733.84 6.533 2.253L7.586 22.533A10.54 10.54 0 0 1 5.333 16M16 26.667c-2.467 0-4.733-.84-6.533-2.253L24.414 9.467A10.54 10.54 0 0 1 26.667 16c0 5.893-4.773 10.667-10.667 10.667'/%3E%3C/svg%3E\")}.ag-icon-paste:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epaste%3C/title%3E%3Cpath d='M25.333 4H19.76C19.2 2.453 17.733 1.333 16 1.333S12.8 2.453 12.24 4H6.667A2.675 2.675 0 0 0 4 6.667V28c0 1.467 1.2 2.667 2.667 2.667h18.667c1.467 0 2.667-1.2 2.667-2.667V6.667C28.001 5.2 26.801 4 25.334 4zM16 4c.733 0 1.333.6 1.333 1.333s-.6 1.333-1.333 1.333-1.333-.6-1.333-1.333S15.267 4 16 4m9.333 24H6.666V6.667h2.667v4h13.333v-4h2.667z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epaste%3C/title%3E%3Cpath d='M25.333 4H19.76C19.2 2.453 17.733 1.333 16 1.333S12.8 2.453 12.24 4H6.667A2.675 2.675 0 0 0 4 6.667V28c0 1.467 1.2 2.667 2.667 2.667h18.667c1.467 0 2.667-1.2 2.667-2.667V6.667C28.001 5.2 26.801 4 25.334 4zM16 4c.733 0 1.333.6 1.333 1.333s-.6 1.333-1.333 1.333-1.333-.6-1.333-1.333S15.267 4 16 4m9.333 24H6.666V6.667h2.667v4h13.333v-4h2.667z'/%3E%3C/svg%3E\")}.ag-icon-pin:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epin%3C/title%3E%3Cpath d='m11.106 22.093-4.444 4.444-1.259-1.259 4.444-4.444zm5.872-16.63 9.618 9.62-.962.962-.962-.962-7.694 3.847 1.924 1.924-2.74 2.74-7.696-7.696 2.741-2.74 1.924 1.925 3.847-7.696-.962-.962z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epin%3C/title%3E%3Cpath d='m11.106 22.093-4.444 4.444-1.259-1.259 4.444-4.444zm5.872-16.63 9.618 9.62-.962.962-.962-.962-7.694 3.847 1.924 1.924-2.74 2.74-7.696-7.696 2.741-2.74 1.924 1.925 3.847-7.696-.962-.962z'/%3E%3C/svg%3E\")}.ag-icon-pivot:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epivot%3C/title%3E%3Cpath d='M26.667 30.223H5.334a3.556 3.556 0 0 1-3.556-3.556V5.334a3.556 3.556 0 0 1 3.556-3.556h21.333a3.556 3.556 0 0 1 3.556 3.556v21.333a3.556 3.556 0 0 1-3.556 3.556m-16-8.89H5.334v5.333h5.333zm16-7.11H12.444v12.444h14.223zm-9.15 6.85-2.039 2.037 2.039 2.039-1.257 1.257-3.295-3.296 3.295-3.295q.63.628 1.257 1.257zm-6.85-6.85H5.334v5.333h5.333zm15.74 3.816-1.257 1.256-2.039-2.037-2.037 2.037-1.257-1.256 3.295-3.296zM10.667 5.333H5.334v5.333h5.333zm8.889 0h-7.112v5.333h7.112zm7.111 0h-5.333v5.333h5.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Epivot%3C/title%3E%3Cpath d='M26.667 30.223H5.334a3.556 3.556 0 0 1-3.556-3.556V5.334a3.556 3.556 0 0 1 3.556-3.556h21.333a3.556 3.556 0 0 1 3.556 3.556v21.333a3.556 3.556 0 0 1-3.556 3.556m-16-8.89H5.334v5.333h5.333zm16-7.11H12.444v12.444h14.223zm-9.15 6.85-2.039 2.037 2.039 2.039-1.257 1.257-3.295-3.296 3.295-3.295q.63.628 1.257 1.257zm-6.85-6.85H5.334v5.333h5.333zm15.74 3.816-1.257 1.256-2.039-2.037-2.037 2.037-1.257-1.256 3.295-3.296zM10.667 5.333H5.334v5.333h5.333zm8.889 0h-7.112v5.333h7.112zm7.111 0h-5.333v5.333h5.333z'/%3E%3C/svg%3E\")}.ag-icon-plus:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658h-6.77v6.77h-2.658v-6.77h-6.77v-2.658h6.77v-6.77h2.658v6.77z' style='fill-rule:nonzero'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 32 32'%3E%3Cpath d='M6.572 6.572a13.32 13.32 0 0 0 0 18.856 13.32 13.32 0 0 0 18.856 0 13.32 13.32 0 0 0 0-18.856 13.32 13.32 0 0 0-18.856 0m17.527 8.099v2.658h-6.77v6.77h-2.658v-6.77h-6.77v-2.658h6.77v-6.77h2.658v6.77z' style='fill-rule:nonzero'/%3E%3C/svg%3E\")}.ag-icon-previous:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eprevious%3C/title%3E%3Cpath d='M20.94 9.88 19.06 8l-8 8 8 8 1.88-1.88L14.833 16z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eprevious%3C/title%3E%3Cpath d='M20.94 9.88 19.06 8l-8 8 8 8 1.88-1.88L14.833 16z'/%3E%3C/svg%3E\")}.ag-icon-right:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eright%3C/title%3E%3Cpath d='m16 5.333-1.88 1.88 7.44 7.453H5.333v2.667H21.56l-7.44 7.453 1.88 1.88 10.667-10.667L16 5.332z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eright%3C/title%3E%3Cpath d='m16 5.333-1.88 1.88 7.44 7.453H5.333v2.667H21.56l-7.44 7.453 1.88 1.88 10.667-10.667L16 5.332z'/%3E%3C/svg%3E\")}.ag-icon-save:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esave%3C/title%3E%3Cpath d='M25.333 16v9.333H6.666V16H3.999v9.333C3.999 26.8 5.199 28 6.666 28h18.667C26.8 28 28 26.8 28 25.333V16zm-8 .893 3.453-3.44 1.88 1.88L15.999 22l-6.667-6.667 1.88-1.88 3.453 3.44V4h2.667v12.893z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esave%3C/title%3E%3Cpath d='M25.333 16v9.333H6.666V16H3.999v9.333C3.999 26.8 5.199 28 6.666 28h18.667C26.8 28 28 26.8 28 25.333V16zm-8 .893 3.453-3.44 1.88 1.88L15.999 22l-6.667-6.667 1.88-1.88 3.453 3.44V4h2.667v12.893z'/%3E%3C/svg%3E\")}.ag-icon-small-down:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-down%3C/title%3E%3Cpath d='M9.333 12.667 16 19.334l6.667-6.667H9.334z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-down%3C/title%3E%3Cpath d='M9.333 12.667 16 19.334l6.667-6.667H9.334z'/%3E%3C/svg%3E\")}.ag-icon-small-left:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-left%3C/title%3E%3Cpath d='M19.333 9.333 12.666 16l6.667 6.667V9.334z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-left%3C/title%3E%3Cpath d='M19.333 9.333 12.666 16l6.667 6.667V9.334z'/%3E%3C/svg%3E\")}.ag-icon-small-right:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-right%3C/title%3E%3Cpath d='M12.667 22.667 19.334 16l-6.667-6.667v13.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-right%3C/title%3E%3Cpath d='M12.667 22.667 19.334 16l-6.667-6.667v13.333z'/%3E%3C/svg%3E\")}.ag-icon-small-up:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-up%3C/title%3E%3Cpath d='M9.333 19.333 16 12.666l6.667 6.667H9.334z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Esmall-up%3C/title%3E%3Cpath d='M9.333 19.333 16 12.666l6.667 6.667H9.334z'/%3E%3C/svg%3E\")}.ag-icon-tick:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etick%3C/title%3E%3Cpath d='m11.727 21.167-5.56-5.56-1.893 1.88 7.453 7.453 16-16-1.88-1.88z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etick%3C/title%3E%3Cpath d='m11.727 21.167-5.56-5.56-1.893 1.88 7.453 7.453 16-16-1.88-1.88z'/%3E%3C/svg%3E\")}.ag-icon-tree-closed:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-closed%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-closed%3C/title%3E%3Cpath d='m12.94 8-1.88 1.88L17.167 16l-6.107 6.12L12.94 24l8-8z'/%3E%3C/svg%3E\")}.ag-icon-tree-indeterminate:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-indeterminate%3C/title%3E%3Cpath d='M6.667 14.667h18.667v2.667H6.667z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-indeterminate%3C/title%3E%3Cpath d='M6.667 14.667h18.667v2.667H6.667z'/%3E%3C/svg%3E\")}.ag-icon-tree-open:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-open%3C/title%3E%3Cpath d='M22.12 11.06 16 17.167 9.88 11.06 8 12.94l8 8 8-8z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Etree-open%3C/title%3E%3Cpath d='M22.12 11.06 16 17.167 9.88 11.06 8 12.94l8 8 8-8z'/%3E%3C/svg%3E\")}.ag-icon-unlinked:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eunlinked%3C/title%3E%3Cpath d='M22.667 9.333h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133c0 1.907-1.307 3.507-3.08 3.973l1.947 1.947c2.173-1.107 3.667-3.32 3.667-5.92a6.67 6.67 0 0 0-6.667-6.667zm-1.334 5.334h-2.92l2.667 2.667h.253zM2.667 5.693 6.814 9.84A6.65 6.65 0 0 0 2.667 16a6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.334a4.136 4.136 0 0 1-4.133-4.133c0-2.12 1.613-3.867 3.68-4.093l2.76 2.76h-.973v2.667h3.64l3.027 3.027v2.307h2.307l5.347 5.333 1.68-1.68L4.362 4.002 2.669 5.695z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Eunlinked%3C/title%3E%3Cpath d='M22.667 9.333h-5.333v2.533h5.333a4.136 4.136 0 0 1 4.133 4.133c0 1.907-1.307 3.507-3.08 3.973l1.947 1.947c2.173-1.107 3.667-3.32 3.667-5.92a6.67 6.67 0 0 0-6.667-6.667zm-1.334 5.334h-2.92l2.667 2.667h.253zM2.667 5.693 6.814 9.84A6.65 6.65 0 0 0 2.667 16a6.67 6.67 0 0 0 6.667 6.667h5.333v-2.533H9.334a4.136 4.136 0 0 1-4.133-4.133c0-2.12 1.613-3.867 3.68-4.093l2.76 2.76h-.973v2.667h3.64l3.027 3.027v2.307h2.307l5.347 5.333 1.68-1.68L4.362 4.002 2.669 5.695z'/%3E%3C/svg%3E\")}.ag-icon-up:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Easc%3C/title%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Easc%3C/title%3E%3Cpath d='m5.333 16 1.88 1.88 7.453-7.44v16.227h2.667V10.44l7.44 7.453L26.666 16 15.999 5.333z'/%3E%3C/svg%3E\")}.ag-icon-grip:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Egrip%3C/title%3E%3Cpath d='M26.667 12H5.334v2.667h21.333zM5.333 20h21.333v-2.667H5.333z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctitle%3Egrip%3C/title%3E%3Cpath d='M26.667 12H5.334v2.667h21.333zM5.333 20h21.333v-2.667H5.333z'/%3E%3C/svg%3E\")}.ag-icon-settings:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30zm-9 4c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3M2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2zm9-4c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30zm-9 4c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3M2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2zm9-4c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3'/%3E%3C/svg%3E\")}";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconSetMaterial: import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconSetQuartzCSS = ".ag-icon:before{background-color:currentColor;content:\"\";display:block;height:var(--ag-icon-size);-webkit-mask-image:linear-gradient(#0000,#0000);mask-image:linear-gradient(#0000,#0000);-webkit-mask-size:contain;mask-size:contain;width:var(--ag-icon-size)}";
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare const iconSetQuartz: (args?: {
|
|
2
|
-
strokeWidth?: number;
|
|
3
|
-
}) => import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
4
|
-
export declare const iconSetQuartzLight: import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
5
|
-
export declare const iconSetQuartzRegular: import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
6
|
-
export declare const iconSetQuartzBold: import("../../../../Part").Part<import("../../../core/core-css").CoreParams>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const inputStyleBaseCSS = ":where(input[class^=ag-][type=number]:not(.ag-number-field-input-stepper)){-moz-appearance:textfield;&::-webkit-inner-spin-button,&::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}}:where(input[class^=ag-]:not([type]),input[class^=ag-][type=text],input[class^=ag-][type=number],input[class^=ag-][type=tel],input[class^=ag-][type=date],input[class^=ag-][type=datetime-local],textarea[class^=ag-]){background-color:var(--ag-input-background-color);border:var(--ag-input-border);border-radius:var(--ag-input-border-radius);color:var(--ag-input-text-color);cursor:pointer;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;min-height:var(--ag-input-height);padding:0;&:where(:disabled){background-color:var(--ag-input-disabled-background-color);border:var(--ag-input-disabled-border);color:var(--ag-input-disabled-text-color)}&:where(:focus){background-color:var(--ag-input-focus-background-color);border:var(--ag-input-focus-border);box-shadow:var(--ag-input-focus-shadow);color:var(--ag-input-focus-text-color)}&:where(:invalid){background-color:var(--ag-input-invalid-background-color);border:var(--ag-input-invalid-border);color:var(--ag-input-invalid-text-color)}&:where(.invalid){background-color:var(--ag-input-invalid-background-color);border:var(--ag-input-invalid-border);color:var(--ag-input-invalid-text-color)}}&.ag-ltr :where(input[class^=ag-]:not([type]),input[class^=ag-][type=text],input[class^=ag-][type=number],input[class^=ag-][type=tel],input[class^=ag-][type=date],input[class^=ag-][type=datetime-local],textarea[class^=ag-]){padding-left:var(--ag-input-padding-start)}&.ag-rtl :where(input[class^=ag-]:not([type]),input[class^=ag-][type=text],input[class^=ag-][type=number],input[class^=ag-][type=tel],input[class^=ag-][type=date],input[class^=ag-][type=datetime-local],textarea[class^=ag-]){padding-right:var(--ag-input-padding-start)}";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const inputStyleUnderlinedCSS = ":where(input[class^=ag-]:not([type]),input[class^=ag-][type=text],input[class^=ag-][type=number],input[class^=ag-][type=tel],input[class^=ag-][type=date],input[class^=ag-][type=datetime-local],textarea[class^=ag-]){border-left:none;border-right:none;border-top:none}";
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import type { BorderValue, ColorValue, LengthValue, ShadowValue } from '../../../theme-types';
|
|
2
|
-
export type InputStyleParams = {
|
|
3
|
-
/**
|
|
4
|
-
* Background color for text inputs
|
|
5
|
-
*/
|
|
6
|
-
inputBackgroundColor: ColorValue;
|
|
7
|
-
/**
|
|
8
|
-
* Border around text inputs (or underneath, if using the underlined input style)
|
|
9
|
-
*/
|
|
10
|
-
inputBorder: BorderValue;
|
|
11
|
-
/**
|
|
12
|
-
* Corner radius of text inputs
|
|
13
|
-
*/
|
|
14
|
-
inputBorderRadius: LengthValue;
|
|
15
|
-
/**
|
|
16
|
-
* Background color for disabled text inputs
|
|
17
|
-
*/
|
|
18
|
-
inputDisabledBackgroundColor: ColorValue;
|
|
19
|
-
/**
|
|
20
|
-
* Border around disabled text inputs (or underneath, if using the underlined input style)
|
|
21
|
-
*/
|
|
22
|
-
inputDisabledBorder: BorderValue;
|
|
23
|
-
/**
|
|
24
|
-
* Color of text within disabled text inputs
|
|
25
|
-
*/
|
|
26
|
-
inputDisabledTextColor: ColorValue;
|
|
27
|
-
/**
|
|
28
|
-
* Background color for focussed text inputs
|
|
29
|
-
*/
|
|
30
|
-
inputFocusBackgroundColor: ColorValue;
|
|
31
|
-
/**
|
|
32
|
-
* Border around focussed text inputs (or underneath, if using the underlined input style)
|
|
33
|
-
*/
|
|
34
|
-
inputFocusBorder: BorderValue;
|
|
35
|
-
/**
|
|
36
|
-
* Shadow around focussed text inputs
|
|
37
|
-
*/
|
|
38
|
-
inputFocusShadow: ShadowValue;
|
|
39
|
-
/**
|
|
40
|
-
* Color of text within focussed text inputs
|
|
41
|
-
*/
|
|
42
|
-
inputFocusTextColor: ColorValue;
|
|
43
|
-
/**
|
|
44
|
-
* Minimum height of text inputs
|
|
45
|
-
*/
|
|
46
|
-
inputHeight: LengthValue;
|
|
47
|
-
/**
|
|
48
|
-
* Background color for text inputs in an invalid state
|
|
49
|
-
*/
|
|
50
|
-
inputInvalidBackgroundColor: ColorValue;
|
|
51
|
-
/**
|
|
52
|
-
* Border around text inputs in an invalid state (or underneath, if using the underlined input style)
|
|
53
|
-
*/
|
|
54
|
-
inputInvalidBorder: BorderValue;
|
|
55
|
-
/**
|
|
56
|
-
* Color of text within text inputs in an invalid state
|
|
57
|
-
*/
|
|
58
|
-
inputInvalidTextColor: ColorValue;
|
|
59
|
-
/**
|
|
60
|
-
* Padding at the start of text in text inputs
|
|
61
|
-
*/
|
|
62
|
-
inputPaddingStart: LengthValue;
|
|
63
|
-
/**
|
|
64
|
-
* Color of text within text inputs
|
|
65
|
-
*/
|
|
66
|
-
inputTextColor: ColorValue;
|
|
67
|
-
};
|
|
68
|
-
export declare const inputStyleBase: import("../../../Part").Part<import("../../core/core-css").CoreParams & InputStyleParams>;
|
|
69
|
-
export declare const inputStyleBordered: import("../../../Part").Part<import("../../core/core-css").CoreParams & InputStyleParams>;
|
|
70
|
-
export declare const inputStyleUnderlined: import("../../../Part").Part<import("../../core/core-css").CoreParams & InputStyleParams>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const tabStyleBaseCSS = ".ag-tabs-header{background-color:var(--ag-tab-bar-background-color);border-bottom:var(--ag-tab-bar-border);display:flex;gap:var(--ag-tab-spacing);padding:var(--ag-tab-bar-top-padding) var(--ag-tab-bar-horizontal-padding) 0}.ag-tabs-header-wrapper{display:flex;.ag-tabs-header{flex:1}}.ag-tabs-close-button-wrapper{border:0;padding:var(--ag-spacing)}&.ag-ltr .ag-tabs-close-button-wrapper{border-right:1px solid var(--ag-border-color)}&.ag-rtl .ag-tabs-close-button-wrapper{border-left:1px solid var(--ag-border-color)}.ag-tabs-close-button{background-color:unset;border:0;cursor:pointer;padding:0}.ag-tab{align-items:center;background-color:var(--ag-tab-background-color);border-left:var(--ag-tab-selected-border-width) solid transparent;border-right:var(--ag-tab-selected-border-width) solid transparent;color:var(--ag-tab-text-color);cursor:pointer;display:flex;flex:1;justify-content:center;padding:var(--ag-tab-top-padding) var(--ag-tab-horizontal-padding) var(--ag-tab-bottom-padding);position:relative;&:hover{background-color:var(--ag-tab-hover-background-color);color:var(--ag-tab-hover-text-color)}&.ag-tab-selected{background-color:var(--ag-tab-selected-background-color);color:var(--ag-tab-selected-text-color)}&:after{background-color:var(--ag-tab-selected-underline-color);bottom:0;content:\"\";display:block;height:var(--ag-tab-selected-underline-width);left:0;opacity:0;position:absolute;right:0;transition:opacity var(--ag-tab-selected-underline-transition-duration)}&.ag-tab-selected:after{opacity:1}&:focus-visible{box-shadow:inset var(--ag-focus-shadow)}}&.ag-ltr .ag-tab{&.ag-tab-selected{&:not(:first-of-type){border-left-color:var(--ag-tab-selected-border-color)}&:not(:last-of-type){border-right-color:var(--ag-tab-selected-border-color)}}}&.ag-rtl .ag-tab{&.ag-tab-selected{&:not(:first-of-type){border-right-color:var(--ag-tab-selected-border-color)}&:not(:last-of-type){border-left-color:var(--ag-tab-selected-border-color)}}}";
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
import type { BorderValue, ColorValue, DurationValue, LengthValue } from '../../../theme-types';
|
|
2
|
-
export type TabStyleParams = {
|
|
3
|
-
/**
|
|
4
|
-
* Background color of tabs
|
|
5
|
-
*/
|
|
6
|
-
tabBackgroundColor: ColorValue;
|
|
7
|
-
/**
|
|
8
|
-
* Background color of the container for tabs
|
|
9
|
-
*/
|
|
10
|
-
tabBarBackgroundColor: ColorValue;
|
|
11
|
-
/**
|
|
12
|
-
* Border below the container for tabs
|
|
13
|
-
*/
|
|
14
|
-
tabBarBorder: BorderValue;
|
|
15
|
-
/**
|
|
16
|
-
* Padding at the left and right of the container for tabs
|
|
17
|
-
*/
|
|
18
|
-
tabBarHorizontalPadding: LengthValue;
|
|
19
|
-
/**
|
|
20
|
-
* Padding at the top of the container for tabs
|
|
21
|
-
*/
|
|
22
|
-
tabBarTopPadding: LengthValue;
|
|
23
|
-
/**
|
|
24
|
-
* Padding at the bottom of the container for tabs
|
|
25
|
-
*/
|
|
26
|
-
tabBottomPadding: LengthValue;
|
|
27
|
-
/**
|
|
28
|
-
* Padding inside the top and bottom sides of the container for tabs
|
|
29
|
-
*/
|
|
30
|
-
tabHorizontalPadding: LengthValue;
|
|
31
|
-
/**
|
|
32
|
-
* Background color of tabs when hovered over
|
|
33
|
-
*/
|
|
34
|
-
tabHoverBackgroundColor: ColorValue;
|
|
35
|
-
/**
|
|
36
|
-
* Color of text within tabs when hovered over
|
|
37
|
-
*/
|
|
38
|
-
tabHoverTextColor: ColorValue;
|
|
39
|
-
/**
|
|
40
|
-
* Background color of selected tabs
|
|
41
|
-
*/
|
|
42
|
-
tabSelectedBackgroundColor: ColorValue;
|
|
43
|
-
/**
|
|
44
|
-
* Color of the border around selected tabs
|
|
45
|
-
*/
|
|
46
|
-
tabSelectedBorderColor: ColorValue;
|
|
47
|
-
/**
|
|
48
|
-
* Width of the border around selected tabs
|
|
49
|
-
*/
|
|
50
|
-
tabSelectedBorderWidth: LengthValue;
|
|
51
|
-
/**
|
|
52
|
-
* Color of text within the selected tabs
|
|
53
|
-
*/
|
|
54
|
-
tabSelectedTextColor: ColorValue;
|
|
55
|
-
/**
|
|
56
|
-
* Color of line drawn under selected tabs
|
|
57
|
-
*/
|
|
58
|
-
tabSelectedUnderlineColor: ColorValue;
|
|
59
|
-
/**
|
|
60
|
-
* Duration in seconds of the fade in/out transition for the line drawn under selected tabs
|
|
61
|
-
*/
|
|
62
|
-
tabSelectedUnderlineTransitionDuration: DurationValue;
|
|
63
|
-
/**
|
|
64
|
-
* Width of line drawn under selected tabs
|
|
65
|
-
*/
|
|
66
|
-
tabSelectedUnderlineWidth: LengthValue;
|
|
67
|
-
/**
|
|
68
|
-
* Spacing between tabs
|
|
69
|
-
*/
|
|
70
|
-
tabSpacing: LengthValue;
|
|
71
|
-
/**
|
|
72
|
-
* Color of text within tabs
|
|
73
|
-
*/
|
|
74
|
-
tabTextColor: ColorValue;
|
|
75
|
-
/**
|
|
76
|
-
* Padding at the top of the container for tabs
|
|
77
|
-
*/
|
|
78
|
-
tabTopPadding: LengthValue;
|
|
79
|
-
};
|
|
80
|
-
/**
|
|
81
|
-
* This base tab style adds no visual styling, it provides a base upon which a
|
|
82
|
-
* tab style can be built by setting the tab-related params
|
|
83
|
-
*/
|
|
84
|
-
export declare const tabStyleBase: import("../../../Part").Part<import("../../core/core-css").CoreParams & TabStyleParams>;
|
|
85
|
-
/**
|
|
86
|
-
* Tabs styled for the Quartz theme
|
|
87
|
-
*/
|
|
88
|
-
export declare const tabStyleQuartz: import("../../../Part").Part<import("../../core/core-css").CoreParams & TabStyleParams>;
|
|
89
|
-
/**
|
|
90
|
-
* Tabs styled for the Material theme
|
|
91
|
-
*/
|
|
92
|
-
export declare const tabStyleMaterial: import("../../../Part").Part<import("../../core/core-css").CoreParams & TabStyleParams>;
|
|
93
|
-
/**
|
|
94
|
-
* Tabs styled for the Alpine theme
|
|
95
|
-
*/
|
|
96
|
-
export declare const tabStyleAlpine: import("../../../Part").Part<import("../../core/core-css").CoreParams & TabStyleParams>;
|
|
97
|
-
/**
|
|
98
|
-
* Tabs where the selected tab appears raised and attached the the active
|
|
99
|
-
* content, like a rolodex or operating system tabs.
|
|
100
|
-
*/
|
|
101
|
-
export declare const tabStyleRolodex: import("../../../Part").Part<import("../../core/core-css").CoreParams & TabStyleParams>;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const themeQuartz: import("../../../Theme").Theme<import("../../core/core-css").CoreParams & import("../checkbox-style/checkbox-styles").CheckboxStyleParams & import("../tab-style/tab-styles").TabStyleParams & import("../input-style/input-styles").InputStyleParams>;
|
|
2
|
-
export declare const themeAlpine: import("../../../Theme").Theme<import("../../core/core-css").CoreParams & import("../checkbox-style/checkbox-styles").CheckboxStyleParams & import("../tab-style/tab-styles").TabStyleParams & import("../input-style/input-styles").InputStyleParams>;
|
|
3
|
-
export declare const themeBalham: import("../../../Theme").Theme<import("../../core/core-css").CoreParams & import("../checkbox-style/checkbox-styles").CheckboxStyleParams & import("../tab-style/tab-styles").TabStyleParams & import("../input-style/input-styles").InputStyleParams>;
|