@turquoisehealth/pit-viper 2.179.1-dev.0 → 2.181.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/claude-plugin/.claude-plugin/plugin.json +8 -2
- package/claude-plugin/.mcp.json +8 -0
- package/claude-plugin/CLAUDE.md +71 -250
- package/claude-plugin/README.md +123 -69
- package/claude-plugin/skills/pit-viper/SKILL.md +180 -0
- package/claude-plugin/skills/pit-viper/references/design-language.md +80 -0
- package/claude-plugin/skills/pit-viper/references/design-rules.md +254 -0
- package/claude-plugin/skills/pit-viper/references/html-patterns.md +451 -0
- package/claude-plugin/skills/pit-viper/references/layout-patterns.md +359 -0
- package/claude-plugin/skills/pit-viper/references/patterns-core.md +97 -0
- package/claude-plugin/skills/pit-viper/references/theme-guide.md +149 -0
- package/claude-plugin/skills/pit-viper/references/vue-guidelines.md +513 -0
- package/package.json +3 -3
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +2 -2
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/filters/filterHelpers.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +5 -5
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +2 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +2 -2
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +2 -2
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2 -2
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
- package/claude-plugin/skills/audit/SKILL.md +0 -125
- package/claude-plugin/skills/create/SKILL.md +0 -389
- package/claude-plugin/skills/resolve/SKILL.md +0 -142
|
@@ -28,7 +28,7 @@ export declare const hasSetFilter: (colDef: ColDef) => boolean;
|
|
|
28
28
|
export declare const addHandlerToSetFilter: <T>(colDef: ColDef, handler: (params: SetFilterValuesFuncParams<T, FilterValueResponseOption>) => void) => ColDef<T>;
|
|
29
29
|
export declare const getSetFilter: (gridApi: GridApi, colDef: ColDef) => Promise<SetFilter | null>;
|
|
30
30
|
export declare const updateColumnSetFilterModel: (gridApi: GridApi, colDef: ColDef, newValues: (string | null)[] | null) => Promise<IMultiFilterModel | {
|
|
31
|
-
values: (string | null)[]
|
|
31
|
+
values: (string | null)[];
|
|
32
32
|
} | null>;
|
|
33
33
|
export declare const getSelectedValuesFromFilterModel: (colDef: ColDef, filterModel: FilterModel | null) => any;
|
|
34
34
|
export declare const isAdvancedFilterModel: (model: FilterModel | AdvancedFilterModel | null | undefined) => model is AdvancedFilterModel;
|
|
@@ -2544,8 +2544,8 @@ var ga = Symbol("SelectedItemsKey"), _a = Symbol("EnableCascadeSelectionKey"), v
|
|
|
2544
2544
|
let b = () => {
|
|
2545
2545
|
p.value = !p.value;
|
|
2546
2546
|
}, S = r(() => ({ paddingLeft: `${i.level * 12 + 12}px` })), C = r(() => {
|
|
2547
|
-
let e
|
|
2548
|
-
return
|
|
2547
|
+
let { level: e, config: t, itemClass: n, ...r } = i;
|
|
2548
|
+
return r;
|
|
2549
2549
|
}), w = r(() => g.value.length > 0 && i.level < ka), T = r(() => w.value ? l.value ? p.value : !0 : !1), D = r(() => p.value ? "chevron-down" : "chevron-right"), A = (e) => s && Array.isArray(s.value) ? s.value.some((t) => t.id === e.id) : c.value.includes(e.id), M = n, N = r(() => i.totalChildCount == null ? !1 : i.totalChildCount > g.value.length), P = async () => {
|
|
2550
2550
|
if (h.value) return;
|
|
2551
2551
|
if (!i.handleSeeMore) {
|
|
@@ -4062,14 +4062,14 @@ var Q = /* @__PURE__ */ function(e) {
|
|
|
4062
4062
|
return i !== void 0 && i > -1 ? r.getChildFilterInstance(i) : null;
|
|
4063
4063
|
}, Bs = async (e, t, n) => {
|
|
4064
4064
|
let r = t.field || "", i = await e.getColumnFilterInstance(r);
|
|
4065
|
-
if (i?.filterType == "set") return { values: n };
|
|
4065
|
+
if (i?.filterType == "set") return !n || n.length === 0 ? null : { values: n };
|
|
4066
4066
|
if (i?.filterType != "multi") return null;
|
|
4067
4067
|
let a = i.getModel();
|
|
4068
4068
|
a ||= {
|
|
4069
4069
|
filterType: "multi",
|
|
4070
4070
|
filterModels: Array(t.filterParams?.filters?.length).fill(null)
|
|
4071
4071
|
};
|
|
4072
|
-
let o = Es(t), s = {
|
|
4072
|
+
let o = Es(t), s = !n || n.length === 0 ? null : {
|
|
4073
4073
|
filterType: "set",
|
|
4074
4074
|
values: n
|
|
4075
4075
|
};
|
|
@@ -5661,7 +5661,7 @@ var Q = /* @__PURE__ */ function(e) {
|
|
|
5661
5661
|
le,
|
|
5662
5662
|
Pe
|
|
5663
5663
|
];
|
|
5664
|
-
je.setLicenseKey("Using_this_{AG_Grid}_Enterprise_key_{AG-
|
|
5664
|
+
je.setLicenseKey("Using_this_{AG_Grid}_Enterprise_key_{AG-084011}_in_excess_of_the_licence_granted_is_not_permitted___Please_report_misuse_to_legal@ag-grid.com___For_help_with_changing_this_key_please_contact_info@ag-grid.com___{Turquoise_Health}_is_granted_a_{Multiple_Applications}_Developer_License_for_{3}_Front-End_JavaScript_developers___All_Front-End_JavaScript_developers_need_to_be_licensed_in_addition_to_the_ones_working_with_{AG_Grid}_Enterprise___This_key_has_been_granted_a_Deployment_License_Add-on_for_{2}_Production_Environments___This_key_works_with_{AG_Grid}_Enterprise_versions_released_before_{16_August_2026}____[v3]_[01]_MTc4NjgzNDgwMDAwMA==3bfdb2557ede1aa3533ccbd05785addb");
|
|
5665
5665
|
let f = e;
|
|
5666
5666
|
f.debugMode && d.push(Ve);
|
|
5667
5667
|
let p = r(() => f.layout ? {} : {
|