tailwind-to-style 2.9.2 → 2.10.0-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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * tailwind-to-style v2.9.2
2
+ * tailwind-to-style v2.10.0-beta.1
3
3
  * Convert tailwind classes to inline style
4
4
  *
5
5
  * @author Bigetion
@@ -19,6 +19,14 @@ var tailwindToStyle = (function (exports) {
19
19
  custom: "custom_value"
20
20
  };
21
21
  },
22
+ animation: {
23
+ none: "none",
24
+ spin: "spin 1s linear infinite",
25
+ ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
26
+ pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
27
+ bounce: "bounce 1s infinite",
28
+ custom: "custom_value"
29
+ },
22
30
  aspectRatio: {
23
31
  auto: "auto",
24
32
  square: "1 / 1",
@@ -1503,6 +1511,75 @@ var tailwindToStyle = (function (exports) {
1503
1511
  100: "100",
1504
1512
  auto: "auto",
1505
1513
  custom: "custom_value"
1514
+ },
1515
+ keyframes: {
1516
+ spin: {
1517
+ "0%": {
1518
+ transform: "rotate(0deg)"
1519
+ },
1520
+ "100%": {
1521
+ transform: "rotate(360deg)"
1522
+ }
1523
+ },
1524
+ ping: {
1525
+ "75%, 100%": {
1526
+ transform: "scale(2)",
1527
+ opacity: "0"
1528
+ }
1529
+ },
1530
+ pulse: {
1531
+ "50%": {
1532
+ opacity: ".5"
1533
+ }
1534
+ },
1535
+ bounce: {
1536
+ "0%, 100%": {
1537
+ transform: "translateY(-25%)",
1538
+ animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
1539
+ },
1540
+ "50%": {
1541
+ transform: "none",
1542
+ animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
1543
+ }
1544
+ }
1545
+ },
1546
+ transitionProperty: {
1547
+ none: "none",
1548
+ all: "all",
1549
+ DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
1550
+ colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
1551
+ opacity: "opacity",
1552
+ shadow: "box-shadow",
1553
+ transform: "transform"
1554
+ },
1555
+ transitionTimingFunction: {
1556
+ DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
1557
+ linear: "linear",
1558
+ in: "cubic-bezier(0.4, 0, 1, 1)",
1559
+ out: "cubic-bezier(0, 0, 0.2, 1)",
1560
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
1561
+ },
1562
+ transitionDuration: {
1563
+ 0: "0s",
1564
+ 75: "75ms",
1565
+ 100: "100ms",
1566
+ 150: "150ms",
1567
+ 200: "200ms",
1568
+ 300: "300ms",
1569
+ 500: "500ms",
1570
+ 700: "700ms",
1571
+ 1000: "1000ms"
1572
+ },
1573
+ transitionDelay: {
1574
+ 0: "0s",
1575
+ 75: "75ms",
1576
+ 100: "100ms",
1577
+ 150: "150ms",
1578
+ 200: "200ms",
1579
+ 300: "300ms",
1580
+ 500: "500ms",
1581
+ 700: "700ms",
1582
+ 1000: "1000ms"
1506
1583
  }
1507
1584
  };
1508
1585
 
@@ -1517,6 +1594,348 @@ var tailwindToStyle = (function (exports) {
1517
1594
  vars
1518
1595
  };
1519
1596
 
1597
+ /**
1598
+ * TailwindCache singleton for managing generated Tailwind CSS
1599
+ * Replaces global state with proper encapsulation
1600
+ */
1601
+ class TailwindCache {
1602
+ constructor() {
1603
+ this.twString = null;
1604
+ this.cssObject = null;
1605
+ this.initialized = false;
1606
+ }
1607
+
1608
+ /**
1609
+ * Get or generate the CSS object
1610
+ * @param {Function} generateFn - Function to generate CSS string
1611
+ * @param {Function} convertFn - Function to convert CSS string to object
1612
+ * @returns {Object} CSS object lookup
1613
+ */
1614
+ getOrGenerate(generateFn, convertFn) {
1615
+ if (!this.initialized) {
1616
+ this.twString = generateFn().replace(/\s\s+/g, ' ');
1617
+ this.cssObject = convertFn(this.twString);
1618
+ this.initialized = true;
1619
+ }
1620
+ return this.cssObject;
1621
+ }
1622
+
1623
+ /**
1624
+ * Get the CSS string
1625
+ */
1626
+ getCssString() {
1627
+ return this.twString;
1628
+ }
1629
+
1630
+ /**
1631
+ * Get the CSS object
1632
+ */
1633
+ getCssObject() {
1634
+ return this.cssObject;
1635
+ }
1636
+
1637
+ /**
1638
+ * Check if cache is initialized
1639
+ */
1640
+ isInitialized() {
1641
+ return this.initialized;
1642
+ }
1643
+
1644
+ /**
1645
+ * Reset the cache (useful for testing)
1646
+ */
1647
+ reset() {
1648
+ this.twString = null;
1649
+ this.cssObject = null;
1650
+ this.initialized = false;
1651
+ }
1652
+ }
1653
+
1654
+ // Singleton instance
1655
+ let instance = null;
1656
+
1657
+ /**
1658
+ * Get the TailwindCache singleton instance
1659
+ * @returns {TailwindCache} The cache instance
1660
+ */
1661
+ function getTailwindCache() {
1662
+ if (!instance) {
1663
+ instance = new TailwindCache();
1664
+ }
1665
+ return instance;
1666
+ }
1667
+
1668
+ /**
1669
+ * Reset the TailwindCache singleton (for testing)
1670
+ */
1671
+ function resetTailwindCache() {
1672
+ if (instance) {
1673
+ instance.reset();
1674
+ }
1675
+ instance = null;
1676
+ }
1677
+
1678
+ var _process$env;
1679
+ /**
1680
+ * Logger class with configurable log levels
1681
+ * Prevents console spam in production
1682
+ */
1683
+ class Logger {
1684
+ constructor() {
1685
+ let level = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'warn';
1686
+ this.level = level;
1687
+ this.levels = {
1688
+ debug: 0,
1689
+ info: 1,
1690
+ warn: 2,
1691
+ error: 3,
1692
+ silent: 4
1693
+ };
1694
+ }
1695
+
1696
+ /**
1697
+ * Set the log level
1698
+ * @param {string} level - One of 'debug', 'info', 'warn', 'error', 'silent'
1699
+ */
1700
+ setLevel(level) {
1701
+ if (this.levels[level] !== undefined) {
1702
+ this.level = level;
1703
+ }
1704
+ }
1705
+
1706
+ /**
1707
+ * Get current log level
1708
+ */
1709
+ getLevel() {
1710
+ return this.level;
1711
+ }
1712
+
1713
+ /**
1714
+ * Check if a message should be logged
1715
+ */
1716
+ shouldLog(level) {
1717
+ return this.levels[level] >= this.levels[this.level];
1718
+ }
1719
+
1720
+ /**
1721
+ * Log debug message
1722
+ */
1723
+ debug(message) {
1724
+ if (this.shouldLog('debug')) {
1725
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
1726
+ args[_key - 1] = arguments[_key];
1727
+ }
1728
+ console.debug(`[twsx:debug] ${message}`, ...args);
1729
+ }
1730
+ }
1731
+
1732
+ /**
1733
+ * Log info message
1734
+ */
1735
+ info(message) {
1736
+ if (this.shouldLog('info')) {
1737
+ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
1738
+ args[_key2 - 1] = arguments[_key2];
1739
+ }
1740
+ console.info(`[twsx:info] ${message}`, ...args);
1741
+ }
1742
+ }
1743
+
1744
+ /**
1745
+ * Log warning message
1746
+ */
1747
+ warn(message) {
1748
+ if (this.shouldLog('warn')) {
1749
+ for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {
1750
+ args[_key3 - 1] = arguments[_key3];
1751
+ }
1752
+ console.warn(`[twsx:warn] ${message}`, ...args);
1753
+ }
1754
+ }
1755
+
1756
+ /**
1757
+ * Log error message
1758
+ */
1759
+ error(message) {
1760
+ if (this.shouldLog('error')) {
1761
+ for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) {
1762
+ args[_key4 - 1] = arguments[_key4];
1763
+ }
1764
+ console.error(`[twsx:error] ${message}`, ...args);
1765
+ }
1766
+ }
1767
+ }
1768
+
1769
+ // Create singleton instance with production-safe defaults
1770
+ const isProduction = typeof process !== 'undefined' && ((_process$env = process.env) === null || _process$env === void 0 ? void 0 : _process$env.NODE_ENV) === 'production';
1771
+ const logger = new Logger(isProduction ? 'error' : 'warn');
1772
+
1773
+ /**
1774
+ * User Configuration Management
1775
+ * Handles theme extensions and custom plugin registration
1776
+ */
1777
+
1778
+ /**
1779
+ * User configuration state
1780
+ */
1781
+ let userConfig = {
1782
+ theme: {
1783
+ extend: {}
1784
+ },
1785
+ plugins: [],
1786
+ corePlugins: {},
1787
+ prefix: ""
1788
+ };
1789
+
1790
+ /**
1791
+ * Deep merge two objects
1792
+ * @param {Object} target - Target object
1793
+ * @param {Object} source - Source object
1794
+ * @returns {Object} Merged object
1795
+ */
1796
+ function deepMerge(target, source) {
1797
+ const result = {
1798
+ ...target
1799
+ };
1800
+ for (const key in source) {
1801
+ if (source[key] && typeof source[key] === "object" && !Array.isArray(source[key])) {
1802
+ result[key] = deepMerge(target[key] || {}, source[key]);
1803
+ } else {
1804
+ result[key] = source[key];
1805
+ }
1806
+ }
1807
+ return result;
1808
+ }
1809
+
1810
+ /**
1811
+ * Configure tailwind-to-style with custom theme and plugins
1812
+ * @param {Object} config - Configuration object
1813
+ * @param {Object} [config.theme] - Theme configuration
1814
+ * @param {Object} [config.theme.extend] - Theme extensions
1815
+ * @param {Array} [config.plugins] - Array of plugins
1816
+ * @param {Object} [config.corePlugins] - Core plugins to enable/disable
1817
+ * @param {string} [config.prefix] - Prefix for all classes
1818
+ *
1819
+ * @example
1820
+ * configure({
1821
+ * theme: {
1822
+ * extend: {
1823
+ * colors: {
1824
+ * brand: {
1825
+ * 500: '#3B82F6',
1826
+ * },
1827
+ * },
1828
+ * spacing: {
1829
+ * 128: '32rem',
1830
+ * },
1831
+ * },
1832
+ * },
1833
+ * plugins: [myCustomPlugin],
1834
+ * });
1835
+ */
1836
+ function configure() {
1837
+ let config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1838
+ try {
1839
+ // Validate config
1840
+ if (!config || typeof config !== "object") {
1841
+ logger.warn("configure: Expected an object but received:", config);
1842
+ return;
1843
+ }
1844
+
1845
+ // Merge user config with defaults
1846
+ if (config.theme) {
1847
+ if (config.theme.extend) {
1848
+ userConfig.theme.extend = deepMerge(userConfig.theme.extend, config.theme.extend);
1849
+ }
1850
+
1851
+ // Support direct theme overrides (not recommended, but allowed)
1852
+ if (config.theme.colors) {
1853
+ userConfig.theme.colors = config.theme.colors;
1854
+ }
1855
+ if (config.theme.spacing) {
1856
+ userConfig.theme.spacing = config.theme.spacing;
1857
+ }
1858
+ }
1859
+
1860
+ // Register plugins
1861
+ if (config.plugins && Array.isArray(config.plugins)) {
1862
+ userConfig.plugins = [...userConfig.plugins, ...config.plugins];
1863
+ logger.info(`Registered ${config.plugins.length} plugin(s)`);
1864
+ }
1865
+
1866
+ // Core plugins configuration
1867
+ if (config.corePlugins) {
1868
+ userConfig.corePlugins = {
1869
+ ...userConfig.corePlugins,
1870
+ ...config.corePlugins
1871
+ };
1872
+ }
1873
+
1874
+ // Prefix configuration
1875
+ if (config.prefix !== undefined) {
1876
+ userConfig.prefix = config.prefix;
1877
+ }
1878
+
1879
+ // Reset cache to apply new configuration
1880
+ resetTailwindCache();
1881
+ logger.info("Configuration applied successfully");
1882
+ } catch (error) {
1883
+ logger.error("Error applying configuration:", error);
1884
+ throw error;
1885
+ }
1886
+ }
1887
+
1888
+ /**
1889
+ * Get current user configuration
1890
+ * @returns {Object} Current configuration
1891
+ */
1892
+ function getConfig() {
1893
+ return {
1894
+ ...userConfig
1895
+ };
1896
+ }
1897
+
1898
+ /**
1899
+ * Reset configuration to defaults
1900
+ */
1901
+ function resetConfig() {
1902
+ userConfig = {
1903
+ theme: {
1904
+ extend: {}
1905
+ },
1906
+ plugins: [],
1907
+ corePlugins: {},
1908
+ prefix: ""
1909
+ };
1910
+ resetTailwindCache();
1911
+ logger.info("Configuration reset to defaults");
1912
+ }
1913
+
1914
+ /**
1915
+ * Get extended theme value
1916
+ * @param {string} key - Theme key (e.g., 'colors', 'spacing')
1917
+ * @returns {Object} Extended theme values
1918
+ */
1919
+ function getExtendedTheme(key) {
1920
+ return userConfig.theme.extend[key] || {};
1921
+ }
1922
+
1923
+ /**
1924
+ * Get all registered plugins
1925
+ * @returns {Array} Array of plugins
1926
+ */
1927
+ function getPlugins() {
1928
+ return userConfig.plugins;
1929
+ }
1930
+
1931
+ /**
1932
+ * Get configured prefix
1933
+ * @returns {string} Prefix string
1934
+ */
1935
+ function getPrefix() {
1936
+ return userConfig.prefix;
1937
+ }
1938
+
1520
1939
  function isFunction(functionToCheck) {
1521
1940
  return functionToCheck && {}.toString.call(functionToCheck) === "[object Function]";
1522
1941
  }
