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.
- package/dist/sprintify-ui.es.js +3523 -3508
- package/dist/style.css +1 -1
- package/dist/types/src/components/BaseBadge.vue.d.ts +2 -0
- package/dist/types/src/components/BaseDataIterator.vue.d.ts +2 -1
- package/dist/types/src/components/BaseDataTable.vue.d.ts +2 -4
- package/dist/types/src/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/BaseBadge.stories.js +26 -0
- package/src/components/BaseBadge.vue +17 -3
- package/src/components/BaseDataIterator.vue +2 -0
- package/src/components/BaseDataIteratorSectionButton.vue +6 -0
- package/src/components/BaseDataTable.stories.js +10 -2
- package/src/components/BaseDataTable.vue +23 -4
- package/src/components/BaseTable.vue +1 -1
- package/src/types/index.ts +1 -0
|
@@ -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',
|