mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-07 22:20:03 +00:00
## Summary Enable `better-tailwindcss/enforce-consistent-class-order` lint rule and auto-fix all 1027 violations across 263 files. Stacked on #9427. ## Changes - **What**: Sort Tailwind classes into consistent order via `eslint --fix` - Enable `enforce-consistent-class-order` as `'error'` in eslint config - Purely cosmetic reordering — no behavioral or visual changes ## Review Focus Mechanical auto-fix PR — all changes are class reordering only. This is the largest diff but lowest risk since it changes no class names, only their order. **Stack:** #9417 → #9427 → **this PR** Fixes #9300 (partial — 3 of 3 rules) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9428-fix-enable-enforce-consistent-class-order-tailwind-lint-rule-31a6d73d3650811c9065f5178ba3e724) by [Unito](https://www.unito.io)
45 lines
1.0 KiB
Vue
45 lines
1.0 KiB
Vue
<template>
|
|
<div class="flex flex-col gap-3 pb-3">
|
|
<h3 class="mt-2.5 text-center font-sans text-[15px] text-(--descrip-text)">
|
|
{{ t('maskEditor.paintBucketSettings') }}
|
|
</h3>
|
|
|
|
<SliderControl
|
|
:label="t('maskEditor.tolerance')"
|
|
:min="0"
|
|
:max="255"
|
|
:step="1"
|
|
:model-value="store.paintBucketTolerance"
|
|
@update:model-value="onToleranceChange"
|
|
/>
|
|
|
|
<SliderControl
|
|
:label="t('maskEditor.fillOpacity')"
|
|
:min="0"
|
|
:max="100"
|
|
:step="1"
|
|
:model-value="store.fillOpacity"
|
|
@update:model-value="onFillOpacityChange"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { useMaskEditorStore } from '@/stores/maskEditorStore'
|
|
|
|
import SliderControl from './controls/SliderControl.vue'
|
|
|
|
const { t } = useI18n()
|
|
const store = useMaskEditorStore()
|
|
|
|
const onToleranceChange = (value: number) => {
|
|
store.setPaintBucketTolerance(value)
|
|
}
|
|
|
|
const onFillOpacityChange = (value: number) => {
|
|
store.setFillOpacity(value)
|
|
}
|
|
</script>
|