@@ -1552,8 +1971,18 @@ var tailwindToStyle = (function (exports) {
1552
1971
  newTheme[key] = Object.assign({}, newTheme[key], themeExtend[key]);
1553
1972
  }
1554
1973
  });
1974
+ themeKeys.forEach(key => {
1975
+ const extended = getExtendedTheme(key);
1976
+ if (extended && Object.keys(extended).length > 0) {
1977
+ newTheme[key] = Object.assign({}, newTheme[key], extended);
1978
+ }
1979
+ });
1980
+
1981
+ // Get user prefix
1982
+ const userPrefix = getPrefix();
1983
+ const finalPrefix = userPrefix || options.prefix || "";
1555
1984
  return {
1556
- prefix: "",
1985
+ prefix: finalPrefix,
1557
1986
  ...configOptions,
1558
1987
  ...options,
1559
1988
  theme: newTheme
@@ -1619,7 +2048,7 @@ var tailwindToStyle = (function (exports) {
1619
2048
  return cssString;
1620
2049
  }
1621
2050
 
1622
- function generator$2r() {
2051
+ function generator$2w() {
1623
2052
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1624
2053
  const {
1625
2054
  prefix: globalPrefix,
@@ -1658,7 +2087,7 @@ var tailwindToStyle = (function (exports) {
1658
2087
  return responsiveCssString;
1659
2088
  }
1660
2089
 
1661
- function generator$2q() {
2090
+ function generator$2v() {
1662
2091
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1663
2092
  const {
1664
2093
  prefix
@@ -1697,7 +2126,7 @@ var tailwindToStyle = (function (exports) {
1697
2126
  return responsiveCssString;
1698
2127
  }
1699
2128
 
1700
- function generator$2p() {
2129
+ function generator$2u() {
1701
2130
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1702
2131
  const {
1703
2132
  prefix: globalPrefix
@@ -1725,7 +2154,7 @@ var tailwindToStyle = (function (exports) {
1725
2154
  return responsiveCssString;
1726
2155
  }
1727
2156
 
1728
- function generator$2o() {
2157
+ function generator$2t() {
1729
2158
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1730
2159
  const {
1731
2160
  prefix: globalPrefix
@@ -1752,7 +2181,7 @@ var tailwindToStyle = (function (exports) {
1752
2181
  return responsiveCssString;
1753
2182
  }
1754
2183
 
1755
- function generator$2n() {
2184
+ function generator$2s() {
1756
2185
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1757
2186
  const {
1758
2187
  prefix: globalPrefix
@@ -1779,7 +2208,40 @@ var tailwindToStyle = (function (exports) {
1779
2208
  return responsiveCssString;
1780
2209
  }
1781
2210
 
1782
- function generator$2m() {
2211
+ /**
2212
+ * Animation Generator
2213
+ * Generates animation utility classes
2214
+ * Note: Keyframes are defined in theme but not rendered here since inline styles
2215
+ * can't use @keyframes. The animation values should reference keyframe names that
2216
+ * are already defined in your global CSS.
2217
+ */
2218
+ function generator$2r() {
2219
+ let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2220
+ const {
2221
+ prefix: globalPrefix,
2222
+ theme = {}
2223
+ } = configOptions;
2224
+ const prefix = `${globalPrefix}animate`;
2225
+ const {
2226
+ animation = {}
2227
+ } = theme;
2228
+ const responsiveCssString = generateCssString$1(_ref => {
2229
+ let {
2230
+ getCssByOptions
2231
+ } = _ref;
2232
+ const cssString = getCssByOptions(animation, (key, value) => {
2233
+ return `
2234
+ ${prefix}-${key} {
2235
+ animation: ${value};
2236
+ }
2237
+ `;
2238
+ });
2239
+ return cssString;
2240
+ }, configOptions);
2241
+ return responsiveCssString;
2242
+ }
2243
+
2244
+ function generator$2q() {
1783
2245
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1784
2246
  const {
1785
2247
  prefix
@@ -1799,7 +2261,7 @@ var tailwindToStyle = (function (exports) {
1799
2261
  return responsiveCssString;
1800
2262
  }
1801
2263
 
1802
- function generator$2l() {
2264
+ function generator$2p() {
1803
2265
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1804
2266
  const {
1805
2267
  prefix: globalPrefix,
@@ -1828,7 +2290,7 @@ var tailwindToStyle = (function (exports) {
1828
2290
  return responsiveCssString;
1829
2291
  }
1830
2292
 
1831
- function generator$2k() {
2293
+ function generator$2o() {
1832
2294
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1833
2295
  const {
1834
2296
  prefix: globalPrefix
@@ -1849,7 +2311,7 @@ var tailwindToStyle = (function (exports) {
1849
2311
  return responsiveCssString;
1850
2312
  }
1851
2313
 
1852
- function generator$2j() {
2314
+ function generator$2n() {
1853
2315
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1854
2316
  const {
1855
2317
  prefix: globalPrefix
@@ -1876,7 +2338,7 @@ var tailwindToStyle = (function (exports) {
1876
2338
  return responsiveCssString;
1877
2339
  }
1878
2340
 
1879
- function generator$2i() {
2341
+ function generator$2m() {
1880
2342
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1881
2343
  const {
1882
2344
  prefix: globalPrefix,
@@ -1916,7 +2378,7 @@ var tailwindToStyle = (function (exports) {
1916
2378
  return responsiveCssString;
1917
2379
  }
1918
2380
 
1919
- function generator$2h() {
2381
+ function generator$2l() {
1920
2382
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1921
2383
  const {
1922
2384
  prefix: globalPrefix,
@@ -1950,7 +2412,7 @@ var tailwindToStyle = (function (exports) {
1950
2412
  return responsiveCssString;
1951
2413
  }
1952
2414
 
1953
- function generator$2g() {
2415
+ function generator$2k() {
1954
2416
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1955
2417
  const {
1956
2418
  prefix: globalPrefix,
@@ -1974,7 +2436,7 @@ var tailwindToStyle = (function (exports) {
1974
2436
  return responsiveCssString;
1975
2437
  }
1976
2438
 
1977
- function generator$2f() {
2439
+ function generator$2j() {
1978
2440
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1979
2441
  const {
1980
2442
  prefix: globalPrefix
@@ -2000,7 +2462,7 @@ var tailwindToStyle = (function (exports) {
2000
2462
  return responsiveCssString;
2001
2463
  }
2002
2464
 
2003
- function generator$2e() {
2465
+ function generator$2i() {
2004
2466
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2005
2467
  const {
2006
2468
  prefix: globalPrefix,
@@ -2034,7 +2496,7 @@ var tailwindToStyle = (function (exports) {
2034
2496
  return responsiveCssString;
2035
2497
  }
2036
2498
 
2037
- function generator$2d() {
2499
+ function generator$2h() {
2038
2500
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2039
2501
  const {
2040
2502
  prefix: globalPrefix
@@ -2062,7 +2524,7 @@ var tailwindToStyle = (function (exports) {
2062
2524
  return responsiveCssString;
2063
2525
  }
2064
2526
 
2065
- function generator$2c() {
2527
+ function generator$2g() {
2066
2528
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2067
2529
  const {
2068
2530
  prefix: globalPrefix,
@@ -2096,7 +2558,7 @@ var tailwindToStyle = (function (exports) {
2096
2558
  return responsiveCssString;
2097
2559
  }
2098
2560
 
2099
- function generator$2b() {
2561
+ function generator$2f() {
2100
2562
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2101
2563
  const {
2102
2564
  prefix: globalPrefix,
@@ -2130,7 +2592,7 @@ var tailwindToStyle = (function (exports) {
2130
2592
  return responsiveCssString;
2131
2593
  }
2132
2594
 
2133
- function generator$2a() {
2595
+ function generator$2e() {
2134
2596
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2135
2597
  const {
2136
2598
  prefix: globalPrefix
@@ -2151,7 +2613,7 @@ var tailwindToStyle = (function (exports) {
2151
2613
  return responsiveCssString;
2152
2614
  }
2153
2615
 
2154
- function generator$29() {
2616
+ function generator$2d() {
2155
2617
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2156
2618
  const {
2157
2619
  prefix: globalPrefix,
@@ -2239,7 +2701,7 @@ var tailwindToStyle = (function (exports) {
2239
2701
  return responsiveCssString;
2240
2702
  }
2241
2703
 
2242
- function generator$28() {
2704
+ function generator$2c() {
2243
2705
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2244
2706
  const {
2245
2707
  prefix: globalPrefix,
@@ -2263,7 +2725,7 @@ var tailwindToStyle = (function (exports) {
2263
2725
  return responsiveCssString;
2264
2726
  }
2265
2727
 
2266
- function generator$27() {
2728
+ function generator$2b() {
2267
2729
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2268
2730
  const {
2269
2731
  prefix: globalPrefix,
@@ -2338,7 +2800,7 @@ var tailwindToStyle = (function (exports) {
2338
2800
  return responsiveCssString;
2339
2801
  }
2340
2802
 
2341
- function generator$26() {
2803
+ function generator$2a() {
2342
2804
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2343
2805
  const {
2344
2806
  prefix: globalPrefix,
@@ -2373,7 +2835,7 @@ var tailwindToStyle = (function (exports) {
2373
2835
  return responsiveCssString;
2374
2836
  }
2375
2837
 
2376
- function generator$25() {
2838
+ function generator$29() {
2377
2839
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2378
2840
  const {
2379
2841
  prefix: globalPrefix
@@ -2394,7 +2856,7 @@ var tailwindToStyle = (function (exports) {
2394
2856
  return responsiveCssString;
2395
2857
  }
2396
2858
 
2397
- function generator$24() {
2859
+ function generator$28() {
2398
2860
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2399
2861
  const {
2400
2862
  prefix: globalPrefix,
@@ -2459,7 +2921,7 @@ var tailwindToStyle = (function (exports) {
2459
2921
  return responsiveCssString;
2460
2922
  }
2461
2923
 
2462
- function generator$23() {
2924
+ function generator$27() {
2463
2925
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2464
2926
  const {
2465
2927
  prefix: globalPrefix
@@ -2481,7 +2943,7 @@ var tailwindToStyle = (function (exports) {
2481
2943
  return responsiveCssString;
2482
2944
  }
2483
2945
 
2484
- function generator$22() {
2946
+ function generator$26() {
2485
2947
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2486
2948
  const {
2487
2949
  prefix: globalPrefix,
@@ -2535,7 +2997,7 @@ var tailwindToStyle = (function (exports) {
2535
2997
  return responsiveCssString;
2536
2998
  }
2537
2999
 
2538
- function generator$21() {
3000
+ function generator$25() {
2539
3001
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2540
3002
  const {
2541
3003
  prefix: globalPrefix
@@ -2559,7 +3021,7 @@ var tailwindToStyle = (function (exports) {
2559
3021
  return responsiveCssString;
2560
3022
  }
2561
3023
 
2562
- function generator$20() {
3024
+ function generator$24() {
2563
3025
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2564
3026
  const {
2565
3027
  prefix: globalPrefix,
@@ -2593,7 +3055,7 @@ var tailwindToStyle = (function (exports) {
2593
3055
  return responsiveCssString;
2594
3056
  }
2595
3057
 
2596
- function generator$1$() {
3058
+ function generator$23() {
2597
3059
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2598
3060
  const {
2599
3061
  prefix: globalPrefix
@@ -2614,7 +3076,7 @@ var tailwindToStyle = (function (exports) {
2614
3076
  return responsiveCssString;
2615
3077
  }
2616
3078
 
2617
- function generator$1_() {
3079
+ function generator$22() {
2618
3080
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2619
3081
  const {
2620
3082
  prefix: globalPrefix,
@@ -2653,7 +3115,7 @@ var tailwindToStyle = (function (exports) {
2653
3115
  return responsiveCssString;
2654
3116
  }
2655
3117
 
2656
- function generator$1Z() {
3118
+ function generator$21() {
2657
3119
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2658
3120
  const {
2659
3121
  prefix: globalPrefix
@@ -2674,7 +3136,7 @@ var tailwindToStyle = (function (exports) {
2674
3136
  return responsiveCssString;
2675
3137
  }
2676
3138
 
2677
- function generator$1Y() {
3139
+ function generator$20() {
2678
3140
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2679
3141
  const {
2680
3142
  prefix: globalPrefix,
@@ -2698,7 +3160,7 @@ var tailwindToStyle = (function (exports) {
2698
3160
  return responsiveCssString;
2699
3161
  }
2700
3162
 
2701
- function generator$1X() {
3163
+ function generator$1$() {
2702
3164
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2703
3165
  const {
2704
3166
  prefix: globalPrefix,
@@ -2732,7 +3194,7 @@ var tailwindToStyle = (function (exports) {
2732
3194
  return responsiveCssString;
2733
3195
  }
2734
3196
 
2735
- function generator$1W() {
3197
+ function generator$1_() {
2736
3198
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2737
3199
  const {
2738
3200
  prefix: globalPrefix
@@ -2753,7 +3215,7 @@ var tailwindToStyle = (function (exports) {
2753
3215
  return responsiveCssString;
2754
3216
  }
2755
3217
 
2756
- function generator$1V() {
3218
+ function generator$1Z() {
2757
3219
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2758
3220
  const {
2759
3221
  prefix
@@ -2773,7 +3235,7 @@ var tailwindToStyle = (function (exports) {
2773
3235
  return responsiveCssString;
2774
3236
  }
2775
3237
 
2776
- function generator$1U() {
3238
+ function generator$1Y() {
2777
3239
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2778
3240
  const {
2779
3241
  prefix: globalPrefix,
@@ -2804,7 +3266,7 @@ var tailwindToStyle = (function (exports) {
2804
3266
  return responsiveCssString;
2805
3267
  }
2806
3268
 
2807
- function generator$1T() {
3269
+ function generator$1X() {
2808
3270
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2809
3271
  const {
2810
3272
  prefix: globalPrefix,
@@ -2828,7 +3290,7 @@ var tailwindToStyle = (function (exports) {
2828
3290
  return responsiveCssString;
2829
3291
  }
2830
3292
 
2831
- function generator$1S() {
3293
+ function generator$1W() {
2832
3294
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2833
3295
  const {
2834
3296
  prefix: globalPrefix
@@ -2849,7 +3311,7 @@ var tailwindToStyle = (function (exports) {
2849
3311
  return responsiveCssString;
2850
3312
  }
2851
3313
 
2852
- function generator$1R() {
3314
+ function generator$1V() {
2853
3315
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2854
3316
  const {
2855
3317
  prefix: globalPrefix,
@@ -2897,7 +3359,7 @@ var tailwindToStyle = (function (exports) {
2897
3359
  return responsiveCssString;
2898
3360
  }
2899
3361
 
2900
- function generator$1Q() {
3362
+ function generator$1U() {
2901
3363
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2902
3364
  const {
2903
3365
  prefix: globalPrefix,
@@ -2925,7 +3387,7 @@ var tailwindToStyle = (function (exports) {
2925
3387
  return responsiveCssString;
2926
3388
  }
2927
3389
 
2928
- function generator$1P() {
3390
+ function generator$1T() {
2929
3391
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2930
3392
  const {
2931
3393
  prefix: globalPrefix,
@@ -2951,7 +3413,7 @@ var tailwindToStyle = (function (exports) {
2951
3413
  return responsiveCssString;
2952
3414
  }
2953
3415
 
2954
- function generator$1O(_ref) {
3416
+ function generator$1S(_ref) {
2955
3417
  let {
2956
3418
  prefix
2957
3419
  } = _ref;
@@ -2964,7 +3426,7 @@ var tailwindToStyle = (function (exports) {
2964
3426
  `;
2965
3427
  }
2966
3428
 
2967
- function generator$1N() {
3429
+ function generator$1R() {
2968
3430
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2969
3431
  const {
2970
3432
  prefix: globalPrefix,
@@ -2988,7 +3450,7 @@ var tailwindToStyle = (function (exports) {
2988
3450
  return responsiveCssString;
2989
3451
  }
2990
3452
 
2991
- function generator$1M() {
3453
+ function generator$1Q() {
2992
3454
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2993
3455
  const {
2994
3456
  prefix: globalPrefix,
@@ -3012,7 +3474,7 @@ var tailwindToStyle = (function (exports) {
3012
3474
  return responsiveCssString;
3013
3475
  }
3014
3476
 
3015
- function generator$1L() {
3477
+ function generator$1P() {
3016
3478
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3017
3479
  const {
3018
3480
  prefix: globalPrefix
@@ -3038,7 +3500,7 @@ var tailwindToStyle = (function (exports) {
3038
3500
  return responsiveCssString;
3039
3501
  }
3040
3502
 
3041
- function generator$1K() {
3503
+ function generator$1O() {
3042
3504
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3043
3505
  const {
3044
3506
  prefix: globalPrefix,
@@ -3062,7 +3524,7 @@ var tailwindToStyle = (function (exports) {
3062
3524
  return responsiveCssString;
3063
3525
  }
3064
3526
 
3065
- function generator$1J() {
3527
+ function generator$1N() {
3066
3528
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3067
3529
  const {
3068
3530
  prefix: globalPrefix,
@@ -3086,7 +3548,7 @@ var tailwindToStyle = (function (exports) {
3086
3548
  return responsiveCssString;
3087
3549
  }
3088
3550
 
3089
- function generator$1I() {
3551
+ function generator$1M() {
3090
3552
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3091
3553
  const {
3092
3554
  prefix: globalPrefix
@@ -3112,7 +3574,7 @@ var tailwindToStyle = (function (exports) {
3112
3574
  return responsiveCssString;
3113
3575
  }
3114
3576
 
3115
- function generator$1H() {
3577
+ function generator$1L() {
3116
3578
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3117
3579
  const {
3118
3580
  prefix: globalPrefix
@@ -3133,7 +3595,7 @@ var tailwindToStyle = (function (exports) {
3133
3595
  return responsiveCssString;
3134
3596
  }
3135
3597
 
3136
- function generator$1G() {
3598
+ function generator$1K() {
3137
3599
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3138
3600
  const {
3139
3601
  prefix: globalPrefix,
@@ -3167,7 +3629,7 @@ var tailwindToStyle = (function (exports) {
3167
3629
  return responsiveCssString;
3168
3630
  }
3169
3631
 
3170
- function generator$1F() {
3632
+ function generator$1J() {
3171
3633
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3172
3634
  const {
3173
3635
  prefix
@@ -3187,7 +3649,7 @@ var tailwindToStyle = (function (exports) {
3187
3649
  return responsiveCssString;
3188
3650
  }
3189
3651
 
3190
- function generator$1E() {
3652
+ function generator$1I() {
3191
3653
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3192
3654
  const {
3193
3655
  prefix
@@ -3210,7 +3672,7 @@ var tailwindToStyle = (function (exports) {
3210
3672
  return responsiveCssString;
3211
3673
  }
3212
3674
 
3213
- function generator$1D() {
3675
+ function generator$1H() {
3214
3676
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3215
3677
  const {
3216
3678
  prefix
@@ -3240,7 +3702,7 @@ var tailwindToStyle = (function (exports) {
3240
3702
  return responsiveCssString;
3241
3703
  }
3242
3704
 
3243
- function generator$1C() {
3705
+ function generator$1G() {
3244
3706
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3245
3707
  const {
3246
3708
  prefix: globalPrefix,
@@ -3274,7 +3736,7 @@ var tailwindToStyle = (function (exports) {
3274
3736
  return responsiveCssString;
3275
3737
  }
3276
3738
 
3277
- function generator$1B() {
3739
+ function generator$1F() {
3278
3740
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3279
3741
  const {
3280
3742
  prefix: globalPrefix,
@@ -3304,7 +3766,7 @@ var tailwindToStyle = (function (exports) {
3304
3766
  return responsiveCssString;
3305
3767
  }
3306
3768
 
3307
- function generator$1A() {
3769
+ function generator$1E() {
3308
3770
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3309
3771
  const {
3310
3772
  prefix,
@@ -3343,7 +3805,7 @@ var tailwindToStyle = (function (exports) {
3343
3805
  return responsiveCssString;
3344
3806
  }
3345
3807
 
3346
- function generator$1z() {
3808
+ function generator$1D() {
3347
3809
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3348
3810
  const {
3349
3811
  prefix: globalPrefix,
@@ -3377,7 +3839,7 @@ var tailwindToStyle = (function (exports) {
3377
3839
  return responsiveCssString;
3378
3840
  }
3379
3841
 
3380
- function generator$1y() {
3842
+ function generator$1C() {
3381
3843
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3382
3844
  const {
3383
3845
  prefix: globalPrefix,
@@ -3401,7 +3863,7 @@ var tailwindToStyle = (function (exports) {
3401
3863
  return responsiveCssString;
3402
3864
  }
3403
3865
 
3404
- function generator$1x() {
3866
+ function generator$1B() {
3405
3867
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3406
3868
  const {
3407
3869
  prefix: globalPrefix
@@ -3427,7 +3889,7 @@ var tailwindToStyle = (function (exports) {
3427
3889
  return responsiveCssString;
3428
3890
  }
3429
3891
 
3430
- function generator$1w() {
3892
+ function generator$1A() {
3431
3893
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3432
3894
  const {
3433
3895
  prefix: globalPrefix,
@@ -3451,7 +3913,7 @@ var tailwindToStyle = (function (exports) {
3451
3913
  return responsiveCssString;
3452
3914
  }
3453
3915
 
3454
- function generator$1v() {
3916
+ function generator$1z() {
3455
3917
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3456
3918
  const {
3457
3919
  prefix: globalPrefix,
@@ -3475,7 +3937,7 @@ var tailwindToStyle = (function (exports) {
3475
3937
  return responsiveCssString;
3476
3938
  }
3477
3939
 
3478
- function generator$1u() {
3940
+ function generator$1y() {
3479
3941
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3480
3942
  const {
3481
3943
  prefix: globalPrefix,
@@ -3499,7 +3961,7 @@ var tailwindToStyle = (function (exports) {
3499
3961
  return responsiveCssString;
3500
3962
  }
3501
3963
 
3502
- function generator$1t() {
3964
+ function generator$1x() {
3503
3965
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3504
3966
  const {
3505
3967
  prefix: globalPrefix,
@@ -3523,7 +3985,7 @@ var tailwindToStyle = (function (exports) {
3523
3985
  return responsiveCssString;
3524
3986
  }
3525
3987
 
3526
- function generator$1s() {
3988
+ function generator$1w() {
3527
3989
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3528
3990
  const {
3529
3991
  prefix: globalPrefix,
@@ -3547,7 +4009,7 @@ var tailwindToStyle = (function (exports) {
3547
4009
  return responsiveCssString;
3548
4010
  }
3549
4011
 
3550
- function generator$1r() {
4012
+ function generator$1v() {
3551
4013
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3552
4014
  const {
3553
4015
  prefix: globalPrefix,
@@ -3571,7 +4033,7 @@ var tailwindToStyle = (function (exports) {
3571
4033
  return responsiveCssString;
3572
4034
  }
3573
4035
 
3574
- function generator$1q() {
4036
+ function generator$1u() {
3575
4037
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3576
4038
  const {
3577
4039
  prefix: globalPrefix,
@@ -3595,7 +4057,7 @@ var tailwindToStyle = (function (exports) {
3595
4057
  return responsiveCssString;
3596
4058
  }
3597
4059
 
3598
- function generator$1p() {
4060
+ function generator$1t() {
3599
4061
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3600
4062
  const {
3601
4063
  prefix: globalPrefix,
@@ -3619,7 +4081,7 @@ var tailwindToStyle = (function (exports) {
3619
4081
  return responsiveCssString;
3620
4082
  }
3621
4083
 
3622
- function generator$1o() {
4084
+ function generator$1s() {
3623
4085
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3624
4086
  const {
3625
4087
  prefix: globalPrefix,
@@ -3643,7 +4105,7 @@ var tailwindToStyle = (function (exports) {
3643
4105
  return responsiveCssString;
3644
4106
  }
3645
4107
 
3646
- function generator$1n() {
4108
+ function generator$1r() {
3647
4109
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3648
4110
  const {
3649
4111
  prefix: globalPrefix,
@@ -3667,7 +4129,7 @@ var tailwindToStyle = (function (exports) {
3667
4129
  return responsiveCssString;
3668
4130
  }
3669
4131
 
3670
- function generator$1m() {
4132
+ function generator$1q() {
3671
4133
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3672
4134
  const {
3673
4135
  prefix: globalPrefix,
@@ -3705,7 +4167,7 @@ var tailwindToStyle = (function (exports) {
3705
4167
  return responsiveCssString;
3706
4168
  }
3707
4169
 
3708
- function generator$1l() {
4170
+ function generator$1p() {
3709
4171
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3710
4172
  const {
3711
4173
  prefix: globalPrefix
@@ -3727,7 +4189,7 @@ var tailwindToStyle = (function (exports) {
3727
4189
  return responsiveCssString;
3728
4190
  }
3729
4191
 
3730
- function generator$1k() {
4192
+ function generator$1o() {
3731
4193
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3732
4194
  const {
3733
4195
  prefix: globalPrefix,
@@ -3785,7 +4247,7 @@ var tailwindToStyle = (function (exports) {
3785
4247
  return responsiveCssString;
3786
4248
  }
3787
4249
 
3788
- function generator$1j() {
4250
+ function generator$1n() {
3789
4251
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3790
4252
  const {
3791
4253
  prefix: globalPrefix,
@@ -3819,7 +4281,7 @@ var tailwindToStyle = (function (exports) {
3819
4281
  return responsiveCssString;
3820
4282
  }
3821
4283
 
3822
- function generator$1i() {
4284
+ function generator$1m() {
3823
4285
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3824
4286
  const {
3825
4287
  prefix: globalPrefix
@@ -3843,7 +4305,7 @@ var tailwindToStyle = (function (exports) {
3843
4305
  return responsiveCssString;
3844
4306
  }
3845
4307
 
3846
- function generator$1h() {
4308
+ function generator$1l() {
3847
4309
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3848
4310
  const {
3849
4311
  prefix: globalPrefix
@@ -3871,7 +4333,7 @@ var tailwindToStyle = (function (exports) {
3871
4333
  return responsiveCssString;
3872
4334
  }
3873
4335
 
3874
- function generator$1g() {
4336
+ function generator$1k() {
3875
4337
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3876
4338
  const {
3877
4339
  prefix: globalPrefix
@@ -3892,7 +4354,7 @@ var tailwindToStyle = (function (exports) {
3892
4354
  return responsiveCssString;
3893
4355
  }
3894
4356
 
3895
- function generator$1f() {
4357
+ function generator$1j() {
3896
4358
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3897
4359
  const {
3898
4360
  prefix: globalPrefix
@@ -3913,7 +4375,7 @@ var tailwindToStyle = (function (exports) {
3913
4375
  return responsiveCssString;
3914
4376
  }
3915
4377
 
3916
- function generator$1e() {
4378
+ function generator$1i() {
3917
4379
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3918
4380
  const {
3919
4381
  prefix: globalPrefix,
@@ -3937,7 +4399,7 @@ var tailwindToStyle = (function (exports) {
3937
4399
  return responsiveCssString;
3938
4400
  }
3939
4401
 
3940
- function generator$1d() {
4402
+ function generator$1h() {
3941
4403
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3942
4404
  const {
3943
4405
  prefix: globalPrefix,
@@ -3964,7 +4426,7 @@ var tailwindToStyle = (function (exports) {
3964
4426
  return responsiveCssString;
3965
4427
  }
3966
4428
 
3967
- function generator$1c() {
4429
+ function generator$1g() {
3968
4430
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3969
4431
  const {
3970
4432
  prefix: globalPrefix,
@@ -3988,7 +4450,7 @@ var tailwindToStyle = (function (exports) {
3988
4450
  return responsiveCssString;
3989
4451
  }
3990
4452
 
3991
- function generator$1b() {
4453
+ function generator$1f() {
3992
4454
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
3993
4455
  const {
3994
4456
  prefix: globalPrefix
@@ -4009,7 +4471,7 @@ var tailwindToStyle = (function (exports) {
4009
4471
  return responsiveCssString;
4010
4472
  }
4011
4473
 
4012
- function generator$1a() {
4474
+ function generator$1e() {
4013
4475
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4014
4476
  const {
4015
4477
  prefix: globalPrefix,
@@ -4033,7 +4495,7 @@ var tailwindToStyle = (function (exports) {
4033
4495
  return responsiveCssString;
4034
4496
  }
4035
4497
 
4036
- function generator$19() {
4498
+ function generator$1d() {
4037
4499
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4038
4500
  const {
4039
4501
  prefix: globalPrefix,
@@ -4094,7 +4556,7 @@ var tailwindToStyle = (function (exports) {
4094
4556
  return responsiveCssString;
4095
4557
  }
4096
4558
 
4097
- function generator$18() {
4559
+ function generator$1c() {
4098
4560
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4099
4561
  const {
4100
4562
  prefix: globalPrefix,
@@ -4118,7 +4580,7 @@ var tailwindToStyle = (function (exports) {
4118
4580
  return responsiveCssString;
4119
4581
  }
4120
4582
 
4121
- function generator$17() {
4583
+ function generator$1b() {
4122
4584
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4123
4585
  const {
4124
4586
  prefix: globalPrefix,
@@ -4142,7 +4604,7 @@ var tailwindToStyle = (function (exports) {
4142
4604
  return responsiveCssString;
4143
4605
  }
4144
4606
 
4145
- function generator$16() {
4607
+ function generator$1a() {
4146
4608
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4147
4609
  const {
4148
4610
  prefix: globalPrefix,
@@ -4166,7 +4628,7 @@ var tailwindToStyle = (function (exports) {
4166
4628
  return responsiveCssString;
4167
4629
  }
4168
4630
 
4169
- function generator$15() {
4631
+ function generator$19() {
4170
4632
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4171
4633
  const {
4172
4634
  prefix: globalPrefix,
@@ -4190,7 +4652,7 @@ var tailwindToStyle = (function (exports) {
4190
4652
  return responsiveCssString;
4191
4653
  }
4192
4654
 
4193
- function generator$14() {
4655
+ function generator$18() {
4194
4656
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4195
4657
  const {
4196
4658
  prefix: globalPrefix
@@ -4216,7 +4678,7 @@ var tailwindToStyle = (function (exports) {
4216
4678
  return responsiveCssString;
4217
4679
  }
4218
4680
 
4219
- function generator$13() {
4681
+ function generator$17() {
4220
4682
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4221
4683
  const {
4222
4684
  prefix: globalPrefix
@@ -4237,7 +4699,7 @@ var tailwindToStyle = (function (exports) {
4237
4699
  return responsiveCssString;
4238
4700
  }
4239
4701
 
4240
- function generator$12() {
4702
+ function generator$16() {
4241
4703
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4242
4704
  const {
4243
4705
  prefix: globalPrefix
@@ -4258,7 +4720,7 @@ var tailwindToStyle = (function (exports) {
4258
4720
  return responsiveCssString;
4259
4721
  }
4260
4722
 
4261
- function generator$11() {
4723
+ function generator$15() {
4262
4724
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4263
4725
  const {
4264
4726
  prefix: globalPrefix,
@@ -4289,7 +4751,7 @@ var tailwindToStyle = (function (exports) {
4289
4751
  return responsiveCssString;
4290
4752
  }
4291
4753
 
4292
- function generator$10() {
4754
+ function generator$14() {
4293
4755
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4294
4756
  const {
4295
4757
  prefix: globalPrefix,
@@ -4313,7 +4775,7 @@ var tailwindToStyle = (function (exports) {
4313
4775
  return responsiveCssString;
4314
4776
  }
4315
4777
 
4316
- function generator$$() {
4778
+ function generator$13() {
4317
4779
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4318
4780
  const {
4319
4781
  prefix: globalPrefix,
@@ -4357,7 +4819,7 @@ var tailwindToStyle = (function (exports) {
4357
4819
  return responsiveCssString;
4358
4820
  }
4359
4821
 
4360
- function generator$_() {
4822
+ function generator$12() {
4361
4823
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4362
4824
  const {
4363
4825
  prefix: globalPrefix,
@@ -4383,7 +4845,7 @@ var tailwindToStyle = (function (exports) {
4383
4845
  return responsiveCssString;
4384
4846
  }
4385
4847
 
4386
- function generator$Z() {
4848
+ function generator$11() {
4387
4849
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4388
4850
  const {
4389
4851
  prefix: globalPrefix,
@@ -4410,7 +4872,7 @@ var tailwindToStyle = (function (exports) {
4410
4872
  return responsiveCssString;
4411
4873
  }
4412
4874
 
4413
- function generator$Y() {
4875
+ function generator$10() {
4414
4876
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4415
4877
  const {
4416
4878
  prefix: globalPrefix
@@ -4442,7 +4904,7 @@ var tailwindToStyle = (function (exports) {
4442
4904
  return responsiveCssString;
4443
4905
  }
4444
4906
 
4445
- function generator$X() {
4907
+ function generator$$() {
4446
4908
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4447
4909
  const {
4448
4910
  prefix: globalPrefix,
@@ -4476,7 +4938,7 @@ var tailwindToStyle = (function (exports) {
4476
4938
  return responsiveCssString;
4477
4939
  }
4478
4940
 
4479
- function generator$W() {
4941
+ function generator$_() {
4480
4942
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4481
4943
  const {
4482
4944
  prefix: globalPrefix
@@ -4511,7 +4973,7 @@ var tailwindToStyle = (function (exports) {
4511
4973
  return responsiveCssString;
4512
4974
  }
4513
4975
 
4514
- function generator$V() {
4976
+ function generator$Z() {
4515
4977
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4516
4978
  const {
4517
4979
  prefix: globalPrefix
@@ -4538,7 +5000,7 @@ var tailwindToStyle = (function (exports) {
4538
5000
  return responsiveCssString;
4539
5001
  }
4540
5002
 
4541
- function generator$U() {
5003
+ function generator$Y() {
4542
5004
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4543
5005
  const {
4544
5006
  prefix: globalPrefix,
@@ -4588,7 +5050,7 @@ var tailwindToStyle = (function (exports) {
4588
5050
  return responsiveCssString;
4589
5051
  }
4590
5052
 
4591
- function generator$T() {
5053
+ function generator$X() {
4592
5054
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4593
5055
  const {
4594
5056
  prefix: globalPrefix
@@ -4617,7 +5079,7 @@ var tailwindToStyle = (function (exports) {
4617
5079
  return responsiveCssString;
4618
5080
  }
4619
5081
 
4620
- function generator$S() {
5082
+ function generator$W() {
4621
5083
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4622
5084
  const {
4623
5085
  prefix: globalPrefix
@@ -4638,7 +5100,7 @@ var tailwindToStyle = (function (exports) {
4638
5100
  return responsiveCssString;
4639
5101
  }
4640
5102
 
4641
- function generator$R() {
5103
+ function generator$V() {
4642
5104
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4643
5105
  const {
4644
5106
  prefix: globalPrefix
@@ -4659,7 +5121,7 @@ var tailwindToStyle = (function (exports) {
4659
5121
  return responsiveCssString;
4660
5122
  }
4661
5123
 
4662
- function generator$Q() {
5124
+ function generator$U() {
4663
5125
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4664
5126
  const {
4665
5127
  prefix
@@ -4677,7 +5139,7 @@ var tailwindToStyle = (function (exports) {
4677
5139
  return responsiveCssString;
4678
5140
  }
4679
5141
 
4680
- function generator$P() {
5142
+ function generator$T() {
4681
5143
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4682
5144
  const {
4683
5145
  prefix
@@ -4697,7 +5159,7 @@ var tailwindToStyle = (function (exports) {
4697
5159
  return responsiveCssString;
4698
5160
  }
4699
5161
 
4700
- function generator$O() {
5162
+ function generator$S() {
4701
5163
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4702
5164
  const {
4703
5165
  prefix: globalPrefix
@@ -4726,7 +5188,7 @@ var tailwindToStyle = (function (exports) {
4726
5188
  return responsiveCssString;
4727
5189
  }
4728
5190
 
4729
- function generator$N() {
5191
+ function generator$R() {
4730
5192
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4731
5193
  const {
4732
5194
  prefix: globalPrefix,
@@ -4759,7 +5221,7 @@ var tailwindToStyle = (function (exports) {
4759
5221
  return responsiveCssString;
4760
5222
  }
4761
5223
 
4762
- function generator$M() {
5224
+ function generator$Q() {
4763
5225
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4764
5226
  const {
4765
5227
  prefix: globalPrefix,
@@ -4783,7 +5245,7 @@ var tailwindToStyle = (function (exports) {
4783
5245
  return responsiveCssString;
4784
5246
  }
4785
5247
 
4786
- function generator$L() {
5248
+ function generator$P() {
4787
5249
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4788
5250
  const {
4789
5251
  prefix: globalPrefix,
@@ -4807,7 +5269,7 @@ var tailwindToStyle = (function (exports) {
4807
5269
  return responsiveCssString;
4808
5270
  }
4809
5271
 
4810
- function generator$K() {
5272
+ function generator$O() {
4811
5273
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4812
5274
  const {
4813
5275
  prefix: globalPrefix,
@@ -4834,7 +5296,7 @@ var tailwindToStyle = (function (exports) {
4834
5296
  return responsiveCssString;
4835
5297
  }
4836
5298
 
4837
- function generator$J() {
5299
+ function generator$N() {
4838
5300
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4839
5301
  const {
4840
5302
  prefix: globalPrefix,
@@ -4872,7 +5334,7 @@ var tailwindToStyle = (function (exports) {
4872
5334
  return responsiveCssString;
4873
5335
  }
4874
5336
 
4875
- function generator$I() {
5337
+ function generator$M() {
4876
5338
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4877
5339
  const {
4878
5340
  prefix: globalPrefix,
@@ -4906,7 +5368,7 @@ var tailwindToStyle = (function (exports) {
4906
5368
  return responsiveCssString;
4907
5369
  }
4908
5370
 
4909
- function generator$H() {
5371
+ function generator$L() {
4910
5372
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4911
5373
  const {
4912
5374
  prefix: globalPrefix,
@@ -4943,7 +5405,7 @@ var tailwindToStyle = (function (exports) {
4943
5405
  return responsiveCssString;
4944
5406
  }
4945
5407
 
4946
- function generator$G() {
5408
+ function generator$K() {
4947
5409
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4948
5410
  const {
4949
5411
  prefix: globalPrefix,
@@ -4978,7 +5440,7 @@ var tailwindToStyle = (function (exports) {
4978
5440
  return responsiveCssString;
4979
5441
  }
4980
5442
 
4981
- function generator$F() {
5443
+ function generator$J() {
4982
5444
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
4983
5445
  const {
4984
5446
  prefix
@@ -4998,7 +5460,7 @@ var tailwindToStyle = (function (exports) {
4998
5460
  return responsiveCssString;
4999
5461
  }
5000
5462
 
5001
- function generator$E() {
5463
+ function generator$I() {
5002
5464
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5003
5465
  const {
5004
5466
  prefix: globalPrefix,
@@ -5059,7 +5521,7 @@ var tailwindToStyle = (function (exports) {
5059
5521
  return responsiveCssString;
5060
5522
  }
5061
5523
 
5062
- function generator$D() {
5524
+ function generator$H() {
5063
5525
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5064
5526
  const {
5065
5527
  prefix: globalPrefix,
@@ -5120,7 +5582,7 @@ var tailwindToStyle = (function (exports) {
5120
5582
  return responsiveCssString;
5121
5583
  }
5122
5584
 
5123
- function generator$C() {
5585
+ function generator$G() {
5124
5586
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5125
5587
  const {
5126
5588
  prefix: globalPrefix
@@ -5146,7 +5608,7 @@ var tailwindToStyle = (function (exports) {
5146
5608
  return responsiveCssString;
5147
5609
  }
5148
5610
 
5149
- function generator$B() {
5611
+ function generator$F() {
5150
5612
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5151
5613
  const {
5152
5614
  prefix: globalPrefix
@@ -5167,7 +5629,7 @@ var tailwindToStyle = (function (exports) {
5167
5629
  return responsiveCssString;
5168
5630
  }
5169
5631
 
5170
- function generator$A() {
5632
+ function generator$E() {
5171
5633
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5172
5634
  const {
5173
5635
  prefix: globalPrefix
@@ -5199,7 +5661,7 @@ var tailwindToStyle = (function (exports) {
5199
5661
  return responsiveCssString;
5200
5662
  }
5201
5663
 
5202
- function generator$z() {
5664
+ function generator$D() {
5203
5665
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5204
5666
  const {
5205
5667
  prefix: globalPrefix,
@@ -5233,7 +5695,7 @@ var tailwindToStyle = (function (exports) {
5233
5695
  return responsiveCssString;
5234
5696
  }
5235
5697
 
5236
- function generator$y() {
5698
+ function generator$C() {
5237
5699
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5238
5700
  const {
5239
5701
  prefix: globalPrefix,
@@ -5258,7 +5720,7 @@ var tailwindToStyle = (function (exports) {
5258
5720
  return responsiveCssString;
5259
5721
  }
5260
5722
 
5261
- function generator$x() {
5723
+ function generator$B() {
5262
5724
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5263
5725
  const {
5264
5726
  prefix: globalPrefix,
@@ -5299,7 +5761,7 @@ var tailwindToStyle = (function (exports) {
5299
5761
  return responsiveCssString;
5300
5762
  }
5301
5763
 
5302
- function generator$w() {
5764
+ function generator$A() {
5303
5765
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5304
5766
  const {
5305
5767
  prefix: globalPrefix,
@@ -5351,7 +5813,7 @@ var tailwindToStyle = (function (exports) {
5351
5813
  return responsiveCssString;
5352
5814
  }
5353
5815
 
5354
- function generator$v() {
5816
+ function generator$z() {
5355
5817
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5356
5818
  const {
5357
5819
  prefix: globalPrefix,
@@ -5377,7 +5839,7 @@ var tailwindToStyle = (function (exports) {
5377
5839
  return responsiveCssString;
5378
5840
  }
5379
5841
 
5380
- function generator$u() {
5842
+ function generator$y() {
5381
5843
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5382
5844
  const {
5383
5845
  prefix: globalPrefix,
@@ -5401,7 +5863,7 @@ var tailwindToStyle = (function (exports) {
5401
5863
  return responsiveCssString;
5402
5864
  }
5403
5865
 
5404
- function generator$t() {
5866
+ function generator$x() {
5405
5867
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5406
5868
  const {
5407
5869
  prefix: globalPrefix
@@ -5422,7 +5884,7 @@ var tailwindToStyle = (function (exports) {
5422
5884
  return responsiveCssString;
5423
5885
  }
5424
5886
 
5425
- function generator$s() {
5887
+ function generator$w() {
5426
5888
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5427
5889
  const {
5428
5890
  prefix: globalPrefix
@@ -5443,7 +5905,7 @@ var tailwindToStyle = (function (exports) {
5443
5905
  return responsiveCssString;
5444
5906
  }
5445
5907
 
5446
- function generator$r() {
5908
+ function generator$v() {
5447
5909
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5448
5910
  const {
5449
5911
  prefix: globalPrefix,
@@ -5483,7 +5945,7 @@ var tailwindToStyle = (function (exports) {
5483
5945
  return responsiveCssString;
5484
5946
  }
5485
5947
 
5486
- function generator$q() {
5948
+ function generator$u() {
5487
5949
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5488
5950
  const {
5489
5951
  prefix
@@ -5508,7 +5970,7 @@ var tailwindToStyle = (function (exports) {
5508
5970
  return responsiveCssString;
5509
5971
  }
5510
5972
 
5511
- function generator$p() {
5973
+ function generator$t() {
5512
5974
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5513
5975
  const {
5514
5976
  prefix: globalPrefix,
@@ -5547,7 +6009,7 @@ var tailwindToStyle = (function (exports) {
5547
6009
  return responsiveCssString;
5548
6010
  }
5549
6011
 
5550
- function generator$o() {
6012
+ function generator$s() {
5551
6013
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5552
6014
  const {
5553
6015
  prefix: globalPrefix
@@ -5568,7 +6030,7 @@ var tailwindToStyle = (function (exports) {
5568
6030
  return responsiveCssString;
5569
6031
  }
5570
6032
 
5571
- function generator$n() {
6033
+ function generator$r() {
5572
6034
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5573
6035
  const {
5574
6036
  prefix: globalPrefix,
@@ -5592,7 +6054,7 @@ var tailwindToStyle = (function (exports) {
5592
6054
  return responsiveCssString;
5593
6055
  }
5594
6056
 
5595
- function generator$m() {
6057
+ function generator$q() {
5596
6058
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5597
6059
  const {
5598
6060
  prefix: globalPrefix,
@@ -5627,7 +6089,7 @@ var tailwindToStyle = (function (exports) {
5627
6089
  return responsiveCssString;
5628
6090
  }
5629
6091
 
5630
- function generator$l() {
6092
+ function generator$p() {
5631
6093
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5632
6094
  const {
5633
6095
  prefix: globalPrefix,
@@ -5651,7 +6113,7 @@ var tailwindToStyle = (function (exports) {
5651
6113
  return responsiveCssString;
5652
6114
  }
5653
6115
 
5654
- function generator$k() {
6116
+ function generator$o() {
5655
6117
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5656
6118
  const {
5657
6119
  prefix
@@ -5676,7 +6138,7 @@ var tailwindToStyle = (function (exports) {
5676
6138
  return responsiveCssString;
5677
6139
  }
5678
6140
 
5679
- function generator$j() {
6141
+ function generator$n() {
5680
6142
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5681
6143
  const {
5682
6144
  prefix: globalPrefix,
@@ -5703,7 +6165,7 @@ var tailwindToStyle = (function (exports) {
5703
6165
  return responsiveCssString;
5704
6166
  }
5705
6167
 
5706
- function generator$i() {
6168
+ function generator$m() {
5707
6169
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5708
6170
  const {
5709
6171
  prefix: globalPrefix,
@@ -5741,7 +6203,7 @@ var tailwindToStyle = (function (exports) {
5741
6203
  return responsiveCssString;
5742
6204
  }
5743
6205
 
5744
- function generator$h() {
6206
+ function generator$l() {
5745
6207
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5746
6208
  const {
5747
6209
  prefix: globalPrefix,
@@ -5768,7 +6230,7 @@ var tailwindToStyle = (function (exports) {
5768
6230
  return responsiveCssString;
5769
6231
  }
5770
6232
 
5771
- function generator$g() {
6233
+ function generator$k() {
5772
6234
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5773
6235
  const {
5774
6236
  prefix: globalPrefix,
@@ -5795,7 +6257,7 @@ var tailwindToStyle = (function (exports) {
5795
6257
  return responsiveCssString;
5796
6258
  }
5797
6259
 
5798
- function generator$f() {
6260
+ function generator$j() {
5799
6261
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5800
6262
  const {
5801
6263
  prefix: globalPrefix,
@@ -5822,7 +6284,7 @@ var tailwindToStyle = (function (exports) {
5822
6284
  return responsiveCssString;
5823
6285
  }
5824
6286
 
5825
- function generator$e() {
6287
+ function generator$i() {
5826
6288
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5827
6289
  const {
5828
6290
  prefix
@@ -5847,7 +6309,7 @@ var tailwindToStyle = (function (exports) {
5847
6309
  return responsiveCssString;
5848
6310
  }
5849
6311
 
5850
- function generator$d() {
6312
+ function generator$h() {
5851
6313
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5852
6314
  const {
5853
6315
  prefix: globalPrefix,
@@ -5871,7 +6333,7 @@ var tailwindToStyle = (function (exports) {
5871
6333
  return responsiveCssString;
5872
6334
  }
5873
6335
 
5874
- function generator$c() {
6336
+ function generator$g() {
5875
6337
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5876
6338
  const {
5877
6339
  prefix
@@ -5891,7 +6353,7 @@ var tailwindToStyle = (function (exports) {
5891
6353
  return responsiveCssString;
5892
6354
  }
5893
6355
 
5894
- function generator$b() {
6356
+ function generator$f() {
5895
6357
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5896
6358
  const {
5897
6359
  prefix: globalPrefix
@@ -5912,7 +6374,7 @@ var tailwindToStyle = (function (exports) {
5912
6374
  return responsiveCssString;
5913
6375
  }
5914
6376
 
5915
- function generator$a(_ref) {
6377
+ function generator$e(_ref) {
5916
6378
  let {
5917
6379
  prefix
5918
6380
  } = _ref;
@@ -5923,7 +6385,7 @@ var tailwindToStyle = (function (exports) {
5923
6385
  `;
5924
6386
  }
5925
6387
 
5926
- function generator$9() {
6388
+ function generator$d() {
5927
6389
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5928
6390
  const {
5929
6391
  prefix: globalPrefix
@@ -5944,6 +6406,140 @@ var tailwindToStyle = (function (exports) {
5944
6406
  return responsiveCssString;
5945
6407
  }
5946
6408
 
6409
+ /**
6410
+ * Transition Delay Generator
6411
+ * Generates transition-delay utility classes
6412
+ */
6413
+ function generator$c() {
6414
+ let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
6415
+ const {
6416
+ prefix: globalPrefix,
6417
+ theme = {}
6418
+ } = configOptions;
6419
+ const prefix = `${globalPrefix}delay`;
6420
+ const {
6421
+ transitionDelay = {}
6422
+ } = theme;
6423
+ const responsiveCssString = generateCssString$1(_ref => {
6424
+ let {
6425
+ getCssByOptions
6426
+ } = _ref;
6427
+ const cssString = getCssByOptions(transitionDelay, (key, value) => {
6428
+ return `
6429
+ ${prefix}-${key} {
6430
+ transition-delay: ${value};
6431
+ }
6432
+ `;
6433
+ });
6434
+ return cssString;
6435
+ }, configOptions);
6436
+ return responsiveCssString;
6437
+ }
6438
+
6439
+ /**
6440
+ * Transition Duration Generator
6441
+ * Generates transition-duration utility classes
6442
+ */
6443
+ function generator$b() {
6444
+ let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
6445
+ const {
6446
+ prefix: globalPrefix,
6447
+ theme = {}
6448
+ } = configOptions;
6449
+ const prefix = `${globalPrefix}duration`;
6450
+ const {
6451
+ transitionDuration = {}
6452
+ } = theme;
6453
+ const responsiveCssString = generateCssString$1(_ref => {
6454
+ let {
6455
+ getCssByOptions
6456
+ } = _ref;
6457
+ const cssString = getCssByOptions(transitionDuration, (key, value) => {
6458
+ return `
6459
+ ${prefix}-${key} {
6460
+ transition-duration: ${value};
6461
+ }
6462
+ `;
6463
+ });
6464
+ return cssString;
6465
+ }, configOptions);
6466
+ return responsiveCssString;
6467
+ }
6468
+
6469
+ /**
6470
+ * Transition Property Generator
6471
+ * Generates transition-property utility classes
6472
+ */
6473
+ function generator$a() {
6474
+ let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
6475
+ const {
6476
+ prefix: globalPrefix,
6477
+ theme = {}
6478
+ } = configOptions;
6479
+ const prefix = `${globalPrefix}transition`;
6480
+ const {
6481
+ transitionProperty = {}
6482
+ } = theme;
6483
+ const responsiveCssString = generateCssString$1(_ref => {
6484
+ let {
6485
+ getCssByOptions
6486
+ } = _ref;
6487
+ const cssString = getCssByOptions(transitionProperty, (key, value) => {
6488
+ if (key === "DEFAULT") {
6489
+ return `
6490
+ ${globalPrefix}transition {
6491
+ transition-property: ${value};
6492
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
6493
+ transition-duration: 150ms;
6494
+ }
6495
+ `;
6496
+ }
6497
+ return `
6498
+ ${prefix}-${key} {
6499
+ transition-property: ${value};
6500
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
6501
+ transition-duration: 150ms;
6502
+ }
6503
+ `;
6504
+ });
6505
+ return cssString;
6506
+ }, configOptions);
6507
+ return responsiveCssString;
6508
+ }
6509
+
6510
+ /**
6511
+ * Transition Timing Function Generator
6512
+ * Generates transition-timing-function utility classes (ease)
6513
+ */
6514
+ function generator$9() {
6515
+ let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
6516
+ const {
6517
+ prefix: globalPrefix,
6518
+ theme = {}
6519
+ } = configOptions;
6520
+ const prefix = `${globalPrefix}ease`;
6521
+ const {
6522
+ transitionTimingFunction = {}
6523
+ } = theme;
6524
+ const responsiveCssString = generateCssString$1(_ref => {
6525
+ let {
6526
+ getCssByOptions
6527
+ } = _ref;
6528
+ const cssString = getCssByOptions(transitionTimingFunction, (key, value) => {
6529
+ if (key === "DEFAULT") {
6530
+ return ""; // Skip DEFAULT for ease
6531
+ }
6532
+ return `
6533
+ ${prefix}-${key} {
6534
+ transition-timing-function: ${value};
6535
+ }
6536
+ `;
6537
+ });
6538
+ return cssString;
6539
+ }, configOptions);
6540
+ return responsiveCssString;
6541
+ }
6542
+
5947
6543
  function generator$8() {
5948
6544
  let configOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
5949
6545
  const {
@@ -6182,6 +6778,293 @@ var tailwindToStyle = (function (exports) {
6182
6778
  return responsiveCssString;
6183
6779
  }
6184
6780
 
6781
+ /**
6782
+ * Proper LRU (Least Recently Used) Cache implementation
6783
+ * Efficiently manages memory by removing least recently used items
6784
+ */
6785
+ class LRUCache {
6786
+ constructor() {
6787
+ let maxSize = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1000;
6788
+ this.maxSize = maxSize;
6789
+ this.cache = new Map();
6790
+ }
6791
+
6792
+ /**
6793
+ * Get value from cache
6794
+ * Updates the item as most recently used
6795
+ */
6796
+ get(key) {
6797
+ if (!this.cache.has(key)) {
6798
+ return undefined;
6799
+ }
6800
+ const value = this.cache.get(key);
6801
+ // Move to end (most recently used)
6802
+ this.cache.delete(key);
6803
+ this.cache.set(key, value);
6804
+ return value;
6805
+ }
6806
+
6807
+ /**
6808
+ * Set value in cache
6809
+ * Removes least recently used item if cache is full
6810
+ */
6811
+ set(key, value) {
6812
+ // If key exists, delete it first to update position
6813
+ if (this.cache.has(key)) {
6814
+ this.cache.delete(key);
6815
+ } else if (this.cache.size >= this.maxSize) {
6816
+ // Remove least recently used (first item)
6817
+ const firstKey = this.cache.keys().next().value;
6818
+ this.cache.delete(firstKey);
6819
+ }
6820
+ this.cache.set(key, value);
6821
+ }
6822
+
6823
+ /**
6824
+ * Check if key exists in cache
6825
+ */
6826
+ has(key) {
6827
+ return this.cache.has(key);
6828
+ }
6829
+
6830
+ /**
6831
+ * Clear all cache entries
6832
+ */
6833
+ clear() {
6834
+ this.cache.clear();
6835
+ }
6836
+
6837
+ /**
6838
+ * Get current cache size
6839
+ */
6840
+ get size() {
6841
+ return this.cache.size;
6842
+ }
6843
+
6844
+ /**
6845
+ * Delete specific key
6846
+ */
6847
+ delete(key) {
6848
+ return this.cache.delete(key);
6849
+ }
6850
+ }
6851
+
6852
+ /**
6853
+ * Custom error class for tailwind-to-style
6854
+ */
6855
+ class TwsError extends Error {
6856
+ constructor(message) {
6857
+ let context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
6858
+ super(message);
6859
+ this.name = 'TwsError';
6860
+ this.context = context;
6861
+ this.timestamp = new Date().toISOString();
6862
+ }
6863
+ }
6864
+
6865
+ /**
6866
+ * Error event handlers
6867
+ */
6868
+ const errorHandlers = new Set();
6869
+
6870
+ /**
6871
+ * Register an error handler
6872
+ * @param {Function} handler - Function to call when errors occur
6873
+ * @returns {Function} Unsubscribe function
6874
+ */
6875
+ function onError(handler) {
6876
+ if (typeof handler !== 'function') {
6877
+ throw new TypeError('Error handler must be a function');
6878
+ }
6879
+ errorHandlers.add(handler);
6880
+
6881
+ // Return unsubscribe function
6882
+ return () => errorHandlers.delete(handler);
6883
+ }
6884
+
6885
+ /**
6886
+ * Handle and broadcast errors
6887
+ * @param {Error} error - The error that occurred
6888
+ * @param {Object} context - Additional context about the error
6889
+ */
6890
+ function handleError(error) {
6891
+ let context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
6892
+ const twsError = error instanceof TwsError ? error : new TwsError(error.message, context);
6893
+
6894
+ // Log the error
6895
+ logger.error(twsError.message, twsError.context);
6896
+
6897
+ // Notify all registered handlers
6898
+ errorHandlers.forEach(handler => {
6899
+ try {
6900
+ handler(twsError);
6901
+ } catch (handlerError) {
6902
+ logger.error('Error in error handler:', handlerError);
6903
+ }
6904
+ });
6905
+ return twsError;
6906
+ }
6907
+
6908
+ /**
6909
+ * Plugin API for tailwind-to-style
6910
+ * Allows users to create custom utilities and extend functionality
6911
+ */
6912
+
6913
+ /**
6914
+ * Create a plugin for tailwind-to-style
6915
+ *
6916
+ * @param {string} name - Plugin name
6917
+ * @param {Object} definition - Plugin definition
6918
+ * @param {Object} [definition.utilities] - Custom utility classes
6919
+ * @param {Object} [definition.components] - Custom component classes
6920
+ * @param {Function} [definition.handler] - Custom handler function
6921
+ * @returns {Object} Plugin object
6922
+ *
6923
+ * @example
6924
+ * const myPlugin = createPlugin('my-plugin', {
6925
+ * utilities: {
6926
+ * '.text-gradient': {
6927
+ * 'background-clip': 'text',
6928
+ * '-webkit-background-clip': 'text',
6929
+ * '-webkit-text-fill-color': 'transparent',
6930
+ * },
6931
+ * '.glass': {
6932
+ * 'backdrop-filter': 'blur(10px)',
6933
+ * 'background-color': 'rgba(255, 255, 255, 0.1)',
6934
+ * },
6935
+ * },
6936
+ * });
6937
+ */
6938
+ function createPlugin(name, definition) {
6939
+ if (!name || typeof name !== "string") {
6940
+ throw new Error("Plugin name must be a non-empty string");
6941
+ }
6942
+ if (!definition || typeof definition !== "object") {
6943
+ throw new Error("Plugin definition must be an object");
6944
+ }
6945
+ const plugin = {
6946
+ name,
6947
+ type: "user-plugin",
6948
+ utilities: definition.utilities || {},
6949
+ components: definition.components || {},
6950
+ handler: definition.handler || null
6951
+ };
6952
+ logger.debug(`Created plugin: ${name}`);
6953
+ return plugin;
6954
+ }
6955
+
6956
+ /**
6957
+ * Create a utility plugin with dynamic values
6958
+ *
6959
+ * @param {string} name - Plugin name
6960
+ * @param {Object} config - Configuration
6961
+ * @param {string} config.prefix - Class prefix (e.g., 'text', 'bg')
6962
+ * @param {Object} config.values - Values object
6963
+ * @param {Function} config.formatter - Function to format CSS properties
6964
+ * @returns {Object} Plugin object
6965
+ *
6966
+ * @example
6967
+ * const textShadowPlugin = createUtilityPlugin('text-shadow', {
6968
+ * prefix: 'text-shadow',
6969
+ * values: {
6970
+ * sm: '1px 1px 2px rgba(0,0,0,0.1)',
6971
+ * md: '2px 2px 4px rgba(0,0,0,0.1)',
6972
+ * lg: '4px 4px 8px rgba(0,0,0,0.1)',
6973
+ * },
6974
+ * formatter: (value) => ({
6975
+ * 'text-shadow': value,
6976
+ * }),
6977
+ * });
6978
+ */
6979
+ function createUtilityPlugin(name, config) {
6980
+ const {
6981
+ prefix,
6982
+ values,
6983
+ formatter
6984
+ } = config;
6985
+ if (!prefix || !values || !formatter) {
6986
+ throw new Error("createUtilityPlugin requires prefix, values, and formatter");
6987
+ }
6988
+ const utilities = {};
6989
+ for (const [key, value] of Object.entries(values)) {
6990
+ const className = `.${prefix}-${key}`;
6991
+ const cssProps = formatter(value, key);
6992
+ utilities[className] = cssProps;
6993
+ }
6994
+ return createPlugin(name, {
6995
+ utilities
6996
+ });
6997
+ }
6998
+
6999
+ /**
7000
+ * Create a variant plugin
7001
+ *
7002
+ * @param {string} name - Plugin name
7003
+ * @param {Function} handler - Variant handler function
7004
+ * @returns {Object} Plugin object
7005
+ *
7006
+ * @example
7007
+ * const hoverParentPlugin = createVariantPlugin('hover-parent', (selector) => {
7008
+ * return `.parent:hover ${selector}`;
7009
+ * });
7010
+ */
7011
+ function createVariantPlugin(name, handler) {
7012
+ if (!handler || typeof handler !== "function") {
7013
+ throw new Error("Variant handler must be a function");
7014
+ }
7015
+ return createPlugin(name, {
7016
+ handler: {
7017
+ type: "variant",
7018
+ fn: handler
7019
+ }
7020
+ });
7021
+ }
7022
+
7023
+ /**
7024
+ * Convert plugin utilities to lookup object
7025
+ * @param {Object} plugin - Plugin object
7026
+ * @param {string} [prefix] - Optional prefix for all classes
7027
+ * @returns {Object} Lookup object
7028
+ */
7029
+ function pluginToLookup(plugin) {
7030
+ let prefix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
7031
+ const lookup = {};
7032
+
7033
+ // Process utilities
7034
+ if (plugin.utilities) {
7035
+ for (const [className, props] of Object.entries(plugin.utilities)) {
7036
+ // Remove leading dot and add prefix
7037
+ const key = prefix ? `${prefix}${className.slice(1)}` : className.slice(1);
7038
+ if (typeof props === "string") {
7039
+ lookup[key] = props;
7040
+ } else {
7041
+ let cssString = "";
7042
+ for (const [prop, value] of Object.entries(props)) {
7043
+ cssString += `${prop}: ${value}; `;
7044
+ }
7045
+ lookup[key] = cssString.trim();
7046
+ }
7047
+ }
7048
+ }
7049
+
7050
+ // Process components
7051
+ if (plugin.components) {
7052
+ for (const [className, props] of Object.entries(plugin.components)) {
7053
+ const key = prefix ? `${prefix}${className.slice(1)}` : className.slice(1);
7054
+ if (typeof props === "string") {
7055
+ lookup[key] = props;
7056
+ } else {
7057
+ let cssString = "";
7058
+ for (const [prop, value] of Object.entries(props)) {
7059
+ cssString += `${prop}: ${value}; `;
7060
+ }
7061
+ lookup[key] = cssString.trim();
7062
+ }
7063
+ }
7064
+ }
7065
+ return lookup;
7066
+ }
7067
+
6185
7068
  const transition = {
6186
7069
  transitionNone: {
6187
7070
  regex: /^transition-none$/,
@@ -6261,153 +7144,158 @@ var tailwindToStyle = (function (exports) {
6261
7144
  };
6262
7145
 
6263
7146
  const plugins = {
6264
- accentColor: generator$2r,
6265
- accessibility: generator$2q,
6266
- alignContent: generator$2p,
6267
- alignItems: generator$2o,
6268
- alignSelf: generator$2n,
6269
- appearance: generator$2m,
6270
- aspect: generator$2l,
6271
- backgroundAttachment: generator$2k,
6272
- backgroundClip: generator$2j,
6273
- backgroundColor: generator$2i,
6274
- backgroundImage: generator$2h,
6275
- backgroundOpacity: generator$2g,
6276
- backgroundOrigin: generator$2f,
6277
- backgroundPosition: generator$2e,
6278
- backgroundRepeat: generator$2d,
6279
- backgroundSize: generator$2c,
6280
- blur: generator$2b,
6281
- borderCollapse: generator$2a,
6282
- borderColor: generator$29,
6283
- borderOpacity: generator$28,
6284
- borderRadius: generator$27,
6285
- borderSpacing: generator$26,
6286
- borderStyle: generator$25,
6287
- borderWidth: generator$24,
6288
- boxDecorationBreak: generator$23,
6289
- boxShadow: generator$22,
6290
- boxSizing: generator$21,
6291
- brightness: generator$20,
6292
- captionSide: generator$1$,
6293
- caretColor: generator$1_,
6294
- clear: generator$1Z,
6295
- content: generator$1Y,
6296
- contrast: generator$1X,
6297
- cursor: generator$1W,
6298
- display: generator$1V,
6299
- divideColor: generator$1U,
6300
- divideOpacity: generator$1T,
6301
- divideStyle: generator$1S,
6302
- divideWidth: generator$1R,
6303
- dropShadow: generator$1Q,
6304
- fill: generator$1P,
6305
- filter: generator$1O,
6306
- flex: generator$1N,
6307
- flexBasis: generator$1M,
6308
- flexDirection: generator$1L,
6309
- flexGrow: generator$1K,
6310
- flexShrink: generator$1J,
6311
- flexWrap: generator$1I,
6312
- float: generator$1H,
6313
- fontSize: generator$1G,
6314
- fontSmoothing: generator$1F,
6315
- fontStyle: generator$1E,
6316
- fontVariantNumeric: generator$1D,
6317
- fontWeight: generator$1C,
6318
- gap: generator$1B,
6319
- gradientColorStops: generator$1A,
6320
- grayscale: generator$1z,
6321
- gridAutoColumns: generator$1y,
6322
- gridAutoFlow: generator$1x,
6323
- gridAutoRows: generator$1w,
6324
- gridColumn: generator$1v,
6325
- gridColumnEnd: generator$1u,
6326
- gridColumnStart: generator$1t,
6327
- gridRow: generator$1s,
6328
- gridRowEnd: generator$1r,
6329
- gridRowStart: generator$1q,
6330
- gridTemplateColumns: generator$1p,
6331
- gridTemplateRows: generator$1o,
6332
- height: generator$1n,
6333
- hueRotate: generator$1m,
6334
- hyphens: generator$1l,
6335
- inset: generator$1k,
6336
- invert: generator$1j,
6337
- isolation: generator$1i,
6338
- justifyContent: generator$1h,
6339
- justifyItems: generator$1g,
6340
- justifySelf: generator$1f,
6341
- letterSpacing: generator$1e,
6342
- lineClamp: generator$1d,
6343
- lineHeight: generator$1c,
6344
- listStylePosition: generator$1b,
6345
- listStyleType: generator$1a,
6346
- margin: generator$19,
6347
- maxHeight: generator$18,
6348
- maxWidth: generator$17,
6349
- minHeight: generator$16,
6350
- minWidth: generator$15,
6351
- objectFit: generator$13,
6352
- mixBlendMode: generator$14,
6353
- objectPosition: generator$12,
6354
- opacity: generator$11,
6355
- order: generator$10,
6356
- outlineColor: generator$$,
6357
- outlineOffset: generator$_,
6358
- outlineOpacity: generator$Z,
6359
- outlineStyle: generator$Y,
6360
- outlineWidth: generator$X,
6361
- overflow: generator$W,
6362
- overscrollBehavior: generator$V,
6363
- padding: generator$U,
6364
- placeContent: generator$T,
6365
- placeItems: generator$S,
6366
- placeSelf: generator$R,
6367
- pointerEvents: generator$Q,
6368
- position: generator$P,
6369
- resize: generator$O,
6370
- ringColor: generator$N,
6371
- ringOffsetColor: generator$M,
6372
- ringOffsetWidth: generator$L,
6373
- ringOpacity: generator$K,
6374
- ringWidth: generator$J,
6375
- rotate: generator$H,
6376
- saturate: generator$I,
6377
- scale: generator$G,
6378
- scrollBehavior: generator$F,
6379
- scrollMargin: generator$E,
6380
- scrollPadding: generator$D,
6381
- scrollSnapAlign: generator$C,
6382
- scrollSnapStop: generator$B,
6383
- scrollSnapType: generator$A,
6384
- sepia: generator$z,
6385
- size: generator$y,
6386
- skew: generator$x,
6387
- space: generator$w,
6388
- stroke: generator$v,
6389
- strokeWidth: generator$u,
6390
- tableLayout: generator$t,
6391
- textAlign: generator$s,
6392
- textColor: generator$r,
6393
- textDecoration: generator$q,
6394
- textDecorationColor: generator$p,
6395
- textDecorationStyle: generator$o,
6396
- textDecorationThickness: generator$n,
6397
- textIndent: generator$m,
6398
- textOpacity: generator$l,
6399
- textOverflow: generator$k,
6400
- textShadowBlur: generator$j,
6401
- textShadowColor: generator$i,
6402
- textShadowOpacity: generator$h,
6403
- textShadowX: generator$g,
6404
- textShadowY: generator$f,
6405
- textTransform: generator$e,
6406
- textUnderlineOffset: generator$d,
6407
- textWrap: generator$c,
6408
- touchAction: generator$b,
6409
- transform: generator$a,
6410
- transformOrigin: generator$9,
7147
+ accentColor: generator$2w,
7148
+ accessibility: generator$2v,
7149
+ alignContent: generator$2u,
7150
+ alignItems: generator$2t,
7151
+ alignSelf: generator$2s,
7152
+ animation: generator$2r,
7153
+ appearance: generator$2q,
7154
+ aspect: generator$2p,
7155
+ backgroundAttachment: generator$2o,
7156
+ backgroundClip: generator$2n,
7157
+ backgroundColor: generator$2m,
7158
+ backgroundImage: generator$2l,
7159
+ backgroundOpacity: generator$2k,
7160
+ backgroundOrigin: generator$2j,
7161
+ backgroundPosition: generator$2i,
7162
+ backgroundRepeat: generator$2h,
7163
+ backgroundSize: generator$2g,
7164
+ blur: generator$2f,
7165
+ borderCollapse: generator$2e,
7166
+ borderColor: generator$2d,
7167
+ borderOpacity: generator$2c,
7168
+ borderRadius: generator$2b,
7169
+ borderSpacing: generator$2a,
7170
+ borderStyle: generator$29,
7171
+ borderWidth: generator$28,
7172
+ boxDecorationBreak: generator$27,
7173
+ boxShadow: generator$26,
7174
+ boxSizing: generator$25,
7175
+ brightness: generator$24,
7176
+ captionSide: generator$23,
7177
+ caretColor: generator$22,
7178
+ clear: generator$21,
7179
+ content: generator$20,
7180
+ contrast: generator$1$,
7181
+ cursor: generator$1_,
7182
+ display: generator$1Z,
7183
+ divideColor: generator$1Y,
7184
+ divideOpacity: generator$1X,
7185
+ divideStyle: generator$1W,
7186
+ divideWidth: generator$1V,
7187
+ dropShadow: generator$1U,
7188
+ fill: generator$1T,
7189
+ filter: generator$1S,
7190
+ flex: generator$1R,
7191
+ flexBasis: generator$1Q,
7192
+ flexDirection: generator$1P,
7193
+ flexGrow: generator$1O,
7194
+ flexShrink: generator$1N,
7195
+ flexWrap: generator$1M,
7196
+ float: generator$1L,
7197
+ fontSize: generator$1K,
7198
+ fontSmoothing: generator$1J,
7199
+ fontStyle: generator$1I,
7200
+ fontVariantNumeric: generator$1H,
7201
+ fontWeight: generator$1G,
7202
+ gap: generator$1F,
7203
+ gradientColorStops: generator$1E,
7204
+ grayscale: generator$1D,
7205
+ gridAutoColumns: generator$1C,
7206
+ gridAutoFlow: generator$1B,
7207
+ gridAutoRows: generator$1A,
7208
+ gridColumn: generator$1z,
7209
+ gridColumnEnd: generator$1y,
7210
+ gridColumnStart: generator$1x,
7211
+ gridRow: generator$1w,
7212
+ gridRowEnd: generator$1v,
7213
+ gridRowStart: generator$1u,
7214
+ gridTemplateColumns: generator$1t,
7215
+ gridTemplateRows: generator$1s,
7216
+ height: generator$1r,
7217
+ hueRotate: generator$1q,
7218
+ hyphens: generator$1p,
7219
+ inset: generator$1o,
7220
+ invert: generator$1n,
7221
+ isolation: generator$1m,
7222
+ justifyContent: generator$1l,
7223
+ justifyItems: generator$1k,
7224
+ justifySelf: generator$1j,
7225
+ letterSpacing: generator$1i,
7226
+ lineClamp: generator$1h,
7227
+ lineHeight: generator$1g,
7228
+ listStylePosition: generator$1f,
7229
+ listStyleType: generator$1e,
7230
+ margin: generator$1d,
7231
+ maxHeight: generator$1c,
7232
+ maxWidth: generator$1b,
7233
+ minHeight: generator$1a,
7234
+ minWidth: generator$19,
7235
+ objectFit: generator$17,
7236
+ mixBlendMode: generator$18,
7237
+ objectPosition: generator$16,
7238
+ opacity: generator$15,
7239
+ order: generator$14,
7240
+ outlineColor: generator$13,
7241
+ outlineOffset: generator$12,
7242
+ outlineOpacity: generator$11,
7243
+ outlineStyle: generator$10,
7244
+ outlineWidth: generator$$,
7245
+ overflow: generator$_,
7246
+ overscrollBehavior: generator$Z,
7247
+ padding: generator$Y,
7248
+ placeContent: generator$X,
7249
+ placeItems: generator$W,
7250
+ placeSelf: generator$V,
7251
+ pointerEvents: generator$U,
7252
+ position: generator$T,
7253
+ resize: generator$S,
7254
+ ringColor: generator$R,
7255
+ ringOffsetColor: generator$Q,
7256
+ ringOffsetWidth: generator$P,
7257
+ ringOpacity: generator$O,
7258
+ ringWidth: generator$N,
7259
+ rotate: generator$L,
7260
+ saturate: generator$M,
7261
+ scale: generator$K,
7262
+ scrollBehavior: generator$J,
7263
+ scrollMargin: generator$I,
7264
+ scrollPadding: generator$H,
7265
+ scrollSnapAlign: generator$G,
7266
+ scrollSnapStop: generator$F,
7267
+ scrollSnapType: generator$E,
7268
+ sepia: generator$D,
7269
+ size: generator$C,
7270
+ skew: generator$B,
7271
+ space: generator$A,
7272
+ stroke: generator$z,
7273
+ strokeWidth: generator$y,
7274
+ tableLayout: generator$x,
7275
+ textAlign: generator$w,
7276
+ textColor: generator$v,
7277
+ textDecoration: generator$u,
7278
+ textDecorationColor: generator$t,
7279
+ textDecorationStyle: generator$s,
7280
+ textDecorationThickness: generator$r,
7281
+ textIndent: generator$q,
7282
+ textOpacity: generator$p,
7283
+ textOverflow: generator$o,
7284
+ textShadowBlur: generator$n,
7285
+ textShadowColor: generator$m,
7286
+ textShadowOpacity: generator$l,
7287
+ textShadowX: generator$k,
7288
+ textShadowY: generator$j,
7289
+ textTransform: generator$i,
7290
+ textUnderlineOffset: generator$h,
7291
+ textWrap: generator$g,
7292
+ touchAction: generator$f,
7293
+ transform: generator$e,
7294
+ transformOrigin: generator$d,
7295
+ transitionDelay: generator$c,
7296
+ transitionDuration: generator$b,
7297
+ transitionProperty: generator$a,
7298
+ transitionTimingFunction: generator$9,
6411
7299
  translate: generator$8,
6412
7300
  userSelect: generator$7,
6413
7301
  verticalAlign: generator$6,
@@ -6434,10 +7322,10 @@ var tailwindToStyle = (function (exports) {
6434
7322
  return null;
6435
7323
  }
6436
7324
 
6437
- /**
6438
- * Resolve all CSS custom properties (var) in a CSS string and output only clear CSS (no custom property)
6439
- * @param {string} cssString
6440
- * @returns {string} e.g. 'color: rgba(255,255,255,1); background: #fff;'
7325
+ /**
7326
+ * Resolve all CSS custom properties (var) in a CSS string and output only clear CSS (no custom property)
7327
+ * @param {string} cssString
7328
+ * @returns {string} e.g. 'color: rgba(255,255,255,1); background: #fff;'
6441
7329
  */
6442
7330
  function resolveCssToClearCss(cssString) {
6443
7331
  const customVars = {};
@@ -6464,17 +7352,15 @@ var tailwindToStyle = (function (exports) {
6464
7352
  }).join(" ");
6465
7353
  }
6466
7354
 
6467
- // Cache for getConfigOptions
6468
- const configOptionsCache = new Map();
6469
- const cacheKey = options => JSON.stringify(options);
7355
+ // Cache for getConfigOptions - use LRU cache
7356
+ const configOptionsCache = new LRUCache(500);
6470
7357
  function generateTailwindCssString() {
6471
7358
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
6472
7359
  const pluginKeys = Object.keys(plugins);
6473
7360
  // Use cache to prevent unnecessary reprocessing
6474
- const key = cacheKey(options);
7361
+ const key = JSON.stringify(options);
6475
7362
  if (!configOptionsCache.has(key)) {
6476
7363
  configOptionsCache.set(key, getConfigOptions(options, pluginKeys));
6477
- limitCacheSize(configOptionsCache);
6478
7364
  }
6479
7365
  const configOptions = configOptionsCache.get(key);
6480
7366
  const {
@@ -6500,16 +7386,20 @@ var tailwindToStyle = (function (exports) {
6500
7386
  const cssRules = match[2].trim().replace(/\s+/g, " ");
6501
7387
  obj[className] = cssRules;
6502
7388
  }
7389
+
7390
+ // Add plugin utilities to the lookup object
7391
+ const plugins = getPlugins();
7392
+ const configOptions = getConfigOptions();
7393
+ const prefix = configOptions.prefix || "";
7394
+ plugins.forEach(plugin => {
7395
+ const pluginLookup = pluginToLookup(plugin, prefix);
7396
+ Object.assign(obj, pluginLookup);
7397
+ });
6503
7398
  return obj;
6504
7399
  }
6505
- let twString = null;
6506
- let cssObject = null;
6507
- if (!twString) {
6508
- twString = generateTailwindCssString().replace(/\s\s+/g, " ");
6509
- }
6510
- if (!cssObject) {
6511
- cssObject = convertCssToObject(twString);
6512
- }
7400
+
7401
+ // Use singleton cache instead of global variables
7402
+ const tailwindCache = getTailwindCache();
6513
7403
  const fractionDenominators = [2, 3, 4, 5, 6, 12];
6514
7404
  const fractionPrefixes = ["w-", "h-", "max-w-", "max-h-", "min-w-", "min-h-", "top-", "bottom-", "left-", "right-", "inset-", "inset-x-", "inset-y-", "translate-x-", "translate-y-", "rounded-t-", "rounded-b-", "rounded-l-", "rounded-r-", "rounded-bl-", "rounded-br-", "rounded-tl-", "rounded-tr-", "flex-basis-", "z-"];
6515
7405
  const breakpoints = {
@@ -6535,7 +7425,7 @@ var tailwindToStyle = (function (exports) {
6535
7425
  };
6536
7426
 
6537
7427
  // Optimize encoding/decoding bracket values with memoization
6538
- const encodeBracketCache = new Map();
7428
+ const encodeBracketCache = new LRUCache(1000);
6539
7429
  function encodeBracketValues(input) {
6540
7430
  if (!input) return input;
6541
7431
  if (encodeBracketCache.has(input)) return encodeBracketCache.get(input);
@@ -6544,16 +7434,14 @@ var tailwindToStyle = (function (exports) {
6544
7434
  return `[${encoded}]`;
6545
7435
  });
6546
7436
  encodeBracketCache.set(input, result);
6547
- limitCacheSize(encodeBracketCache);
6548
7437
  return result;
6549
7438
  }
6550
- const decodeBracketCache = new Map();
7439
+ const decodeBracketCache = new LRUCache(1000);
6551
7440
  function decodeBracketValues(input) {
6552
7441
  if (!input) return input;
6553
7442
  if (decodeBracketCache.has(input)) return decodeBracketCache.get(input);
6554
7443
  const result = decodeURIComponent(input).replace(/__P__/g, "(").replace(/__C__/g, ")");
6555
7444
  decodeBracketCache.set(input, result);
6556
- limitCacheSize(decodeBracketCache);
6557
7445
  return result;
6558
7446
  }
6559
7447
  function replaceSelector(selector) {
@@ -6605,20 +7493,7 @@ var tailwindToStyle = (function (exports) {
6605
7493
  }
6606
7494
 
6607
7495
  // Cache for CSS resolution
6608
- const cssResolutionCache = new Map();
6609
-
6610
- // Enhanced cache management with performance monitoring
6611
- function limitCacheSize(cache) {
6612
- let maxSize = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1000;
6613
- if (cache.size > maxSize) {
6614
- const cleanupMarker = performanceMonitor.start("cache:cleanup");
6615
- // Remove 20% of the oldest entries
6616
- const entriesToRemove = Math.floor(cache.size * 0.2);
6617
- const keys = Array.from(cache.keys()).slice(0, entriesToRemove);
6618
- keys.forEach(key => cache.delete(key));
6619
- performanceMonitor.end(cleanupMarker);
6620
- }
6621
- }
7496
+ const cssResolutionCache = new LRUCache(1000);
6622
7497
 
6623
7498
  // Enhanced debounce with performance tracking
6624
7499
  function debounce(func) {
@@ -6640,7 +7515,7 @@ var tailwindToStyle = (function (exports) {
6640
7515
  return result;
6641
7516
  } catch (error) {
6642
7517
  performanceMonitor.end(marker);
6643
- console.error(`Debounced function error (call #${callCount}):`, error);
7518
+ logger.error(`Debounced function error (call #${callCount}):`, error);
6644
7519
  throw error;
6645
7520
  }
6646
7521
  }, wait);
@@ -6658,8 +7533,7 @@ var tailwindToStyle = (function (exports) {
6658
7533
  return cssResolutionCache.get(cacheKey);
6659
7534
  }
6660
7535
 
6661
- // Limit cache size to avoid memory leaks
6662
- limitCacheSize(cssResolutionCache);
7536
+ // Process CSS resolution
6663
7537
  const cssProperties = {};
6664
7538
  arr.forEach(item => {
6665
7539
  if (!item) return;
@@ -6678,7 +7552,7 @@ var tailwindToStyle = (function (exports) {
6678
7552
  }
6679
7553
  });
6680
7554
  } catch (error) {
6681
- console.warn("Error processing CSS declaration:", item, error);
7555
+ logger.warn("Error processing CSS declaration:", item, error);
6682
7556
  }
6683
7557
  });
6684
7558
  const resolvedProperties = {
@@ -6691,7 +7565,7 @@ var tailwindToStyle = (function (exports) {
6691
7565
  return variables[variable] || fallback || match;
6692
7566
  });
6693
7567
  } catch (error) {
6694
- console.warn("Error resolving CSS variable:", value, error);
7568
+ logger.warn("Error resolving CSS variable:", value, error);
6695
7569
  return value;
6696
7570
  }
6697
7571
  };
@@ -6716,16 +7590,16 @@ var tailwindToStyle = (function (exports) {
6716
7590
  return result;
6717
7591
  } catch (error) {
6718
7592
  performanceMonitor.end(marker);
6719
- console.error("Critical error in CSS resolution:", error);
7593
+ logger.error("Critical error in CSS resolution:", error);
6720
7594
  return "";
6721
7595
  }
6722
7596
  }
6723
7597
 
6724
- /**
6725
- * Process opacity modifier from class name (e.g., text-red-500/50 -> 50% opacity)
6726
- * @param {string} className - Class name with potential opacity modifier
6727
- * @param {string} cssDeclaration - CSS declaration to modify
6728
- * @returns {string} Modified CSS declaration with opacity applied
7598
+ /**
7599
+ * Process opacity modifier from class name (e.g., text-red-500/50 -> 50% opacity)
7600
+ * @param {string} className - Class name with potential opacity modifier
7601
+ * @param {string} cssDeclaration - CSS declaration to modify
7602
+ * @returns {string} Modified CSS declaration with opacity applied
6729
7603
  */
6730
7604
  function processOpacityModifier(className, cssDeclaration) {
6731
7605
  const opacityMatch = className.match(/\/(\d+)$/);
@@ -6786,15 +7660,17 @@ var tailwindToStyle = (function (exports) {
6786
7660
  return modifiedDeclaration;
6787
7661
  }
6788
7662
 
6789
- /**
6790
- * Convert Tailwind class string to inline CSS styles or JSON object
6791
- * @param {string} classNames - String containing Tailwind classes to convert
6792
- * @param {boolean} convertToJson - If true, result will be JSON object, if false becomes CSS string
6793
- * @returns {string|Object} Inline CSS string or style JSON object
7663
+ /**
7664
+ * Convert Tailwind class string to inline CSS styles or JSON object
7665
+ * @param {string} classNames - String containing Tailwind classes to convert
7666
+ * @param {boolean} convertToJson - If true, result will be JSON object, if false becomes CSS string
7667
+ * @returns {string|Object} Inline CSS string or style JSON object
6794
7668
  */
6795
7669
  function tws(classNames, convertToJson) {
6796
7670
  const totalMarker = performanceMonitor.start("tws:total");
6797
7671
  try {
7672
+ // Initialize CSS object using singleton cache
7673
+ const cssObject = tailwindCache.getOrGenerate(generateTailwindCssString, convertCssToObject);
6798
7674
  if ([!classNames, typeof classNames !== "string", classNames.trim() === ""].includes(true)) {
6799
7675
  performanceMonitor.end(totalMarker);
6800
7676
  return convertToJson ? {} : "";
@@ -6807,12 +7683,12 @@ var tailwindToStyle = (function (exports) {
6807
7683
 
6808
7684
  // If no valid classes are found
6809
7685
  if (!classes || classes.length === 0) {
6810
- console.warn(`No valid Tailwind classes found in input: "${classNames}"`);
7686
+ logger.warn(`No valid Tailwind classes found in input: "${classNames}"`);
6811
7687
  performanceMonitor.end(totalMarker);
6812
7688
  return convertToJson ? {} : "";
6813
7689
  }
6814
7690
  } catch (error) {
6815
- console.error(`Error parsing Tailwind classes: ${error.message}`);
7691
+ logger.error(`Error parsing Tailwind classes: ${error.message}`);
6816
7692
  performanceMonitor.end(totalMarker);
6817
7693
  return convertToJson ? {} : "";
6818
7694
  }
@@ -6876,7 +7752,10 @@ var tailwindToStyle = (function (exports) {
6876
7752
  return cssResult;
6877
7753
  } catch (error) {
6878
7754
  performanceMonitor.end(totalMarker);
6879
- console.error("tws error:", error);
7755
+ handleError(error, {
7756
+ classNames,
7757
+ convertToJson
7758
+ });
6880
7759
  return convertToJson ? {} : "";
6881
7760
  }
6882
7761
  }
@@ -6896,7 +7775,7 @@ var tailwindToStyle = (function (exports) {
6896
7775
  const duration = performance.now() - marker.startTime;
6897
7776
  if (duration > 5) {
6898
7777
  // Only log if > 5ms
6899
- console.warn(`Slow ${marker.label}: ${duration.toFixed(2)}ms`);
7778
+ logger.warn(`Slow ${marker.label}: ${duration.toFixed(2)}ms`);
6900
7779
  }
6901
7780
  },
6902
7781
  measure(fn, label) {
@@ -6954,7 +7833,7 @@ var tailwindToStyle = (function (exports) {
6954
7833
  return result;
6955
7834
  }
6956
7835
  // CSS Processing utilities
6957
- const parseSelectorCache = new Map();
7836
+ const parseSelectorCache = new LRUCache(500);
6958
7837
  function parseSelector(selector) {
6959
7838
  if (parseSelectorCache.has(selector)) {
6960
7839
  return parseSelectorCache.get(selector);
@@ -6976,7 +7855,6 @@ var tailwindToStyle = (function (exports) {
6976
7855
  };
6977
7856
  }
6978
7857
  parseSelectorCache.set(selector, result);
6979
- limitCacheSize(parseSelectorCache);
6980
7858
  return result;
6981
7859
  }
6982
7860
  function processClass(cls, selector, styles) {
@@ -7010,6 +7888,9 @@ var tailwindToStyle = (function (exports) {
7010
7888
  }
7011
7889
  }
7012
7890
  }
7891
+
7892
+ // Get cssObject from singleton cache
7893
+ const cssObject = tailwindCache.getOrGenerate(generateTailwindCssString, convertCssToObject);
7013
7894
  let declarations = cssObject[baseClassName] || cssObject[baseClassName.replace(/(\/)/g, "\\$1")] || cssObject[baseClassName.replace(/\./g, "\\.")];
7014
7895
  if (!declarations && baseClassName.includes("[")) {
7015
7896
  const match = baseClassName.match(/^(.+?)\[(.+)\]$/);
@@ -7074,7 +7955,7 @@ var tailwindToStyle = (function (exports) {
7074
7955
  }
7075
7956
  function walkStyleTree(selector, val, styles, walk) {
7076
7957
  if (!selector || typeof selector !== "string") {
7077
- console.warn("Invalid selector in walk function:", selector);
7958
+ logger.warn("Invalid selector in walk function:", selector);
7078
7959
  return;
7079
7960
  }
7080
7961
  const {
@@ -7227,19 +8108,19 @@ var tailwindToStyle = (function (exports) {
7227
8108
  return cssString.trim();
7228
8109
  }
7229
8110
 
7230
- /**
7231
- * Generate CSS string from style object with SCSS-like syntax
7232
- * Supports nested selectors, state variants, responsive variants, and @css directives
7233
- * @param {Object} obj - Object with SCSS-like style format
7234
- * @param {Object} [options] - Additional options, e.g. { inject: true/false }
7235
- * @returns {string} Generated CSS string
8111
+ /**
8112
+ * Generate CSS string from style object with SCSS-like syntax
8113
+ * Supports nested selectors, state variants, responsive variants, and @css directives
8114
+ * @param {Object} obj - Object with SCSS-like style format
8115
+ * @param {Object} [options] - Additional options, e.g. { inject: true/false }
8116
+ * @returns {string} Generated CSS string
7236
8117
  */
7237
8118
  function twsx(obj) {
7238
8119
  let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
7239
8120
  const totalMarker = performanceMonitor.start("twsx:total");
7240
8121
  try {
7241
8122
  if (!obj || typeof obj !== "object") {
7242
- console.warn("twsx: Expected an object but received:", obj);
8123
+ logger.warn("twsx: Expected an object but received:", obj);
7243
8124
  return "";
7244
8125
  }
7245
8126
  const {
@@ -7322,7 +8203,10 @@ var tailwindToStyle = (function (exports) {
7322
8203
  return cssString;
7323
8204
  } catch (error) {
7324
8205
  performanceMonitor.end(totalMarker);
7325
- console.error("twsx error:", error);
8206
+ handleError(error, {
8207
+ obj,
8208
+ options
8209
+ });
7326
8210
  return "";
7327
8211
  }
7328
8212
  }
@@ -7363,30 +8247,30 @@ var tailwindToStyle = (function (exports) {
7363
8247
 
7364
8248
  // Log injection stats periodically
7365
8249
  if (injectedCssHashSet.size % 10 === 0) {
7366
- console.debug(`CSS injection stats: ${injectedCssHashSet.size} unique stylesheets injected`);
8250
+ logger.debug(`CSS injection stats: ${injectedCssHashSet.size} unique stylesheets injected`);
7367
8251
  }
7368
8252
  }
7369
8253
  performanceMonitor.end(marker);
7370
8254
  } catch (error) {
7371
8255
  performanceMonitor.end(marker);
7372
- console.error("Error injecting CSS:", error);
8256
+ logger.error("Error injecting CSS:", error);
7373
8257
  }
7374
8258
  }
7375
8259
 
7376
8260
  // Enhanced debounced functions with performance monitoring configuration
7377
- /**
7378
- * Debounced version of tws function with performance monitoring
7379
- * @param {string} classNames - String containing Tailwind classes to convert
7380
- * @param {boolean} convertToJson - If true, result will be JSON object, if false becomes CSS string
7381
- * @returns {string|Object} Inline CSS string or style JSON object
8261
+ /**
8262
+ * Debounced version of tws function with performance monitoring
8263
+ * @param {string} classNames - String containing Tailwind classes to convert
8264
+ * @param {boolean} convertToJson - If true, result will be JSON object, if false becomes CSS string
8265
+ * @returns {string|Object} Inline CSS string or style JSON object
7382
8266
  */
7383
8267
  const debouncedTws = debounce(tws, 50); // Faster debounce for tws
7384
8268
 
7385
- /**
7386
- * Debounced version of twsx function with performance monitoring
7387
- * @param {Object} obj - Object with SCSS-like style format
7388
- * @param {Object} [options] - Additional options
7389
- * @returns {string} Generated CSS string
8269
+ /**
8270
+ * Debounced version of twsx function with performance monitoring
8271
+ * @param {Object} obj - Object with SCSS-like style format
8272
+ * @param {Object} [options] - Additional options
8273
+ * @returns {string} Generated CSS string
7390
8274
  */
7391
8275
  const debouncedTwsx = debounce(twsx, 100); // Standard debounce for twsx
7392
8276
 
@@ -7412,19 +8296,33 @@ var tailwindToStyle = (function (exports) {
7412
8296
  parseSelectorCache.clear();
7413
8297
  encodeBracketCache.clear();
7414
8298
  decodeBracketCache.clear();
7415
- console.log("All caches cleared");
8299
+ logger.info("All caches cleared");
7416
8300
  performanceMonitor.end(marker);
7417
8301
  },
7418
8302
  enablePerformanceLogging() {
7419
8303
  let enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
7420
8304
  performanceMonitor.enabled = enabled && typeof performance !== "undefined";
7421
- console.log(`Performance monitoring ${enabled ? "enabled" : "disabled"}`);
8305
+ logger.info(`Performance monitoring ${enabled ? "enabled" : "disabled"}`);
7422
8306
  }
7423
8307
  };
7424
8308
 
8309
+ exports.LRUCache = LRUCache;
8310
+ exports.Logger = Logger;
8311
+ exports.TwsError = TwsError;
8312
+ exports.configure = configure;
8313
+ exports.createPlugin = createPlugin;
8314
+ exports.createUtilityPlugin = createUtilityPlugin;
8315
+ exports.createVariantPlugin = createVariantPlugin;
7425
8316
  exports.debouncedTws = debouncedTws;
7426
8317
  exports.debouncedTwsx = debouncedTwsx;
8318
+ exports.getConfig = getConfig;
8319
+ exports.getTailwindCache = getTailwindCache;
8320
+ exports.handleError = handleError;
8321
+ exports.logger = logger;
8322
+ exports.onError = onError;
7427
8323
  exports.performanceUtils = performanceUtils;
8324
+ exports.resetConfig = resetConfig;
8325
+ exports.resetTailwindCache = resetTailwindCache;
7428
8326
  exports.tws = tws;
7429
8327
  exports.twsx = twsx;
7430
8328