@pequity/squirrel 1.0.26 → 1.0.28-beta.1
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/cjs/chunks/p-tabs.js +2 -1
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/tailwind.js +4333 -5
- package/dist/es/chunks/p-tabs.js +2 -1
- package/dist/es/index.js +2 -1
- package/dist/es/tailwind.js +4333 -5
- package/package.json +19 -19
- package/squirrel/utils/tailwind.ts +1 -1
|
@@ -27,7 +27,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
27
27
|
}, [
|
|
28
28
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(__props.tabs, (tabData) => {
|
|
29
29
|
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(tabData.to ? "RouterLink" : "div"), vue.mergeProps({
|
|
30
|
-
key: `tab-${tabData.name}
|
|
30
|
+
key: `tab-${tabData.name}`,
|
|
31
|
+
ref_for: true
|
|
31
32
|
}, tabData.to ? { to: tabData.to } : {}, {
|
|
32
33
|
class: [[__props.activeTab === tabData.name ? "border-primary text-primary" : "border-transparent text-p-gray-40"], "group cursor-pointer border-b-2 pb-3 hover:border-primary hover:text-primary"],
|
|
33
34
|
onClick: ($event) => _ctx.$emit("click:tab", tabData.name)
|
package/dist/cjs/index.js
CHANGED
|
@@ -802,7 +802,8 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
802
802
|
"show-filter-icon": col.filterable || col.sortable,
|
|
803
803
|
"tooltip-text": col.tooltip,
|
|
804
804
|
class: [{ "pl-2": i === 1 && _ctx.isFirstColFixed, "pr-2": i === _ctx.cols.length && _ctx.isLastColFixed }, "grow"],
|
|
805
|
-
"text-color": headerCellTextColor(col)
|
|
805
|
+
"text-color": headerCellTextColor(col),
|
|
806
|
+
ref_for: true
|
|
806
807
|
}, col.headerCellAttrs, {
|
|
807
808
|
onClickFilterIcon: ($event) => _ctx.$emit("click-filter-icon", $event, col)
|
|
808
809
|
}), null, 16, ["text", "filter-active", "show-filter-icon", "tooltip-text", "class", "text-color", "onClickFilterIcon"])
|