Icard/angular-clarity-master(work.../node_modules/angular-gridster2/fesm2022/angular-gridster2.mjs.map

1 line
294 KiB
Plaintext
Raw Normal View History

2024-07-16 14:55:36 +00:00
{"version":3,"file":"angular-gridster2.mjs","sources":["../../../projects/angular-gridster2/src/lib/gridsterConfig.interface.ts","../../../projects/angular-gridster2/src/lib/gridsterCompact.service.ts","../../../projects/angular-gridster2/src/lib/gridsterConfig.constant.ts","../../../projects/angular-gridster2/src/lib/gridsterUtils.service.ts","../../../projects/angular-gridster2/src/lib/gridsterEmptyCell.service.ts","../../../projects/angular-gridster2/src/lib/gridsterRenderer.service.ts","../../../projects/angular-gridster2/src/lib/gridsterPreview.component.ts","../../../projects/angular-gridster2/src/lib/gridster.component.ts","../../../projects/angular-gridster2/src/lib/gridster.html","../../../projects/angular-gridster2/src/lib/gridsterPush.service.ts","../../../projects/angular-gridster2/src/lib/gridsterScroll.service.ts","../../../projects/angular-gridster2/src/lib/gridsterSwap.service.ts","../../../projects/angular-gridster2/src/lib/gridsterDraggable.service.ts","../../../projects/angular-gridster2/src/lib/gridsterPushResize.service.ts","../../../projects/angular-gridster2/src/lib/gridsterResizable.service.ts","../../../projects/angular-gridster2/src/lib/gridsterItem.component.ts","../../../projects/angular-gridster2/src/lib/gridsterItem.html","../../../projects/angular-gridster2/src/lib/gridsterItem.interface.ts","../../../projects/angular-gridster2/src/lib/gridster.interface.ts","../../../projects/angular-gridster2/src/lib/gridster.module.ts","../../../projects/angular-gridster2/src/public_api.ts","../../../projects/angular-gridster2/src/angular-gridster2.ts"],"sourcesContent":["import { GridsterComponentInterface } from './gridster.interface';\nimport {\n GridsterItem,\n GridsterItemComponentInterface\n} from './gridsterItem.interface';\n\nexport type gridTypes =\n | 'fit'\n | 'scrollVertical'\n | 'scrollHorizontal'\n | 'fixed'\n | 'verticalFixed'\n | 'horizontalFixed';\nexport type displayGrids = 'always' | 'onDrag&Resize' | 'none';\nexport type compactTypes =\n | 'none'\n | 'compactUp'\n | 'compactLeft'\n | 'compactUp&Left'\n | 'compactLeft&Up'\n | 'compactRight'\n | 'compactUp&Right'\n | 'compactRight&Up'\n | 'compactDown'\n | 'compactDown&Left'\n | 'compactLeft&Down'\n | 'compactDown&Right'\n | 'compactRight&Down';\n\nexport enum GridType {\n Fit = 'fit',\n ScrollVertical = 'scrollVertical',\n ScrollHorizontal = 'scrollHorizontal',\n Fixed = 'fixed',\n VerticalFixed = 'verticalFixed',\n HorizontalFixed = 'horizontalFixed'\n}\n\nexport enum DisplayGrid {\n Always = 'always',\n OnDragAndResize = 'onDrag&Resize',\n None = 'none'\n}\n\nexport enum CompactType {\n None = 'none',\n CompactUp = 'compactUp',\n CompactLeft = 'compactLeft',\n CompactUpAndLeft = 'compactUp&Left',\n CompactLeftAndUp = 'compactLeft&Up',\n CompactRight = 'compactRight',\n CompactUpAndRight = 'compactUp&Right',\n CompactRightAndUp = 'compactRight&Up',\n CompactDown = 'compactDown',\n CompactDownAndLeft = 'compactDown&Left',\n CompactLeftAndDown = 'compactLeft&Down',\n CompactDownAndRight = 'compactDown&Right',\n CompactRightAndDown = 'compactRight&Down'\n}\n\nexport enum DirTypes {\n LTR = 'ltr',\n RTL = 'rtl'\n}\n\nexport type dirTypes = 'ltr' | 'rtl';\n\nexport interface GridsterConfig {\n gridType?: gridTypes;\n scale?: number;\n fixedColWidth?: number;\n fixedRowHeight?: number;\n keepFixedHeightInMobile?: boolean;\n keepFixedWidthInMobile?: boolean;\n setGridSize?: boolean;\n compactType?: compactTypes;\n mobileBreakpoint?: number;\n allowMultiLayer?: boolean;\n defaultLayerIndex?: number;\n maxLayerIndex?: number;\n baseLayerIndex?: number;\n minCols?: number;\n maxCols?: number;\n minRows?: number;\n maxRows?: number;\n defaultItemCols?: number;\n defaultItemRows?: number;\n maxItemCols?: number;\n maxItemRows?: number;\n minItemCols?: number;\n minItemRows?: number;\n minItemArea?: number;\n maxItemArea?: number;\n addEmptyRowsCount?: number;\n rowHeightRatio?: number;\n margin?: number;\n outerMargin?: boolean;\n outerMarginTop?: number | null;\n outerM