Updated node modules

This commit is contained in:
2023-07-15 17:06:30 -05:00
parent 7ef1139ef8
commit 92b3795e10
2280 changed files with 319169 additions and 179621 deletions

104
node_modules/daisyui/src/lib/addPrefix.js generated vendored Normal file
View File

@@ -0,0 +1,104 @@
const Tokenizer = require("css-selector-tokenizer")
function itMatchesOne(arr, term) {
return arr.some((i) => term.search(i) >= 0)
}
function parseAttrSelector(node) {
const { content } = node
const regex =
/(^class|^id)([*^?~|$=]*)+(?:("\s*)([^"\\]*?(?:\\.[^"\\]*)*?)(\s*")|('\s*)([^'\\]*?(?:\\.[^'\\]*)*?)(\s*'))/i
const [type, operator, head, classes, foot] = content.split(regex).filter((part) => part)
return {
type,
operator,
head,
classes: classes ? classes.split(" ").map((c) => c.replace(/"|'/g, "")) : [],
foot,
}
}
function attrStringify({ type, operator, head, classes, foot }) {
return `${type}${operator || ""}${head || ""}${classes.join(" ")}${foot || ""}`
}
function prefixNode(node, prefix) {
if (["class", "id"].includes(node.type)) {
return {
...node,
name: `${prefix}${node.name}`,
}
}
if (["attribute"].includes(node.type) && node.content) {
const { type, operator, head, classes, foot } = parseAttrSelector(node)
if (!["class", "id"].includes(type)) return node
return {
...node,
content: attrStringify({
type,
operator,
head,
classes: classes.map((cls) => `${prefix}${cls}`),
foot,
}),
}
}
return node
}
function iterateSelectorNodes(selector, options) {
const { prefix, ignore } = options
return {
...selector,
nodes: selector.nodes.map((node) => {
if (["selector", "nested-pseudo-class"].includes(node.type)) {
return iterateSelectorNodes(node, options)
}
if (itMatchesOne(ignore, Tokenizer.stringify(node))) return node
return prefixNode(node, prefix)
}),
}
}
/**
* @type {import('postcss').PluginCreator}
*/
module.exports = (opts = {}) => {
const { prefix, ignore } = {
prefix: "",
ignore: [],
...opts,
}
if (typeof prefix !== "string") {
throw new Error("prefix option should be of type string.")
}
if (!Array.isArray(ignore)) {
throw new Error("ignore options should be an Array.")
}
if (!prefix.length) return
return {
postcssPlugin: "addprefix",
Root(root, postcss) {
root.walkRules((rule) => {
const parsed = Tokenizer.parse(rule.selector)
const selector = iterateSelectorNodes(parsed, { prefix, ignore })
rule.selector = Tokenizer.stringify(selector)
})
},
}
}
module.exports.postcss = true

45
node_modules/daisyui/src/lib/responsiveRegex.js generated vendored Normal file
View File

@@ -0,0 +1,45 @@
// regext for all daisyUI colors
// ((primary|secondary|accent|neutral)(-focus|-content|))|((info|success|warning|error)(-content|))|(base)(-100|-200|-300|-content)
// regex for all Tailwind CSS color utilities
// (bg|to|via|from|text|ring|fill|caret|stroke|border|divide|accent|shadow|outline|decoration|placeholder|ring-offset)
module.exports = [
{
pattern: /.*/,
},
{
// responsive utilites for daisyUI responsive modifiers
pattern: /.(sm|md|lg|xl)/,
variants: ["sm", "md", "lg", "xl"],
},
{
// responsive utilites for daisyUI components
pattern:
/(drawer-open|modal-middle|modal-top|modal-bottom|card-side|card-compact|card-normal|stats)/,
variants: ["sm", "md", "lg", "xl"],
},
{
// color utilities for daisyUI colors
pattern:
/(bg|to|via|from|text|fill|stroke|border|outline)-((primary|secondary|accent|neutral)(-focus|-content|))|((info|success|warning|error)(-content|))|(base)(-100|-200|-300|-content)/,
variants: [
// "first",
// "last",
// "odd",
// "even",
// "visited",
// "checked",
// "empty",
// "read-only",
// "group-hover",
// "group-focus",
// "focus-within",
"hover",
"focus",
// "focus-visible",
// "active",
// "disabled",
],
},
]