Directives ট্রান্সফর্মার
@apply, @screen এবং theme() directives-এর জন্য UnoCSS ট্রান্সফর্মার: @unocss/transformer-directives।
ইনস্টলেশন
pnpm add -D @unocss/transformer-directivesyarn add -D @unocss/transformer-directivesnpm install -D @unocss/transformer-directivesbun add -D @unocss/transformer-directivesimport transformerDirectives from '@unocss/transformer-directives'
import { defineConfig } from 'unocss'
export default defineConfig({
// ...
transformers: [
transformerDirectives(),
],
})TIP
এই preset unocss প্যাকেজে অন্তর্ভুক্ত, আপনি সেখান থেকেও import করতে পারেন:
import { transformerDirectives } from 'unocss'ব্যবহার
@apply
.custom-div {
@apply text-center my-0 font-medium;
}এভাবে রূপান্তরিত হবে:
.custom-div {
margin-top: 0rem;
margin-bottom: 0rem;
text-align: center;
font-weight: 500;
}--at-apply
vanilla CSS-এর সাথে সামঞ্জস্যপূর্ণ করতে, আপনি @apply directive প্রতিস্থাপন করতে CSS custom properties ব্যবহার করতে পারেন:
.custom-div {
--at-apply: text-center my-0 font-medium;
}এই ফিচারটি কিছু aliases সহ ডিফল্টভাবে সক্রিয়, যা আপনি কনফিগার করতে পারেন বা নিষ্ক্রিয় করতে পারেন:
transformerDirectives({
// the defaults
applyVariable: ['--at-apply', '--uno-apply', '--uno'],
// or disable with:
// applyVariable: false
})quotes যোগ করা
: সহ rules ব্যবহার করতে, আপনাকে সম্পূর্ণ value quote করতে হবে:
.custom-div {
--at-apply: 'hover:text-red hover:font-bold';
/* or */
@apply 'hover:text-red hover:font-bold';
}@apply-এর পরে quotes ব্যবহার করা ঐচ্ছিক, কিছু formatters-এর আচরণ পূরণ করতে।
@screen
@screen directive যা আপনাকে theme.breakpoints দ্বারা নামে আপনার breakpoints reference করে media queries তৈরি করতে দেয়।
.grid {
--uno: grid grid-cols-2;
}
@screen xs {
.grid {
--uno: grid-cols-1;
}
}
@screen sm {
.grid {
--uno: grid-cols-3;
}
}
/* ... */
...;এভাবে রূপান্তরিত হবে:
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 640px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */Breakpoint variant সমর্থন
@screen lt, at variants-ও সমর্থন করে:
@screen lt-
.grid {
--uno: grid grid-cols-2;
}
@screen lt-xs {
.grid {
--uno: grid-cols-1;
}
}
@screen lt-sm {
.grid {
--uno: grid-cols-3;
}
}
/* ... */এভাবে রূপান্তরিত হবে:
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 319.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */@screen at-
.grid {
--uno: grid grid-cols-2;
}
@screen at-xs {
.grid {
--uno: grid-cols-1;
}
}
@screen at-xl {
.grid {
--uno: grid-cols-3;
}
}
@screen at-xxl {
.grid {
--uno: grid-cols-4;
}
}
/* ... */এভাবে রূপান্তরিত হবে:
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) and (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 1280px) and (max-width: 1535.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (min-width: 1536px) {
.grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
/* ... */theme()
আপনার theme config values-এ dot notation ব্যবহার করে অ্যাক্সেস করতে theme() function ব্যবহার করুন।
.btn-blue {
background-color: theme('colors.blue.500');
}এভাবে কম্পাইল হবে:
.btn-blue {
background-color: #3b82f6;
}icon()
icon utility-কে নির্দিষ্ট svg icon-এ রূপান্তর করতে icon() function ব্যবহার করুন।
WARNING
icon() @unocss/preset-icons-এর উপর নির্ভর করে এবং configuration ব্যবহার করবে, নিশ্চিত করুন যে আপনি এই preset যোগ করেছেন।
.icon {
background-image: icon('i-carbon-sun');
}এভাবে কম্পাইল হবে:
.icon {
background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 12.005a4 4 0 1 1-4 4a4.005 4.005 0 0 1 4-4m0-2a6 6 0 1 0 6 6a6 6 0 0 0-6-6M5.394 6.813L6.81 5.399l3.505 3.506L8.9 10.319zM2 15.005h5v2H2zm3.394 10.193L8.9 21.692l1.414 1.414l-3.505 3.506zM15 25.005h2v5h-2zm6.687-1.9l1.414-1.414l3.506 3.506l-1.414 1.414zm3.313-8.1h5v2h-5zm-3.313-6.101l3.506-3.506l1.414 1.414l-3.506 3.506zM15 2.005h2v5h-2z'/%3E%3C/svg%3E");
}যেহেতু icon ডিফল্টে fill color হিসাবে currentColor ব্যবহার করে, আপনি যদি icon-এর color customize করতে চান, আপনি icon('icon name', 'custom color') ব্যবহার করতে পারেন।
.icon {
background-image: icon('i-carbon-moon', '#fff');
background-image: icon('i-carbon-moon', 'theme("colors.red.500")'); /* use theme color */
}এভাবে কম্পাইল হবে:
.icon {
background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23fff' d='M13.503 5.414a15.076 15.076 0 0 0 11.593 18.194a11.1 11.1 0 0 1-7.975 3.39c-.138 0-.278.005-.418 0a11.094 11.094 0 0 1-3.2-21.584M14.98 3a1 1 0 0 0-.175.016a13.096 13.096 0 0 0 1.825 25.981c.164.006.328 0 .49 0a13.07 13.07 0 0 0 10.703-5.555a1.01 1.01 0 0 0-.783-1.565A13.08 13.08 0 0 1 15.89 4.38A1.015 1.015 0 0 0 14.98 3'/%3E%3C/svg%3E");
background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23ef4444' d='M13.503 5.414a15.076 15.076 0 0 0 11.593 18.194a11.1 11.1 0 0 1-7.975 3.39c-.138 0-.278.005-.418 0a11.094 11.094 0 0 1-3.2-21.584M14.98 3a1 1 0 0 0-.175.016a13.096 13.096 0 0 0 1.825 25.981c.164.006.328 0 .49 0a13.07 13.07 0 0 0 10.703-5.555a1.01 1.01 0 0 0-.783-1.565A13.08 13.08 0 0 1 15.89 4.38A1.015 1.015 0 0 0 14.98 3'/%3E%3C/svg%3E");
}লাইসেন্স
- MIT License © 2022-PRESENT hannoeru