sprintify-ui 0.0.190 → 0.0.192

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.
@@ -837,7 +837,7 @@ function firstColStyles(th: boolean): any {
837
837
  left += DETAIL_ROW_WIDTH;
838
838
  }
839
839
  return {
840
- zIndex: zIndex(th),
840
+ zIndex: zIndex(th) + 1,
841
841
  position: 'sticky',
842
842
  left: left + 'px',
843
843
  borderRight: horizontalScrolling.value ? '1px solid #e2e8f0' : 'none',
@@ -216,6 +216,7 @@ export interface DataIteratorSection {
216
216
  title: string;
217
217
  closeText: string;
218
218
  icon: string;
219
+ count?: number;
219
220
  opened?: boolean;
220
221
  }
221
222