@anker-in/campaign-ui 0.2.10-beta.14 → 0.2.10-beta.16

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.
Files changed (34) hide show
  1. package/dist/cjs/components/chat/action.js +1 -1
  2. package/dist/cjs/components/chat/action.js.map +1 -1
  3. package/dist/cjs/components/chat/button.js +1 -1
  4. package/dist/cjs/components/chat/button.js.map +1 -1
  5. package/dist/cjs/components/chat/index.js +1 -1
  6. package/dist/cjs/components/chat/index.js.map +2 -2
  7. package/dist/cjs/components/chat/messages.js +1 -1
  8. package/dist/cjs/components/chat/messages.js.map +2 -2
  9. package/dist/cjs/components/chat/props.js +1 -1
  10. package/dist/cjs/components/chat/props.js.map +2 -2
  11. package/dist/cjs/components/chat/suggestions.js.map +1 -1
  12. package/dist/cjs/components/index.js +1 -1
  13. package/dist/cjs/components/index.js.map +3 -3
  14. package/dist/cjs/helpers/fetcher.js +1 -1
  15. package/dist/cjs/helpers/fetcher.js.map +2 -2
  16. package/dist/cjs/helpers/index.js +1 -1
  17. package/dist/cjs/helpers/index.js.map +2 -2
  18. package/dist/cjs/index.css +3 -3
  19. package/dist/cjs/index.css.map +1 -1
  20. package/dist/cjs/index.js +12 -2549
  21. package/dist/cjs/index.js.map +4 -4
  22. package/dist/cjs/stories/chat.stories.js +2 -0
  23. package/dist/cjs/stories/chat.stories.js.map +7 -0
  24. package/dist/esm/components/credits/creditsInfoCard/index.js +1 -1
  25. package/dist/esm/components/credits/creditsInfoCard/index.js.map +3 -3
  26. package/dist/esm/components/credits/modal/MyRewardsModal.js +1 -1
  27. package/dist/esm/components/credits/modal/MyRewardsModal.js.map +2 -2
  28. package/dist/esm/components/credits/modal/activitiesModal.js +1 -1
  29. package/dist/esm/components/credits/modal/activitiesModal.js.map +2 -2
  30. package/dist/esm/helpers/track.js +1 -1
  31. package/dist/esm/helpers/track.js.map +3 -3
  32. package/dist/esm/index.js +1 -67715
  33. package/dist/esm/index.js.map +4 -4
  34. package/package.json +26 -25
package/dist/cjs/index.js CHANGED
@@ -22820,2543 +22820,6 @@ var require_cjs = __commonJS({
22820
22820
  }
22821
22821
  });
22822
22822
 
22823
- // node_modules/tailwind-merge/dist/bundle-cjs.js
22824
- var require_bundle_cjs2 = __commonJS({
22825
- "node_modules/tailwind-merge/dist/bundle-cjs.js"(exports) {
22826
- "use strict";
22827
- Object.defineProperty(exports, Symbol.toStringTag, {
22828
- value: "Module"
22829
- });
22830
- var CLASS_PART_SEPARATOR = "-";
22831
- var createClassGroupUtils = (config) => {
22832
- const classMap = createClassMap(config);
22833
- const {
22834
- conflictingClassGroups,
22835
- conflictingClassGroupModifiers
22836
- } = config;
22837
- const getClassGroupId = (className) => {
22838
- const classParts = className.split(CLASS_PART_SEPARATOR);
22839
- if (classParts[0] === "" && classParts.length !== 1) {
22840
- classParts.shift();
22841
- }
22842
- return getGroupRecursive(classParts, classMap) || getGroupIdForArbitraryProperty(className);
22843
- };
22844
- const getConflictingClassGroupIds = (classGroupId, hasPostfixModifier) => {
22845
- const conflicts = conflictingClassGroups[classGroupId] || [];
22846
- if (hasPostfixModifier && conflictingClassGroupModifiers[classGroupId]) {
22847
- return [...conflicts, ...conflictingClassGroupModifiers[classGroupId]];
22848
- }
22849
- return conflicts;
22850
- };
22851
- return {
22852
- getClassGroupId,
22853
- getConflictingClassGroupIds
22854
- };
22855
- };
22856
- var getGroupRecursive = (classParts, classPartObject) => {
22857
- if (classParts.length === 0) {
22858
- return classPartObject.classGroupId;
22859
- }
22860
- const currentClassPart = classParts[0];
22861
- const nextClassPartObject = classPartObject.nextPart.get(currentClassPart);
22862
- const classGroupFromNextClassPart = nextClassPartObject ? getGroupRecursive(classParts.slice(1), nextClassPartObject) : void 0;
22863
- if (classGroupFromNextClassPart) {
22864
- return classGroupFromNextClassPart;
22865
- }
22866
- if (classPartObject.validators.length === 0) {
22867
- return void 0;
22868
- }
22869
- const classRest = classParts.join(CLASS_PART_SEPARATOR);
22870
- return classPartObject.validators.find(({
22871
- validator
22872
- }) => validator(classRest))?.classGroupId;
22873
- };
22874
- var arbitraryPropertyRegex = /^\[(.+)\]$/;
22875
- var getGroupIdForArbitraryProperty = (className) => {
22876
- if (arbitraryPropertyRegex.test(className)) {
22877
- const arbitraryPropertyClassName = arbitraryPropertyRegex.exec(className)[1];
22878
- const property = arbitraryPropertyClassName?.substring(0, arbitraryPropertyClassName.indexOf(":"));
22879
- if (property) {
22880
- return "arbitrary.." + property;
22881
- }
22882
- }
22883
- };
22884
- var createClassMap = (config) => {
22885
- const {
22886
- theme,
22887
- prefix
22888
- } = config;
22889
- const classMap = {
22890
- nextPart: /* @__PURE__ */ new Map(),
22891
- validators: []
22892
- };
22893
- const prefixedClassGroupEntries = getPrefixedClassGroupEntries(Object.entries(config.classGroups), prefix);
22894
- prefixedClassGroupEntries.forEach(([classGroupId, classGroup]) => {
22895
- processClassesRecursively(classGroup, classMap, classGroupId, theme);
22896
- });
22897
- return classMap;
22898
- };
22899
- var processClassesRecursively = (classGroup, classPartObject, classGroupId, theme) => {
22900
- classGroup.forEach((classDefinition) => {
22901
- if (typeof classDefinition === "string") {
22902
- const classPartObjectToEdit = classDefinition === "" ? classPartObject : getPart(classPartObject, classDefinition);
22903
- classPartObjectToEdit.classGroupId = classGroupId;
22904
- return;
22905
- }
22906
- if (typeof classDefinition === "function") {
22907
- if (isThemeGetter(classDefinition)) {
22908
- processClassesRecursively(classDefinition(theme), classPartObject, classGroupId, theme);
22909
- return;
22910
- }
22911
- classPartObject.validators.push({
22912
- validator: classDefinition,
22913
- classGroupId
22914
- });
22915
- return;
22916
- }
22917
- Object.entries(classDefinition).forEach(([key, classGroup2]) => {
22918
- processClassesRecursively(classGroup2, getPart(classPartObject, key), classGroupId, theme);
22919
- });
22920
- });
22921
- };
22922
- var getPart = (classPartObject, path3) => {
22923
- let currentClassPartObject = classPartObject;
22924
- path3.split(CLASS_PART_SEPARATOR).forEach((pathPart) => {
22925
- if (!currentClassPartObject.nextPart.has(pathPart)) {
22926
- currentClassPartObject.nextPart.set(pathPart, {
22927
- nextPart: /* @__PURE__ */ new Map(),
22928
- validators: []
22929
- });
22930
- }
22931
- currentClassPartObject = currentClassPartObject.nextPart.get(pathPart);
22932
- });
22933
- return currentClassPartObject;
22934
- };
22935
- var isThemeGetter = (func) => func.isThemeGetter;
22936
- var getPrefixedClassGroupEntries = (classGroupEntries, prefix) => {
22937
- if (!prefix) {
22938
- return classGroupEntries;
22939
- }
22940
- return classGroupEntries.map(([classGroupId, classGroup]) => {
22941
- const prefixedClassGroup = classGroup.map((classDefinition) => {
22942
- if (typeof classDefinition === "string") {
22943
- return prefix + classDefinition;
22944
- }
22945
- if (typeof classDefinition === "object") {
22946
- return Object.fromEntries(Object.entries(classDefinition).map(([key, value2]) => [prefix + key, value2]));
22947
- }
22948
- return classDefinition;
22949
- });
22950
- return [classGroupId, prefixedClassGroup];
22951
- });
22952
- };
22953
- var createLruCache = (maxCacheSize) => {
22954
- if (maxCacheSize < 1) {
22955
- return {
22956
- get: () => void 0,
22957
- set: () => {
22958
- }
22959
- };
22960
- }
22961
- let cacheSize = 0;
22962
- let cache2 = /* @__PURE__ */ new Map();
22963
- let previousCache = /* @__PURE__ */ new Map();
22964
- const update2 = (key, value2) => {
22965
- cache2.set(key, value2);
22966
- cacheSize++;
22967
- if (cacheSize > maxCacheSize) {
22968
- cacheSize = 0;
22969
- previousCache = cache2;
22970
- cache2 = /* @__PURE__ */ new Map();
22971
- }
22972
- };
22973
- return {
22974
- get(key) {
22975
- let value2 = cache2.get(key);
22976
- if (value2 !== void 0) {
22977
- return value2;
22978
- }
22979
- if ((value2 = previousCache.get(key)) !== void 0) {
22980
- update2(key, value2);
22981
- return value2;
22982
- }
22983
- },
22984
- set(key, value2) {
22985
- if (cache2.has(key)) {
22986
- cache2.set(key, value2);
22987
- } else {
22988
- update2(key, value2);
22989
- }
22990
- }
22991
- };
22992
- };
22993
- var IMPORTANT_MODIFIER = "!";
22994
- var createParseClassName = (config) => {
22995
- const {
22996
- separator,
22997
- experimentalParseClassName
22998
- } = config;
22999
- const isSeparatorSingleCharacter = separator.length === 1;
23000
- const firstSeparatorCharacter = separator[0];
23001
- const separatorLength = separator.length;
23002
- const parseClassName = (className) => {
23003
- const modifiers = [];
23004
- let bracketDepth = 0;
23005
- let modifierStart = 0;
23006
- let postfixModifierPosition;
23007
- for (let index4 = 0; index4 < className.length; index4++) {
23008
- let currentCharacter = className[index4];
23009
- if (bracketDepth === 0) {
23010
- if (currentCharacter === firstSeparatorCharacter && (isSeparatorSingleCharacter || className.slice(index4, index4 + separatorLength) === separator)) {
23011
- modifiers.push(className.slice(modifierStart, index4));
23012
- modifierStart = index4 + separatorLength;
23013
- continue;
23014
- }
23015
- if (currentCharacter === "/") {
23016
- postfixModifierPosition = index4;
23017
- continue;
23018
- }
23019
- }
23020
- if (currentCharacter === "[") {
23021
- bracketDepth++;
23022
- } else if (currentCharacter === "]") {
23023
- bracketDepth--;
23024
- }
23025
- }
23026
- const baseClassNameWithImportantModifier = modifiers.length === 0 ? className : className.substring(modifierStart);
23027
- const hasImportantModifier = baseClassNameWithImportantModifier.startsWith(IMPORTANT_MODIFIER);
23028
- const baseClassName = hasImportantModifier ? baseClassNameWithImportantModifier.substring(1) : baseClassNameWithImportantModifier;
23029
- const maybePostfixModifierPosition = postfixModifierPosition && postfixModifierPosition > modifierStart ? postfixModifierPosition - modifierStart : void 0;
23030
- return {
23031
- modifiers,
23032
- hasImportantModifier,
23033
- baseClassName,
23034
- maybePostfixModifierPosition
23035
- };
23036
- };
23037
- if (experimentalParseClassName) {
23038
- return (className) => experimentalParseClassName({
23039
- className,
23040
- parseClassName
23041
- });
23042
- }
23043
- return parseClassName;
23044
- };
23045
- var sortModifiers = (modifiers) => {
23046
- if (modifiers.length <= 1) {
23047
- return modifiers;
23048
- }
23049
- const sortedModifiers = [];
23050
- let unsortedModifiers = [];
23051
- modifiers.forEach((modifier) => {
23052
- const isArbitraryVariant = modifier[0] === "[";
23053
- if (isArbitraryVariant) {
23054
- sortedModifiers.push(...unsortedModifiers.sort(), modifier);
23055
- unsortedModifiers = [];
23056
- } else {
23057
- unsortedModifiers.push(modifier);
23058
- }
23059
- });
23060
- sortedModifiers.push(...unsortedModifiers.sort());
23061
- return sortedModifiers;
23062
- };
23063
- var createConfigUtils = (config) => ({
23064
- cache: createLruCache(config.cacheSize),
23065
- parseClassName: createParseClassName(config),
23066
- ...createClassGroupUtils(config)
23067
- });
23068
- var SPLIT_CLASSES_REGEX = /\s+/;
23069
- var mergeClassList = (classList, configUtils) => {
23070
- const {
23071
- parseClassName,
23072
- getClassGroupId,
23073
- getConflictingClassGroupIds
23074
- } = configUtils;
23075
- const classGroupsInConflict = [];
23076
- const classNames15 = classList.trim().split(SPLIT_CLASSES_REGEX);
23077
- let result = "";
23078
- for (let index4 = classNames15.length - 1; index4 >= 0; index4 -= 1) {
23079
- const originalClassName = classNames15[index4];
23080
- const {
23081
- modifiers,
23082
- hasImportantModifier,
23083
- baseClassName,
23084
- maybePostfixModifierPosition
23085
- } = parseClassName(originalClassName);
23086
- let hasPostfixModifier = Boolean(maybePostfixModifierPosition);
23087
- let classGroupId = getClassGroupId(hasPostfixModifier ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);
23088
- if (!classGroupId) {
23089
- if (!hasPostfixModifier) {
23090
- result = originalClassName + (result.length > 0 ? " " + result : result);
23091
- continue;
23092
- }
23093
- classGroupId = getClassGroupId(baseClassName);
23094
- if (!classGroupId) {
23095
- result = originalClassName + (result.length > 0 ? " " + result : result);
23096
- continue;
23097
- }
23098
- hasPostfixModifier = false;
23099
- }
23100
- const variantModifier = sortModifiers(modifiers).join(":");
23101
- const modifierId = hasImportantModifier ? variantModifier + IMPORTANT_MODIFIER : variantModifier;
23102
- const classId = modifierId + classGroupId;
23103
- if (classGroupsInConflict.includes(classId)) {
23104
- continue;
23105
- }
23106
- classGroupsInConflict.push(classId);
23107
- const conflictGroups = getConflictingClassGroupIds(classGroupId, hasPostfixModifier);
23108
- for (let i11 = 0; i11 < conflictGroups.length; ++i11) {
23109
- const group = conflictGroups[i11];
23110
- classGroupsInConflict.push(modifierId + group);
23111
- }
23112
- result = originalClassName + (result.length > 0 ? " " + result : result);
23113
- }
23114
- return result;
23115
- };
23116
- function twJoin() {
23117
- let index4 = 0;
23118
- let argument;
23119
- let resolvedValue;
23120
- let string3 = "";
23121
- while (index4 < arguments.length) {
23122
- if (argument = arguments[index4++]) {
23123
- if (resolvedValue = toValue(argument)) {
23124
- string3 && (string3 += " ");
23125
- string3 += resolvedValue;
23126
- }
23127
- }
23128
- }
23129
- return string3;
23130
- }
23131
- var toValue = (mix) => {
23132
- if (typeof mix === "string") {
23133
- return mix;
23134
- }
23135
- let resolvedValue;
23136
- let string3 = "";
23137
- for (let k2 = 0; k2 < mix.length; k2++) {
23138
- if (mix[k2]) {
23139
- if (resolvedValue = toValue(mix[k2])) {
23140
- string3 && (string3 += " ");
23141
- string3 += resolvedValue;
23142
- }
23143
- }
23144
- }
23145
- return string3;
23146
- };
23147
- function createTailwindMerge(createConfigFirst, ...createConfigRest) {
23148
- let configUtils;
23149
- let cacheGet;
23150
- let cacheSet;
23151
- let functionToCall = initTailwindMerge;
23152
- function initTailwindMerge(classList) {
23153
- const config = createConfigRest.reduce((previousConfig, createConfigCurrent) => createConfigCurrent(previousConfig), createConfigFirst());
23154
- configUtils = createConfigUtils(config);
23155
- cacheGet = configUtils.cache.get;
23156
- cacheSet = configUtils.cache.set;
23157
- functionToCall = tailwindMerge;
23158
- return tailwindMerge(classList);
23159
- }
23160
- function tailwindMerge(classList) {
23161
- const cachedResult = cacheGet(classList);
23162
- if (cachedResult) {
23163
- return cachedResult;
23164
- }
23165
- const result = mergeClassList(classList, configUtils);
23166
- cacheSet(classList, result);
23167
- return result;
23168
- }
23169
- return function callTailwindMerge() {
23170
- return functionToCall(twJoin.apply(null, arguments));
23171
- };
23172
- }
23173
- var fromTheme = (key) => {
23174
- const themeGetter = (theme) => theme[key] || [];
23175
- themeGetter.isThemeGetter = true;
23176
- return themeGetter;
23177
- };
23178
- var arbitraryValueRegex = /^\[(?:([a-z-]+):)?(.+)\]$/i;
23179
- var fractionRegex = /^\d+\/\d+$/;
23180
- var stringLengths = /* @__PURE__ */ new Set(["px", "full", "screen"]);
23181
- var tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/;
23182
- var lengthUnitRegex = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/;
23183
- var colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/;
23184
- var shadowRegex = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/;
23185
- var imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;
23186
- var isLength = (value2) => isNumber2(value2) || stringLengths.has(value2) || fractionRegex.test(value2);
23187
- var isArbitraryLength = (value2) => getIsArbitraryValue(value2, "length", isLengthOnly);
23188
- var isNumber2 = (value2) => Boolean(value2) && !Number.isNaN(Number(value2));
23189
- var isArbitraryNumber = (value2) => getIsArbitraryValue(value2, "number", isNumber2);
23190
- var isInteger = (value2) => Boolean(value2) && Number.isInteger(Number(value2));
23191
- var isPercent = (value2) => value2.endsWith("%") && isNumber2(value2.slice(0, -1));
23192
- var isArbitraryValue = (value2) => arbitraryValueRegex.test(value2);
23193
- var isTshirtSize = (value2) => tshirtUnitRegex.test(value2);
23194
- var sizeLabels = /* @__PURE__ */ new Set(["length", "size", "percentage"]);
23195
- var isArbitrarySize = (value2) => getIsArbitraryValue(value2, sizeLabels, isNever);
23196
- var isArbitraryPosition = (value2) => getIsArbitraryValue(value2, "position", isNever);
23197
- var imageLabels = /* @__PURE__ */ new Set(["image", "url"]);
23198
- var isArbitraryImage = (value2) => getIsArbitraryValue(value2, imageLabels, isImage);
23199
- var isArbitraryShadow = (value2) => getIsArbitraryValue(value2, "", isShadow);
23200
- var isAny = () => true;
23201
- var getIsArbitraryValue = (value2, label, testValue) => {
23202
- const result = arbitraryValueRegex.exec(value2);
23203
- if (result) {
23204
- if (result[1]) {
23205
- return typeof label === "string" ? result[1] === label : label.has(result[1]);
23206
- }
23207
- return testValue(result[2]);
23208
- }
23209
- return false;
23210
- };
23211
- var isLengthOnly = (value2) => (
23212
- // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
23213
- // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
23214
- // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
23215
- lengthUnitRegex.test(value2) && !colorFunctionRegex.test(value2)
23216
- );
23217
- var isNever = () => false;
23218
- var isShadow = (value2) => shadowRegex.test(value2);
23219
- var isImage = (value2) => imageRegex.test(value2);
23220
- var validators = /* @__PURE__ */ Object.defineProperty({
23221
- __proto__: null,
23222
- isAny,
23223
- isArbitraryImage,
23224
- isArbitraryLength,
23225
- isArbitraryNumber,
23226
- isArbitraryPosition,
23227
- isArbitraryShadow,
23228
- isArbitrarySize,
23229
- isArbitraryValue,
23230
- isInteger,
23231
- isLength,
23232
- isNumber: isNumber2,
23233
- isPercent,
23234
- isTshirtSize
23235
- }, Symbol.toStringTag, {
23236
- value: "Module"
23237
- });
23238
- var getDefaultConfig = () => {
23239
- const colors = fromTheme("colors");
23240
- const spacing = fromTheme("spacing");
23241
- const blur = fromTheme("blur");
23242
- const brightness = fromTheme("brightness");
23243
- const borderColor = fromTheme("borderColor");
23244
- const borderRadius = fromTheme("borderRadius");
23245
- const borderSpacing = fromTheme("borderSpacing");
23246
- const borderWidth = fromTheme("borderWidth");
23247
- const contrast = fromTheme("contrast");
23248
- const grayscale = fromTheme("grayscale");
23249
- const hueRotate = fromTheme("hueRotate");
23250
- const invert = fromTheme("invert");
23251
- const gap = fromTheme("gap");
23252
- const gradientColorStops = fromTheme("gradientColorStops");
23253
- const gradientColorStopPositions = fromTheme("gradientColorStopPositions");
23254
- const inset = fromTheme("inset");
23255
- const margin = fromTheme("margin");
23256
- const opacity = fromTheme("opacity");
23257
- const padding = fromTheme("padding");
23258
- const saturate = fromTheme("saturate");
23259
- const scale = fromTheme("scale");
23260
- const sepia = fromTheme("sepia");
23261
- const skew = fromTheme("skew");
23262
- const space2 = fromTheme("space");
23263
- const translate2 = fromTheme("translate");
23264
- const getOverscroll = () => ["auto", "contain", "none"];
23265
- const getOverflow = () => ["auto", "hidden", "clip", "visible", "scroll"];
23266
- const getSpacingWithAutoAndArbitrary = () => ["auto", isArbitraryValue, spacing];
23267
- const getSpacingWithArbitrary = () => [isArbitraryValue, spacing];
23268
- const getLengthWithEmptyAndArbitrary = () => ["", isLength, isArbitraryLength];
23269
- const getNumberWithAutoAndArbitrary = () => ["auto", isNumber2, isArbitraryValue];
23270
- const getPositions = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"];
23271
- const getLineStyles = () => ["solid", "dashed", "dotted", "double", "none"];
23272
- const getBlendModes = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"];
23273
- const getAlign = () => ["start", "end", "center", "between", "around", "evenly", "stretch"];
23274
- const getZeroAndEmpty = () => ["", "0", isArbitraryValue];
23275
- const getBreaks = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"];
23276
- const getNumberAndArbitrary = () => [isNumber2, isArbitraryValue];
23277
- return {
23278
- cacheSize: 500,
23279
- separator: ":",
23280
- theme: {
23281
- colors: [isAny],
23282
- spacing: [isLength, isArbitraryLength],
23283
- blur: ["none", "", isTshirtSize, isArbitraryValue],
23284
- brightness: getNumberAndArbitrary(),
23285
- borderColor: [colors],
23286
- borderRadius: ["none", "", "full", isTshirtSize, isArbitraryValue],
23287
- borderSpacing: getSpacingWithArbitrary(),
23288
- borderWidth: getLengthWithEmptyAndArbitrary(),
23289
- contrast: getNumberAndArbitrary(),
23290
- grayscale: getZeroAndEmpty(),
23291
- hueRotate: getNumberAndArbitrary(),
23292
- invert: getZeroAndEmpty(),
23293
- gap: getSpacingWithArbitrary(),
23294
- gradientColorStops: [colors],
23295
- gradientColorStopPositions: [isPercent, isArbitraryLength],
23296
- inset: getSpacingWithAutoAndArbitrary(),
23297
- margin: getSpacingWithAutoAndArbitrary(),
23298
- opacity: getNumberAndArbitrary(),
23299
- padding: getSpacingWithArbitrary(),
23300
- saturate: getNumberAndArbitrary(),
23301
- scale: getNumberAndArbitrary(),
23302
- sepia: getZeroAndEmpty(),
23303
- skew: getNumberAndArbitrary(),
23304
- space: getSpacingWithArbitrary(),
23305
- translate: getSpacingWithArbitrary()
23306
- },
23307
- classGroups: {
23308
- // Layout
23309
- /**
23310
- * Aspect Ratio
23311
- * @see https://tailwindcss.com/docs/aspect-ratio
23312
- */
23313
- aspect: [{
23314
- aspect: ["auto", "square", "video", isArbitraryValue]
23315
- }],
23316
- /**
23317
- * Container
23318
- * @see https://tailwindcss.com/docs/container
23319
- */
23320
- container: ["container"],
23321
- /**
23322
- * Columns
23323
- * @see https://tailwindcss.com/docs/columns
23324
- */
23325
- columns: [{
23326
- columns: [isTshirtSize]
23327
- }],
23328
- /**
23329
- * Break After
23330
- * @see https://tailwindcss.com/docs/break-after
23331
- */
23332
- "break-after": [{
23333
- "break-after": getBreaks()
23334
- }],
23335
- /**
23336
- * Break Before
23337
- * @see https://tailwindcss.com/docs/break-before
23338
- */
23339
- "break-before": [{
23340
- "break-before": getBreaks()
23341
- }],
23342
- /**
23343
- * Break Inside
23344
- * @see https://tailwindcss.com/docs/break-inside
23345
- */
23346
- "break-inside": [{
23347
- "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
23348
- }],
23349
- /**
23350
- * Box Decoration Break
23351
- * @see https://tailwindcss.com/docs/box-decoration-break
23352
- */
23353
- "box-decoration": [{
23354
- "box-decoration": ["slice", "clone"]
23355
- }],
23356
- /**
23357
- * Box Sizing
23358
- * @see https://tailwindcss.com/docs/box-sizing
23359
- */
23360
- box: [{
23361
- box: ["border", "content"]
23362
- }],
23363
- /**
23364
- * Display
23365
- * @see https://tailwindcss.com/docs/display
23366
- */
23367
- display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
23368
- /**
23369
- * Floats
23370
- * @see https://tailwindcss.com/docs/float
23371
- */
23372
- float: [{
23373
- float: ["right", "left", "none", "start", "end"]
23374
- }],
23375
- /**
23376
- * Clear
23377
- * @see https://tailwindcss.com/docs/clear
23378
- */
23379
- clear: [{
23380
- clear: ["left", "right", "both", "none", "start", "end"]
23381
- }],
23382
- /**
23383
- * Isolation
23384
- * @see https://tailwindcss.com/docs/isolation
23385
- */
23386
- isolation: ["isolate", "isolation-auto"],
23387
- /**
23388
- * Object Fit
23389
- * @see https://tailwindcss.com/docs/object-fit
23390
- */
23391
- "object-fit": [{
23392
- object: ["contain", "cover", "fill", "none", "scale-down"]
23393
- }],
23394
- /**
23395
- * Object Position
23396
- * @see https://tailwindcss.com/docs/object-position
23397
- */
23398
- "object-position": [{
23399
- object: [...getPositions(), isArbitraryValue]
23400
- }],
23401
- /**
23402
- * Overflow
23403
- * @see https://tailwindcss.com/docs/overflow
23404
- */
23405
- overflow: [{
23406
- overflow: getOverflow()
23407
- }],
23408
- /**
23409
- * Overflow X
23410
- * @see https://tailwindcss.com/docs/overflow
23411
- */
23412
- "overflow-x": [{
23413
- "overflow-x": getOverflow()
23414
- }],
23415
- /**
23416
- * Overflow Y
23417
- * @see https://tailwindcss.com/docs/overflow
23418
- */
23419
- "overflow-y": [{
23420
- "overflow-y": getOverflow()
23421
- }],
23422
- /**
23423
- * Overscroll Behavior
23424
- * @see https://tailwindcss.com/docs/overscroll-behavior
23425
- */
23426
- overscroll: [{
23427
- overscroll: getOverscroll()
23428
- }],
23429
- /**
23430
- * Overscroll Behavior X
23431
- * @see https://tailwindcss.com/docs/overscroll-behavior
23432
- */
23433
- "overscroll-x": [{
23434
- "overscroll-x": getOverscroll()
23435
- }],
23436
- /**
23437
- * Overscroll Behavior Y
23438
- * @see https://tailwindcss.com/docs/overscroll-behavior
23439
- */
23440
- "overscroll-y": [{
23441
- "overscroll-y": getOverscroll()
23442
- }],
23443
- /**
23444
- * Position
23445
- * @see https://tailwindcss.com/docs/position
23446
- */
23447
- position: ["static", "fixed", "absolute", "relative", "sticky"],
23448
- /**
23449
- * Top / Right / Bottom / Left
23450
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23451
- */
23452
- inset: [{
23453
- inset: [inset]
23454
- }],
23455
- /**
23456
- * Right / Left
23457
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23458
- */
23459
- "inset-x": [{
23460
- "inset-x": [inset]
23461
- }],
23462
- /**
23463
- * Top / Bottom
23464
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23465
- */
23466
- "inset-y": [{
23467
- "inset-y": [inset]
23468
- }],
23469
- /**
23470
- * Start
23471
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23472
- */
23473
- start: [{
23474
- start: [inset]
23475
- }],
23476
- /**
23477
- * End
23478
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23479
- */
23480
- end: [{
23481
- end: [inset]
23482
- }],
23483
- /**
23484
- * Top
23485
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23486
- */
23487
- top: [{
23488
- top: [inset]
23489
- }],
23490
- /**
23491
- * Right
23492
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23493
- */
23494
- right: [{
23495
- right: [inset]
23496
- }],
23497
- /**
23498
- * Bottom
23499
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23500
- */
23501
- bottom: [{
23502
- bottom: [inset]
23503
- }],
23504
- /**
23505
- * Left
23506
- * @see https://tailwindcss.com/docs/top-right-bottom-left
23507
- */
23508
- left: [{
23509
- left: [inset]
23510
- }],
23511
- /**
23512
- * Visibility
23513
- * @see https://tailwindcss.com/docs/visibility
23514
- */
23515
- visibility: ["visible", "invisible", "collapse"],
23516
- /**
23517
- * Z-Index
23518
- * @see https://tailwindcss.com/docs/z-index
23519
- */
23520
- z: [{
23521
- z: ["auto", isInteger, isArbitraryValue]
23522
- }],
23523
- // Flexbox and Grid
23524
- /**
23525
- * Flex Basis
23526
- * @see https://tailwindcss.com/docs/flex-basis
23527
- */
23528
- basis: [{
23529
- basis: getSpacingWithAutoAndArbitrary()
23530
- }],
23531
- /**
23532
- * Flex Direction
23533
- * @see https://tailwindcss.com/docs/flex-direction
23534
- */
23535
- "flex-direction": [{
23536
- flex: ["row", "row-reverse", "col", "col-reverse"]
23537
- }],
23538
- /**
23539
- * Flex Wrap
23540
- * @see https://tailwindcss.com/docs/flex-wrap
23541
- */
23542
- "flex-wrap": [{
23543
- flex: ["wrap", "wrap-reverse", "nowrap"]
23544
- }],
23545
- /**
23546
- * Flex
23547
- * @see https://tailwindcss.com/docs/flex
23548
- */
23549
- flex: [{
23550
- flex: ["1", "auto", "initial", "none", isArbitraryValue]
23551
- }],
23552
- /**
23553
- * Flex Grow
23554
- * @see https://tailwindcss.com/docs/flex-grow
23555
- */
23556
- grow: [{
23557
- grow: getZeroAndEmpty()
23558
- }],
23559
- /**
23560
- * Flex Shrink
23561
- * @see https://tailwindcss.com/docs/flex-shrink
23562
- */
23563
- shrink: [{
23564
- shrink: getZeroAndEmpty()
23565
- }],
23566
- /**
23567
- * Order
23568
- * @see https://tailwindcss.com/docs/order
23569
- */
23570
- order: [{
23571
- order: ["first", "last", "none", isInteger, isArbitraryValue]
23572
- }],
23573
- /**
23574
- * Grid Template Columns
23575
- * @see https://tailwindcss.com/docs/grid-template-columns
23576
- */
23577
- "grid-cols": [{
23578
- "grid-cols": [isAny]
23579
- }],
23580
- /**
23581
- * Grid Column Start / End
23582
- * @see https://tailwindcss.com/docs/grid-column
23583
- */
23584
- "col-start-end": [{
23585
- col: ["auto", {
23586
- span: ["full", isInteger, isArbitraryValue]
23587
- }, isArbitraryValue]
23588
- }],
23589
- /**
23590
- * Grid Column Start
23591
- * @see https://tailwindcss.com/docs/grid-column
23592
- */
23593
- "col-start": [{
23594
- "col-start": getNumberWithAutoAndArbitrary()
23595
- }],
23596
- /**
23597
- * Grid Column End
23598
- * @see https://tailwindcss.com/docs/grid-column
23599
- */
23600
- "col-end": [{
23601
- "col-end": getNumberWithAutoAndArbitrary()
23602
- }],
23603
- /**
23604
- * Grid Template Rows
23605
- * @see https://tailwindcss.com/docs/grid-template-rows
23606
- */
23607
- "grid-rows": [{
23608
- "grid-rows": [isAny]
23609
- }],
23610
- /**
23611
- * Grid Row Start / End
23612
- * @see https://tailwindcss.com/docs/grid-row
23613
- */
23614
- "row-start-end": [{
23615
- row: ["auto", {
23616
- span: [isInteger, isArbitraryValue]
23617
- }, isArbitraryValue]
23618
- }],
23619
- /**
23620
- * Grid Row Start
23621
- * @see https://tailwindcss.com/docs/grid-row
23622
- */
23623
- "row-start": [{
23624
- "row-start": getNumberWithAutoAndArbitrary()
23625
- }],
23626
- /**
23627
- * Grid Row End
23628
- * @see https://tailwindcss.com/docs/grid-row
23629
- */
23630
- "row-end": [{
23631
- "row-end": getNumberWithAutoAndArbitrary()
23632
- }],
23633
- /**
23634
- * Grid Auto Flow
23635
- * @see https://tailwindcss.com/docs/grid-auto-flow
23636
- */
23637
- "grid-flow": [{
23638
- "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
23639
- }],
23640
- /**
23641
- * Grid Auto Columns
23642
- * @see https://tailwindcss.com/docs/grid-auto-columns
23643
- */
23644
- "auto-cols": [{
23645
- "auto-cols": ["auto", "min", "max", "fr", isArbitraryValue]
23646
- }],
23647
- /**
23648
- * Grid Auto Rows
23649
- * @see https://tailwindcss.com/docs/grid-auto-rows
23650
- */
23651
- "auto-rows": [{
23652
- "auto-rows": ["auto", "min", "max", "fr", isArbitraryValue]
23653
- }],
23654
- /**
23655
- * Gap
23656
- * @see https://tailwindcss.com/docs/gap
23657
- */
23658
- gap: [{
23659
- gap: [gap]
23660
- }],
23661
- /**
23662
- * Gap X
23663
- * @see https://tailwindcss.com/docs/gap
23664
- */
23665
- "gap-x": [{
23666
- "gap-x": [gap]
23667
- }],
23668
- /**
23669
- * Gap Y
23670
- * @see https://tailwindcss.com/docs/gap
23671
- */
23672
- "gap-y": [{
23673
- "gap-y": [gap]
23674
- }],
23675
- /**
23676
- * Justify Content
23677
- * @see https://tailwindcss.com/docs/justify-content
23678
- */
23679
- "justify-content": [{
23680
- justify: ["normal", ...getAlign()]
23681
- }],
23682
- /**
23683
- * Justify Items
23684
- * @see https://tailwindcss.com/docs/justify-items
23685
- */
23686
- "justify-items": [{
23687
- "justify-items": ["start", "end", "center", "stretch"]
23688
- }],
23689
- /**
23690
- * Justify Self
23691
- * @see https://tailwindcss.com/docs/justify-self
23692
- */
23693
- "justify-self": [{
23694
- "justify-self": ["auto", "start", "end", "center", "stretch"]
23695
- }],
23696
- /**
23697
- * Align Content
23698
- * @see https://tailwindcss.com/docs/align-content
23699
- */
23700
- "align-content": [{
23701
- content: ["normal", ...getAlign(), "baseline"]
23702
- }],
23703
- /**
23704
- * Align Items
23705
- * @see https://tailwindcss.com/docs/align-items
23706
- */
23707
- "align-items": [{
23708
- items: ["start", "end", "center", "baseline", "stretch"]
23709
- }],
23710
- /**
23711
- * Align Self
23712
- * @see https://tailwindcss.com/docs/align-self
23713
- */
23714
- "align-self": [{
23715
- self: ["auto", "start", "end", "center", "stretch", "baseline"]
23716
- }],
23717
- /**
23718
- * Place Content
23719
- * @see https://tailwindcss.com/docs/place-content
23720
- */
23721
- "place-content": [{
23722
- "place-content": [...getAlign(), "baseline"]
23723
- }],
23724
- /**
23725
- * Place Items
23726
- * @see https://tailwindcss.com/docs/place-items
23727
- */
23728
- "place-items": [{
23729
- "place-items": ["start", "end", "center", "baseline", "stretch"]
23730
- }],
23731
- /**
23732
- * Place Self
23733
- * @see https://tailwindcss.com/docs/place-self
23734
- */
23735
- "place-self": [{
23736
- "place-self": ["auto", "start", "end", "center", "stretch"]
23737
- }],
23738
- // Spacing
23739
- /**
23740
- * Padding
23741
- * @see https://tailwindcss.com/docs/padding
23742
- */
23743
- p: [{
23744
- p: [padding]
23745
- }],
23746
- /**
23747
- * Padding X
23748
- * @see https://tailwindcss.com/docs/padding
23749
- */
23750
- px: [{
23751
- px: [padding]
23752
- }],
23753
- /**
23754
- * Padding Y
23755
- * @see https://tailwindcss.com/docs/padding
23756
- */
23757
- py: [{
23758
- py: [padding]
23759
- }],
23760
- /**
23761
- * Padding Start
23762
- * @see https://tailwindcss.com/docs/padding
23763
- */
23764
- ps: [{
23765
- ps: [padding]
23766
- }],
23767
- /**
23768
- * Padding End
23769
- * @see https://tailwindcss.com/docs/padding
23770
- */
23771
- pe: [{
23772
- pe: [padding]
23773
- }],
23774
- /**
23775
- * Padding Top
23776
- * @see https://tailwindcss.com/docs/padding
23777
- */
23778
- pt: [{
23779
- pt: [padding]
23780
- }],
23781
- /**
23782
- * Padding Right
23783
- * @see https://tailwindcss.com/docs/padding
23784
- */
23785
- pr: [{
23786
- pr: [padding]
23787
- }],
23788
- /**
23789
- * Padding Bottom
23790
- * @see https://tailwindcss.com/docs/padding
23791
- */
23792
- pb: [{
23793
- pb: [padding]
23794
- }],
23795
- /**
23796
- * Padding Left
23797
- * @see https://tailwindcss.com/docs/padding
23798
- */
23799
- pl: [{
23800
- pl: [padding]
23801
- }],
23802
- /**
23803
- * Margin
23804
- * @see https://tailwindcss.com/docs/margin
23805
- */
23806
- m: [{
23807
- m: [margin]
23808
- }],
23809
- /**
23810
- * Margin X
23811
- * @see https://tailwindcss.com/docs/margin
23812
- */
23813
- mx: [{
23814
- mx: [margin]
23815
- }],
23816
- /**
23817
- * Margin Y
23818
- * @see https://tailwindcss.com/docs/margin
23819
- */
23820
- my: [{
23821
- my: [margin]
23822
- }],
23823
- /**
23824
- * Margin Start
23825
- * @see https://tailwindcss.com/docs/margin
23826
- */
23827
- ms: [{
23828
- ms: [margin]
23829
- }],
23830
- /**
23831
- * Margin End
23832
- * @see https://tailwindcss.com/docs/margin
23833
- */
23834
- me: [{
23835
- me: [margin]
23836
- }],
23837
- /**
23838
- * Margin Top
23839
- * @see https://tailwindcss.com/docs/margin
23840
- */
23841
- mt: [{
23842
- mt: [margin]
23843
- }],
23844
- /**
23845
- * Margin Right
23846
- * @see https://tailwindcss.com/docs/margin
23847
- */
23848
- mr: [{
23849
- mr: [margin]
23850
- }],
23851
- /**
23852
- * Margin Bottom
23853
- * @see https://tailwindcss.com/docs/margin
23854
- */
23855
- mb: [{
23856
- mb: [margin]
23857
- }],
23858
- /**
23859
- * Margin Left
23860
- * @see https://tailwindcss.com/docs/margin
23861
- */
23862
- ml: [{
23863
- ml: [margin]
23864
- }],
23865
- /**
23866
- * Space Between X
23867
- * @see https://tailwindcss.com/docs/space
23868
- */
23869
- "space-x": [{
23870
- "space-x": [space2]
23871
- }],
23872
- /**
23873
- * Space Between X Reverse
23874
- * @see https://tailwindcss.com/docs/space
23875
- */
23876
- "space-x-reverse": ["space-x-reverse"],
23877
- /**
23878
- * Space Between Y
23879
- * @see https://tailwindcss.com/docs/space
23880
- */
23881
- "space-y": [{
23882
- "space-y": [space2]
23883
- }],
23884
- /**
23885
- * Space Between Y Reverse
23886
- * @see https://tailwindcss.com/docs/space
23887
- */
23888
- "space-y-reverse": ["space-y-reverse"],
23889
- // Sizing
23890
- /**
23891
- * Width
23892
- * @see https://tailwindcss.com/docs/width
23893
- */
23894
- w: [{
23895
- w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", isArbitraryValue, spacing]
23896
- }],
23897
- /**
23898
- * Min-Width
23899
- * @see https://tailwindcss.com/docs/min-width
23900
- */
23901
- "min-w": [{
23902
- "min-w": [isArbitraryValue, spacing, "min", "max", "fit"]
23903
- }],
23904
- /**
23905
- * Max-Width
23906
- * @see https://tailwindcss.com/docs/max-width
23907
- */
23908
- "max-w": [{
23909
- "max-w": [isArbitraryValue, spacing, "none", "full", "min", "max", "fit", "prose", {
23910
- screen: [isTshirtSize]
23911
- }, isTshirtSize]
23912
- }],
23913
- /**
23914
- * Height
23915
- * @see https://tailwindcss.com/docs/height
23916
- */
23917
- h: [{
23918
- h: [isArbitraryValue, spacing, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
23919
- }],
23920
- /**
23921
- * Min-Height
23922
- * @see https://tailwindcss.com/docs/min-height
23923
- */
23924
- "min-h": [{
23925
- "min-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
23926
- }],
23927
- /**
23928
- * Max-Height
23929
- * @see https://tailwindcss.com/docs/max-height
23930
- */
23931
- "max-h": [{
23932
- "max-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
23933
- }],
23934
- /**
23935
- * Size
23936
- * @see https://tailwindcss.com/docs/size
23937
- */
23938
- size: [{
23939
- size: [isArbitraryValue, spacing, "auto", "min", "max", "fit"]
23940
- }],
23941
- // Typography
23942
- /**
23943
- * Font Size
23944
- * @see https://tailwindcss.com/docs/font-size
23945
- */
23946
- "font-size": [{
23947
- text: ["base", isTshirtSize, isArbitraryLength]
23948
- }],
23949
- /**
23950
- * Font Smoothing
23951
- * @see https://tailwindcss.com/docs/font-smoothing
23952
- */
23953
- "font-smoothing": ["antialiased", "subpixel-antialiased"],
23954
- /**
23955
- * Font Style
23956
- * @see https://tailwindcss.com/docs/font-style
23957
- */
23958
- "font-style": ["italic", "not-italic"],
23959
- /**
23960
- * Font Weight
23961
- * @see https://tailwindcss.com/docs/font-weight
23962
- */
23963
- "font-weight": [{
23964
- font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", isArbitraryNumber]
23965
- }],
23966
- /**
23967
- * Font Family
23968
- * @see https://tailwindcss.com/docs/font-family
23969
- */
23970
- "font-family": [{
23971
- font: [isAny]
23972
- }],
23973
- /**
23974
- * Font Variant Numeric
23975
- * @see https://tailwindcss.com/docs/font-variant-numeric
23976
- */
23977
- "fvn-normal": ["normal-nums"],
23978
- /**
23979
- * Font Variant Numeric
23980
- * @see https://tailwindcss.com/docs/font-variant-numeric
23981
- */
23982
- "fvn-ordinal": ["ordinal"],
23983
- /**
23984
- * Font Variant Numeric
23985
- * @see https://tailwindcss.com/docs/font-variant-numeric
23986
- */
23987
- "fvn-slashed-zero": ["slashed-zero"],
23988
- /**
23989
- * Font Variant Numeric
23990
- * @see https://tailwindcss.com/docs/font-variant-numeric
23991
- */
23992
- "fvn-figure": ["lining-nums", "oldstyle-nums"],
23993
- /**
23994
- * Font Variant Numeric
23995
- * @see https://tailwindcss.com/docs/font-variant-numeric
23996
- */
23997
- "fvn-spacing": ["proportional-nums", "tabular-nums"],
23998
- /**
23999
- * Font Variant Numeric
24000
- * @see https://tailwindcss.com/docs/font-variant-numeric
24001
- */
24002
- "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
24003
- /**
24004
- * Letter Spacing
24005
- * @see https://tailwindcss.com/docs/letter-spacing
24006
- */
24007
- tracking: [{
24008
- tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", isArbitraryValue]
24009
- }],
24010
- /**
24011
- * Line Clamp
24012
- * @see https://tailwindcss.com/docs/line-clamp
24013
- */
24014
- "line-clamp": [{
24015
- "line-clamp": ["none", isNumber2, isArbitraryNumber]
24016
- }],
24017
- /**
24018
- * Line Height
24019
- * @see https://tailwindcss.com/docs/line-height
24020
- */
24021
- leading: [{
24022
- leading: ["none", "tight", "snug", "normal", "relaxed", "loose", isLength, isArbitraryValue]
24023
- }],
24024
- /**
24025
- * List Style Image
24026
- * @see https://tailwindcss.com/docs/list-style-image
24027
- */
24028
- "list-image": [{
24029
- "list-image": ["none", isArbitraryValue]
24030
- }],
24031
- /**
24032
- * List Style Type
24033
- * @see https://tailwindcss.com/docs/list-style-type
24034
- */
24035
- "list-style-type": [{
24036
- list: ["none", "disc", "decimal", isArbitraryValue]
24037
- }],
24038
- /**
24039
- * List Style Position
24040
- * @see https://tailwindcss.com/docs/list-style-position
24041
- */
24042
- "list-style-position": [{
24043
- list: ["inside", "outside"]
24044
- }],
24045
- /**
24046
- * Placeholder Color
24047
- * @deprecated since Tailwind CSS v3.0.0
24048
- * @see https://tailwindcss.com/docs/placeholder-color
24049
- */
24050
- "placeholder-color": [{
24051
- placeholder: [colors]
24052
- }],
24053
- /**
24054
- * Placeholder Opacity
24055
- * @see https://tailwindcss.com/docs/placeholder-opacity
24056
- */
24057
- "placeholder-opacity": [{
24058
- "placeholder-opacity": [opacity]
24059
- }],
24060
- /**
24061
- * Text Alignment
24062
- * @see https://tailwindcss.com/docs/text-align
24063
- */
24064
- "text-alignment": [{
24065
- text: ["left", "center", "right", "justify", "start", "end"]
24066
- }],
24067
- /**
24068
- * Text Color
24069
- * @see https://tailwindcss.com/docs/text-color
24070
- */
24071
- "text-color": [{
24072
- text: [colors]
24073
- }],
24074
- /**
24075
- * Text Opacity
24076
- * @see https://tailwindcss.com/docs/text-opacity
24077
- */
24078
- "text-opacity": [{
24079
- "text-opacity": [opacity]
24080
- }],
24081
- /**
24082
- * Text Decoration
24083
- * @see https://tailwindcss.com/docs/text-decoration
24084
- */
24085
- "text-decoration": ["underline", "overline", "line-through", "no-underline"],
24086
- /**
24087
- * Text Decoration Style
24088
- * @see https://tailwindcss.com/docs/text-decoration-style
24089
- */
24090
- "text-decoration-style": [{
24091
- decoration: [...getLineStyles(), "wavy"]
24092
- }],
24093
- /**
24094
- * Text Decoration Thickness
24095
- * @see https://tailwindcss.com/docs/text-decoration-thickness
24096
- */
24097
- "text-decoration-thickness": [{
24098
- decoration: ["auto", "from-font", isLength, isArbitraryLength]
24099
- }],
24100
- /**
24101
- * Text Underline Offset
24102
- * @see https://tailwindcss.com/docs/text-underline-offset
24103
- */
24104
- "underline-offset": [{
24105
- "underline-offset": ["auto", isLength, isArbitraryValue]
24106
- }],
24107
- /**
24108
- * Text Decoration Color
24109
- * @see https://tailwindcss.com/docs/text-decoration-color
24110
- */
24111
- "text-decoration-color": [{
24112
- decoration: [colors]
24113
- }],
24114
- /**
24115
- * Text Transform
24116
- * @see https://tailwindcss.com/docs/text-transform
24117
- */
24118
- "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
24119
- /**
24120
- * Text Overflow
24121
- * @see https://tailwindcss.com/docs/text-overflow
24122
- */
24123
- "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
24124
- /**
24125
- * Text Wrap
24126
- * @see https://tailwindcss.com/docs/text-wrap
24127
- */
24128
- "text-wrap": [{
24129
- text: ["wrap", "nowrap", "balance", "pretty"]
24130
- }],
24131
- /**
24132
- * Text Indent
24133
- * @see https://tailwindcss.com/docs/text-indent
24134
- */
24135
- indent: [{
24136
- indent: getSpacingWithArbitrary()
24137
- }],
24138
- /**
24139
- * Vertical Alignment
24140
- * @see https://tailwindcss.com/docs/vertical-align
24141
- */
24142
- "vertical-align": [{
24143
- align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", isArbitraryValue]
24144
- }],
24145
- /**
24146
- * Whitespace
24147
- * @see https://tailwindcss.com/docs/whitespace
24148
- */
24149
- whitespace: [{
24150
- whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
24151
- }],
24152
- /**
24153
- * Word Break
24154
- * @see https://tailwindcss.com/docs/word-break
24155
- */
24156
- break: [{
24157
- break: ["normal", "words", "all", "keep"]
24158
- }],
24159
- /**
24160
- * Hyphens
24161
- * @see https://tailwindcss.com/docs/hyphens
24162
- */
24163
- hyphens: [{
24164
- hyphens: ["none", "manual", "auto"]
24165
- }],
24166
- /**
24167
- * Content
24168
- * @see https://tailwindcss.com/docs/content
24169
- */
24170
- content: [{
24171
- content: ["none", isArbitraryValue]
24172
- }],
24173
- // Backgrounds
24174
- /**
24175
- * Background Attachment
24176
- * @see https://tailwindcss.com/docs/background-attachment
24177
- */
24178
- "bg-attachment": [{
24179
- bg: ["fixed", "local", "scroll"]
24180
- }],
24181
- /**
24182
- * Background Clip
24183
- * @see https://tailwindcss.com/docs/background-clip
24184
- */
24185
- "bg-clip": [{
24186
- "bg-clip": ["border", "padding", "content", "text"]
24187
- }],
24188
- /**
24189
- * Background Opacity
24190
- * @deprecated since Tailwind CSS v3.0.0
24191
- * @see https://tailwindcss.com/docs/background-opacity
24192
- */
24193
- "bg-opacity": [{
24194
- "bg-opacity": [opacity]
24195
- }],
24196
- /**
24197
- * Background Origin
24198
- * @see https://tailwindcss.com/docs/background-origin
24199
- */
24200
- "bg-origin": [{
24201
- "bg-origin": ["border", "padding", "content"]
24202
- }],
24203
- /**
24204
- * Background Position
24205
- * @see https://tailwindcss.com/docs/background-position
24206
- */
24207
- "bg-position": [{
24208
- bg: [...getPositions(), isArbitraryPosition]
24209
- }],
24210
- /**
24211
- * Background Repeat
24212
- * @see https://tailwindcss.com/docs/background-repeat
24213
- */
24214
- "bg-repeat": [{
24215
- bg: ["no-repeat", {
24216
- repeat: ["", "x", "y", "round", "space"]
24217
- }]
24218
- }],
24219
- /**
24220
- * Background Size
24221
- * @see https://tailwindcss.com/docs/background-size
24222
- */
24223
- "bg-size": [{
24224
- bg: ["auto", "cover", "contain", isArbitrarySize]
24225
- }],
24226
- /**
24227
- * Background Image
24228
- * @see https://tailwindcss.com/docs/background-image
24229
- */
24230
- "bg-image": [{
24231
- bg: ["none", {
24232
- "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
24233
- }, isArbitraryImage]
24234
- }],
24235
- /**
24236
- * Background Color
24237
- * @see https://tailwindcss.com/docs/background-color
24238
- */
24239
- "bg-color": [{
24240
- bg: [colors]
24241
- }],
24242
- /**
24243
- * Gradient Color Stops From Position
24244
- * @see https://tailwindcss.com/docs/gradient-color-stops
24245
- */
24246
- "gradient-from-pos": [{
24247
- from: [gradientColorStopPositions]
24248
- }],
24249
- /**
24250
- * Gradient Color Stops Via Position
24251
- * @see https://tailwindcss.com/docs/gradient-color-stops
24252
- */
24253
- "gradient-via-pos": [{
24254
- via: [gradientColorStopPositions]
24255
- }],
24256
- /**
24257
- * Gradient Color Stops To Position
24258
- * @see https://tailwindcss.com/docs/gradient-color-stops
24259
- */
24260
- "gradient-to-pos": [{
24261
- to: [gradientColorStopPositions]
24262
- }],
24263
- /**
24264
- * Gradient Color Stops From
24265
- * @see https://tailwindcss.com/docs/gradient-color-stops
24266
- */
24267
- "gradient-from": [{
24268
- from: [gradientColorStops]
24269
- }],
24270
- /**
24271
- * Gradient Color Stops Via
24272
- * @see https://tailwindcss.com/docs/gradient-color-stops
24273
- */
24274
- "gradient-via": [{
24275
- via: [gradientColorStops]
24276
- }],
24277
- /**
24278
- * Gradient Color Stops To
24279
- * @see https://tailwindcss.com/docs/gradient-color-stops
24280
- */
24281
- "gradient-to": [{
24282
- to: [gradientColorStops]
24283
- }],
24284
- // Borders
24285
- /**
24286
- * Border Radius
24287
- * @see https://tailwindcss.com/docs/border-radius
24288
- */
24289
- rounded: [{
24290
- rounded: [borderRadius]
24291
- }],
24292
- /**
24293
- * Border Radius Start
24294
- * @see https://tailwindcss.com/docs/border-radius
24295
- */
24296
- "rounded-s": [{
24297
- "rounded-s": [borderRadius]
24298
- }],
24299
- /**
24300
- * Border Radius End
24301
- * @see https://tailwindcss.com/docs/border-radius
24302
- */
24303
- "rounded-e": [{
24304
- "rounded-e": [borderRadius]
24305
- }],
24306
- /**
24307
- * Border Radius Top
24308
- * @see https://tailwindcss.com/docs/border-radius
24309
- */
24310
- "rounded-t": [{
24311
- "rounded-t": [borderRadius]
24312
- }],
24313
- /**
24314
- * Border Radius Right
24315
- * @see https://tailwindcss.com/docs/border-radius
24316
- */
24317
- "rounded-r": [{
24318
- "rounded-r": [borderRadius]
24319
- }],
24320
- /**
24321
- * Border Radius Bottom
24322
- * @see https://tailwindcss.com/docs/border-radius
24323
- */
24324
- "rounded-b": [{
24325
- "rounded-b": [borderRadius]
24326
- }],
24327
- /**
24328
- * Border Radius Left
24329
- * @see https://tailwindcss.com/docs/border-radius
24330
- */
24331
- "rounded-l": [{
24332
- "rounded-l": [borderRadius]
24333
- }],
24334
- /**
24335
- * Border Radius Start Start
24336
- * @see https://tailwindcss.com/docs/border-radius
24337
- */
24338
- "rounded-ss": [{
24339
- "rounded-ss": [borderRadius]
24340
- }],
24341
- /**
24342
- * Border Radius Start End
24343
- * @see https://tailwindcss.com/docs/border-radius
24344
- */
24345
- "rounded-se": [{
24346
- "rounded-se": [borderRadius]
24347
- }],
24348
- /**
24349
- * Border Radius End End
24350
- * @see https://tailwindcss.com/docs/border-radius
24351
- */
24352
- "rounded-ee": [{
24353
- "rounded-ee": [borderRadius]
24354
- }],
24355
- /**
24356
- * Border Radius End Start
24357
- * @see https://tailwindcss.com/docs/border-radius
24358
- */
24359
- "rounded-es": [{
24360
- "rounded-es": [borderRadius]
24361
- }],
24362
- /**
24363
- * Border Radius Top Left
24364
- * @see https://tailwindcss.com/docs/border-radius
24365
- */
24366
- "rounded-tl": [{
24367
- "rounded-tl": [borderRadius]
24368
- }],
24369
- /**
24370
- * Border Radius Top Right
24371
- * @see https://tailwindcss.com/docs/border-radius
24372
- */
24373
- "rounded-tr": [{
24374
- "rounded-tr": [borderRadius]
24375
- }],
24376
- /**
24377
- * Border Radius Bottom Right
24378
- * @see https://tailwindcss.com/docs/border-radius
24379
- */
24380
- "rounded-br": [{
24381
- "rounded-br": [borderRadius]
24382
- }],
24383
- /**
24384
- * Border Radius Bottom Left
24385
- * @see https://tailwindcss.com/docs/border-radius
24386
- */
24387
- "rounded-bl": [{
24388
- "rounded-bl": [borderRadius]
24389
- }],
24390
- /**
24391
- * Border Width
24392
- * @see https://tailwindcss.com/docs/border-width
24393
- */
24394
- "border-w": [{
24395
- border: [borderWidth]
24396
- }],
24397
- /**
24398
- * Border Width X
24399
- * @see https://tailwindcss.com/docs/border-width
24400
- */
24401
- "border-w-x": [{
24402
- "border-x": [borderWidth]
24403
- }],
24404
- /**
24405
- * Border Width Y
24406
- * @see https://tailwindcss.com/docs/border-width
24407
- */
24408
- "border-w-y": [{
24409
- "border-y": [borderWidth]
24410
- }],
24411
- /**
24412
- * Border Width Start
24413
- * @see https://tailwindcss.com/docs/border-width
24414
- */
24415
- "border-w-s": [{
24416
- "border-s": [borderWidth]
24417
- }],
24418
- /**
24419
- * Border Width End
24420
- * @see https://tailwindcss.com/docs/border-width
24421
- */
24422
- "border-w-e": [{
24423
- "border-e": [borderWidth]
24424
- }],
24425
- /**
24426
- * Border Width Top
24427
- * @see https://tailwindcss.com/docs/border-width
24428
- */
24429
- "border-w-t": [{
24430
- "border-t": [borderWidth]
24431
- }],
24432
- /**
24433
- * Border Width Right
24434
- * @see https://tailwindcss.com/docs/border-width
24435
- */
24436
- "border-w-r": [{
24437
- "border-r": [borderWidth]
24438
- }],
24439
- /**
24440
- * Border Width Bottom
24441
- * @see https://tailwindcss.com/docs/border-width
24442
- */
24443
- "border-w-b": [{
24444
- "border-b": [borderWidth]
24445
- }],
24446
- /**
24447
- * Border Width Left
24448
- * @see https://tailwindcss.com/docs/border-width
24449
- */
24450
- "border-w-l": [{
24451
- "border-l": [borderWidth]
24452
- }],
24453
- /**
24454
- * Border Opacity
24455
- * @see https://tailwindcss.com/docs/border-opacity
24456
- */
24457
- "border-opacity": [{
24458
- "border-opacity": [opacity]
24459
- }],
24460
- /**
24461
- * Border Style
24462
- * @see https://tailwindcss.com/docs/border-style
24463
- */
24464
- "border-style": [{
24465
- border: [...getLineStyles(), "hidden"]
24466
- }],
24467
- /**
24468
- * Divide Width X
24469
- * @see https://tailwindcss.com/docs/divide-width
24470
- */
24471
- "divide-x": [{
24472
- "divide-x": [borderWidth]
24473
- }],
24474
- /**
24475
- * Divide Width X Reverse
24476
- * @see https://tailwindcss.com/docs/divide-width
24477
- */
24478
- "divide-x-reverse": ["divide-x-reverse"],
24479
- /**
24480
- * Divide Width Y
24481
- * @see https://tailwindcss.com/docs/divide-width
24482
- */
24483
- "divide-y": [{
24484
- "divide-y": [borderWidth]
24485
- }],
24486
- /**
24487
- * Divide Width Y Reverse
24488
- * @see https://tailwindcss.com/docs/divide-width
24489
- */
24490
- "divide-y-reverse": ["divide-y-reverse"],
24491
- /**
24492
- * Divide Opacity
24493
- * @see https://tailwindcss.com/docs/divide-opacity
24494
- */
24495
- "divide-opacity": [{
24496
- "divide-opacity": [opacity]
24497
- }],
24498
- /**
24499
- * Divide Style
24500
- * @see https://tailwindcss.com/docs/divide-style
24501
- */
24502
- "divide-style": [{
24503
- divide: getLineStyles()
24504
- }],
24505
- /**
24506
- * Border Color
24507
- * @see https://tailwindcss.com/docs/border-color
24508
- */
24509
- "border-color": [{
24510
- border: [borderColor]
24511
- }],
24512
- /**
24513
- * Border Color X
24514
- * @see https://tailwindcss.com/docs/border-color
24515
- */
24516
- "border-color-x": [{
24517
- "border-x": [borderColor]
24518
- }],
24519
- /**
24520
- * Border Color Y
24521
- * @see https://tailwindcss.com/docs/border-color
24522
- */
24523
- "border-color-y": [{
24524
- "border-y": [borderColor]
24525
- }],
24526
- /**
24527
- * Border Color S
24528
- * @see https://tailwindcss.com/docs/border-color
24529
- */
24530
- "border-color-s": [{
24531
- "border-s": [borderColor]
24532
- }],
24533
- /**
24534
- * Border Color E
24535
- * @see https://tailwindcss.com/docs/border-color
24536
- */
24537
- "border-color-e": [{
24538
- "border-e": [borderColor]
24539
- }],
24540
- /**
24541
- * Border Color Top
24542
- * @see https://tailwindcss.com/docs/border-color
24543
- */
24544
- "border-color-t": [{
24545
- "border-t": [borderColor]
24546
- }],
24547
- /**
24548
- * Border Color Right
24549
- * @see https://tailwindcss.com/docs/border-color
24550
- */
24551
- "border-color-r": [{
24552
- "border-r": [borderColor]
24553
- }],
24554
- /**
24555
- * Border Color Bottom
24556
- * @see https://tailwindcss.com/docs/border-color
24557
- */
24558
- "border-color-b": [{
24559
- "border-b": [borderColor]
24560
- }],
24561
- /**
24562
- * Border Color Left
24563
- * @see https://tailwindcss.com/docs/border-color
24564
- */
24565
- "border-color-l": [{
24566
- "border-l": [borderColor]
24567
- }],
24568
- /**
24569
- * Divide Color
24570
- * @see https://tailwindcss.com/docs/divide-color
24571
- */
24572
- "divide-color": [{
24573
- divide: [borderColor]
24574
- }],
24575
- /**
24576
- * Outline Style
24577
- * @see https://tailwindcss.com/docs/outline-style
24578
- */
24579
- "outline-style": [{
24580
- outline: ["", ...getLineStyles()]
24581
- }],
24582
- /**
24583
- * Outline Offset
24584
- * @see https://tailwindcss.com/docs/outline-offset
24585
- */
24586
- "outline-offset": [{
24587
- "outline-offset": [isLength, isArbitraryValue]
24588
- }],
24589
- /**
24590
- * Outline Width
24591
- * @see https://tailwindcss.com/docs/outline-width
24592
- */
24593
- "outline-w": [{
24594
- outline: [isLength, isArbitraryLength]
24595
- }],
24596
- /**
24597
- * Outline Color
24598
- * @see https://tailwindcss.com/docs/outline-color
24599
- */
24600
- "outline-color": [{
24601
- outline: [colors]
24602
- }],
24603
- /**
24604
- * Ring Width
24605
- * @see https://tailwindcss.com/docs/ring-width
24606
- */
24607
- "ring-w": [{
24608
- ring: getLengthWithEmptyAndArbitrary()
24609
- }],
24610
- /**
24611
- * Ring Width Inset
24612
- * @see https://tailwindcss.com/docs/ring-width
24613
- */
24614
- "ring-w-inset": ["ring-inset"],
24615
- /**
24616
- * Ring Color
24617
- * @see https://tailwindcss.com/docs/ring-color
24618
- */
24619
- "ring-color": [{
24620
- ring: [colors]
24621
- }],
24622
- /**
24623
- * Ring Opacity
24624
- * @see https://tailwindcss.com/docs/ring-opacity
24625
- */
24626
- "ring-opacity": [{
24627
- "ring-opacity": [opacity]
24628
- }],
24629
- /**
24630
- * Ring Offset Width
24631
- * @see https://tailwindcss.com/docs/ring-offset-width
24632
- */
24633
- "ring-offset-w": [{
24634
- "ring-offset": [isLength, isArbitraryLength]
24635
- }],
24636
- /**
24637
- * Ring Offset Color
24638
- * @see https://tailwindcss.com/docs/ring-offset-color
24639
- */
24640
- "ring-offset-color": [{
24641
- "ring-offset": [colors]
24642
- }],
24643
- // Effects
24644
- /**
24645
- * Box Shadow
24646
- * @see https://tailwindcss.com/docs/box-shadow
24647
- */
24648
- shadow: [{
24649
- shadow: ["", "inner", "none", isTshirtSize, isArbitraryShadow]
24650
- }],
24651
- /**
24652
- * Box Shadow Color
24653
- * @see https://tailwindcss.com/docs/box-shadow-color
24654
- */
24655
- "shadow-color": [{
24656
- shadow: [isAny]
24657
- }],
24658
- /**
24659
- * Opacity
24660
- * @see https://tailwindcss.com/docs/opacity
24661
- */
24662
- opacity: [{
24663
- opacity: [opacity]
24664
- }],
24665
- /**
24666
- * Mix Blend Mode
24667
- * @see https://tailwindcss.com/docs/mix-blend-mode
24668
- */
24669
- "mix-blend": [{
24670
- "mix-blend": [...getBlendModes(), "plus-lighter", "plus-darker"]
24671
- }],
24672
- /**
24673
- * Background Blend Mode
24674
- * @see https://tailwindcss.com/docs/background-blend-mode
24675
- */
24676
- "bg-blend": [{
24677
- "bg-blend": getBlendModes()
24678
- }],
24679
- // Filters
24680
- /**
24681
- * Filter
24682
- * @deprecated since Tailwind CSS v3.0.0
24683
- * @see https://tailwindcss.com/docs/filter
24684
- */
24685
- filter: [{
24686
- filter: ["", "none"]
24687
- }],
24688
- /**
24689
- * Blur
24690
- * @see https://tailwindcss.com/docs/blur
24691
- */
24692
- blur: [{
24693
- blur: [blur]
24694
- }],
24695
- /**
24696
- * Brightness
24697
- * @see https://tailwindcss.com/docs/brightness
24698
- */
24699
- brightness: [{
24700
- brightness: [brightness]
24701
- }],
24702
- /**
24703
- * Contrast
24704
- * @see https://tailwindcss.com/docs/contrast
24705
- */
24706
- contrast: [{
24707
- contrast: [contrast]
24708
- }],
24709
- /**
24710
- * Drop Shadow
24711
- * @see https://tailwindcss.com/docs/drop-shadow
24712
- */
24713
- "drop-shadow": [{
24714
- "drop-shadow": ["", "none", isTshirtSize, isArbitraryValue]
24715
- }],
24716
- /**
24717
- * Grayscale
24718
- * @see https://tailwindcss.com/docs/grayscale
24719
- */
24720
- grayscale: [{
24721
- grayscale: [grayscale]
24722
- }],
24723
- /**
24724
- * Hue Rotate
24725
- * @see https://tailwindcss.com/docs/hue-rotate
24726
- */
24727
- "hue-rotate": [{
24728
- "hue-rotate": [hueRotate]
24729
- }],
24730
- /**
24731
- * Invert
24732
- * @see https://tailwindcss.com/docs/invert
24733
- */
24734
- invert: [{
24735
- invert: [invert]
24736
- }],
24737
- /**
24738
- * Saturate
24739
- * @see https://tailwindcss.com/docs/saturate
24740
- */
24741
- saturate: [{
24742
- saturate: [saturate]
24743
- }],
24744
- /**
24745
- * Sepia
24746
- * @see https://tailwindcss.com/docs/sepia
24747
- */
24748
- sepia: [{
24749
- sepia: [sepia]
24750
- }],
24751
- /**
24752
- * Backdrop Filter
24753
- * @deprecated since Tailwind CSS v3.0.0
24754
- * @see https://tailwindcss.com/docs/backdrop-filter
24755
- */
24756
- "backdrop-filter": [{
24757
- "backdrop-filter": ["", "none"]
24758
- }],
24759
- /**
24760
- * Backdrop Blur
24761
- * @see https://tailwindcss.com/docs/backdrop-blur
24762
- */
24763
- "backdrop-blur": [{
24764
- "backdrop-blur": [blur]
24765
- }],
24766
- /**
24767
- * Backdrop Brightness
24768
- * @see https://tailwindcss.com/docs/backdrop-brightness
24769
- */
24770
- "backdrop-brightness": [{
24771
- "backdrop-brightness": [brightness]
24772
- }],
24773
- /**
24774
- * Backdrop Contrast
24775
- * @see https://tailwindcss.com/docs/backdrop-contrast
24776
- */
24777
- "backdrop-contrast": [{
24778
- "backdrop-contrast": [contrast]
24779
- }],
24780
- /**
24781
- * Backdrop Grayscale
24782
- * @see https://tailwindcss.com/docs/backdrop-grayscale
24783
- */
24784
- "backdrop-grayscale": [{
24785
- "backdrop-grayscale": [grayscale]
24786
- }],
24787
- /**
24788
- * Backdrop Hue Rotate
24789
- * @see https://tailwindcss.com/docs/backdrop-hue-rotate
24790
- */
24791
- "backdrop-hue-rotate": [{
24792
- "backdrop-hue-rotate": [hueRotate]
24793
- }],
24794
- /**
24795
- * Backdrop Invert
24796
- * @see https://tailwindcss.com/docs/backdrop-invert
24797
- */
24798
- "backdrop-invert": [{
24799
- "backdrop-invert": [invert]
24800
- }],
24801
- /**
24802
- * Backdrop Opacity
24803
- * @see https://tailwindcss.com/docs/backdrop-opacity
24804
- */
24805
- "backdrop-opacity": [{
24806
- "backdrop-opacity": [opacity]
24807
- }],
24808
- /**
24809
- * Backdrop Saturate
24810
- * @see https://tailwindcss.com/docs/backdrop-saturate
24811
- */
24812
- "backdrop-saturate": [{
24813
- "backdrop-saturate": [saturate]
24814
- }],
24815
- /**
24816
- * Backdrop Sepia
24817
- * @see https://tailwindcss.com/docs/backdrop-sepia
24818
- */
24819
- "backdrop-sepia": [{
24820
- "backdrop-sepia": [sepia]
24821
- }],
24822
- // Tables
24823
- /**
24824
- * Border Collapse
24825
- * @see https://tailwindcss.com/docs/border-collapse
24826
- */
24827
- "border-collapse": [{
24828
- border: ["collapse", "separate"]
24829
- }],
24830
- /**
24831
- * Border Spacing
24832
- * @see https://tailwindcss.com/docs/border-spacing
24833
- */
24834
- "border-spacing": [{
24835
- "border-spacing": [borderSpacing]
24836
- }],
24837
- /**
24838
- * Border Spacing X
24839
- * @see https://tailwindcss.com/docs/border-spacing
24840
- */
24841
- "border-spacing-x": [{
24842
- "border-spacing-x": [borderSpacing]
24843
- }],
24844
- /**
24845
- * Border Spacing Y
24846
- * @see https://tailwindcss.com/docs/border-spacing
24847
- */
24848
- "border-spacing-y": [{
24849
- "border-spacing-y": [borderSpacing]
24850
- }],
24851
- /**
24852
- * Table Layout
24853
- * @see https://tailwindcss.com/docs/table-layout
24854
- */
24855
- "table-layout": [{
24856
- table: ["auto", "fixed"]
24857
- }],
24858
- /**
24859
- * Caption Side
24860
- * @see https://tailwindcss.com/docs/caption-side
24861
- */
24862
- caption: [{
24863
- caption: ["top", "bottom"]
24864
- }],
24865
- // Transitions and Animation
24866
- /**
24867
- * Tranisition Property
24868
- * @see https://tailwindcss.com/docs/transition-property
24869
- */
24870
- transition: [{
24871
- transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", isArbitraryValue]
24872
- }],
24873
- /**
24874
- * Transition Duration
24875
- * @see https://tailwindcss.com/docs/transition-duration
24876
- */
24877
- duration: [{
24878
- duration: getNumberAndArbitrary()
24879
- }],
24880
- /**
24881
- * Transition Timing Function
24882
- * @see https://tailwindcss.com/docs/transition-timing-function
24883
- */
24884
- ease: [{
24885
- ease: ["linear", "in", "out", "in-out", isArbitraryValue]
24886
- }],
24887
- /**
24888
- * Transition Delay
24889
- * @see https://tailwindcss.com/docs/transition-delay
24890
- */
24891
- delay: [{
24892
- delay: getNumberAndArbitrary()
24893
- }],
24894
- /**
24895
- * Animation
24896
- * @see https://tailwindcss.com/docs/animation
24897
- */
24898
- animate: [{
24899
- animate: ["none", "spin", "ping", "pulse", "bounce", isArbitraryValue]
24900
- }],
24901
- // Transforms
24902
- /**
24903
- * Transform
24904
- * @see https://tailwindcss.com/docs/transform
24905
- */
24906
- transform: [{
24907
- transform: ["", "gpu", "none"]
24908
- }],
24909
- /**
24910
- * Scale
24911
- * @see https://tailwindcss.com/docs/scale
24912
- */
24913
- scale: [{
24914
- scale: [scale]
24915
- }],
24916
- /**
24917
- * Scale X
24918
- * @see https://tailwindcss.com/docs/scale
24919
- */
24920
- "scale-x": [{
24921
- "scale-x": [scale]
24922
- }],
24923
- /**
24924
- * Scale Y
24925
- * @see https://tailwindcss.com/docs/scale
24926
- */
24927
- "scale-y": [{
24928
- "scale-y": [scale]
24929
- }],
24930
- /**
24931
- * Rotate
24932
- * @see https://tailwindcss.com/docs/rotate
24933
- */
24934
- rotate: [{
24935
- rotate: [isInteger, isArbitraryValue]
24936
- }],
24937
- /**
24938
- * Translate X
24939
- * @see https://tailwindcss.com/docs/translate
24940
- */
24941
- "translate-x": [{
24942
- "translate-x": [translate2]
24943
- }],
24944
- /**
24945
- * Translate Y
24946
- * @see https://tailwindcss.com/docs/translate
24947
- */
24948
- "translate-y": [{
24949
- "translate-y": [translate2]
24950
- }],
24951
- /**
24952
- * Skew X
24953
- * @see https://tailwindcss.com/docs/skew
24954
- */
24955
- "skew-x": [{
24956
- "skew-x": [skew]
24957
- }],
24958
- /**
24959
- * Skew Y
24960
- * @see https://tailwindcss.com/docs/skew
24961
- */
24962
- "skew-y": [{
24963
- "skew-y": [skew]
24964
- }],
24965
- /**
24966
- * Transform Origin
24967
- * @see https://tailwindcss.com/docs/transform-origin
24968
- */
24969
- "transform-origin": [{
24970
- origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", isArbitraryValue]
24971
- }],
24972
- // Interactivity
24973
- /**
24974
- * Accent Color
24975
- * @see https://tailwindcss.com/docs/accent-color
24976
- */
24977
- accent: [{
24978
- accent: ["auto", colors]
24979
- }],
24980
- /**
24981
- * Appearance
24982
- * @see https://tailwindcss.com/docs/appearance
24983
- */
24984
- appearance: [{
24985
- appearance: ["none", "auto"]
24986
- }],
24987
- /**
24988
- * Cursor
24989
- * @see https://tailwindcss.com/docs/cursor
24990
- */
24991
- cursor: [{
24992
- cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", isArbitraryValue]
24993
- }],
24994
- /**
24995
- * Caret Color
24996
- * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
24997
- */
24998
- "caret-color": [{
24999
- caret: [colors]
25000
- }],
25001
- /**
25002
- * Pointer Events
25003
- * @see https://tailwindcss.com/docs/pointer-events
25004
- */
25005
- "pointer-events": [{
25006
- "pointer-events": ["none", "auto"]
25007
- }],
25008
- /**
25009
- * Resize
25010
- * @see https://tailwindcss.com/docs/resize
25011
- */
25012
- resize: [{
25013
- resize: ["none", "y", "x", ""]
25014
- }],
25015
- /**
25016
- * Scroll Behavior
25017
- * @see https://tailwindcss.com/docs/scroll-behavior
25018
- */
25019
- "scroll-behavior": [{
25020
- scroll: ["auto", "smooth"]
25021
- }],
25022
- /**
25023
- * Scroll Margin
25024
- * @see https://tailwindcss.com/docs/scroll-margin
25025
- */
25026
- "scroll-m": [{
25027
- "scroll-m": getSpacingWithArbitrary()
25028
- }],
25029
- /**
25030
- * Scroll Margin X
25031
- * @see https://tailwindcss.com/docs/scroll-margin
25032
- */
25033
- "scroll-mx": [{
25034
- "scroll-mx": getSpacingWithArbitrary()
25035
- }],
25036
- /**
25037
- * Scroll Margin Y
25038
- * @see https://tailwindcss.com/docs/scroll-margin
25039
- */
25040
- "scroll-my": [{
25041
- "scroll-my": getSpacingWithArbitrary()
25042
- }],
25043
- /**
25044
- * Scroll Margin Start
25045
- * @see https://tailwindcss.com/docs/scroll-margin
25046
- */
25047
- "scroll-ms": [{
25048
- "scroll-ms": getSpacingWithArbitrary()
25049
- }],
25050
- /**
25051
- * Scroll Margin End
25052
- * @see https://tailwindcss.com/docs/scroll-margin
25053
- */
25054
- "scroll-me": [{
25055
- "scroll-me": getSpacingWithArbitrary()
25056
- }],
25057
- /**
25058
- * Scroll Margin Top
25059
- * @see https://tailwindcss.com/docs/scroll-margin
25060
- */
25061
- "scroll-mt": [{
25062
- "scroll-mt": getSpacingWithArbitrary()
25063
- }],
25064
- /**
25065
- * Scroll Margin Right
25066
- * @see https://tailwindcss.com/docs/scroll-margin
25067
- */
25068
- "scroll-mr": [{
25069
- "scroll-mr": getSpacingWithArbitrary()
25070
- }],
25071
- /**
25072
- * Scroll Margin Bottom
25073
- * @see https://tailwindcss.com/docs/scroll-margin
25074
- */
25075
- "scroll-mb": [{
25076
- "scroll-mb": getSpacingWithArbitrary()
25077
- }],
25078
- /**
25079
- * Scroll Margin Left
25080
- * @see https://tailwindcss.com/docs/scroll-margin
25081
- */
25082
- "scroll-ml": [{
25083
- "scroll-ml": getSpacingWithArbitrary()
25084
- }],
25085
- /**
25086
- * Scroll Padding
25087
- * @see https://tailwindcss.com/docs/scroll-padding
25088
- */
25089
- "scroll-p": [{
25090
- "scroll-p": getSpacingWithArbitrary()
25091
- }],
25092
- /**
25093
- * Scroll Padding X
25094
- * @see https://tailwindcss.com/docs/scroll-padding
25095
- */
25096
- "scroll-px": [{
25097
- "scroll-px": getSpacingWithArbitrary()
25098
- }],
25099
- /**
25100
- * Scroll Padding Y
25101
- * @see https://tailwindcss.com/docs/scroll-padding
25102
- */
25103
- "scroll-py": [{
25104
- "scroll-py": getSpacingWithArbitrary()
25105
- }],
25106
- /**
25107
- * Scroll Padding Start
25108
- * @see https://tailwindcss.com/docs/scroll-padding
25109
- */
25110
- "scroll-ps": [{
25111
- "scroll-ps": getSpacingWithArbitrary()
25112
- }],
25113
- /**
25114
- * Scroll Padding End
25115
- * @see https://tailwindcss.com/docs/scroll-padding
25116
- */
25117
- "scroll-pe": [{
25118
- "scroll-pe": getSpacingWithArbitrary()
25119
- }],
25120
- /**
25121
- * Scroll Padding Top
25122
- * @see https://tailwindcss.com/docs/scroll-padding
25123
- */
25124
- "scroll-pt": [{
25125
- "scroll-pt": getSpacingWithArbitrary()
25126
- }],
25127
- /**
25128
- * Scroll Padding Right
25129
- * @see https://tailwindcss.com/docs/scroll-padding
25130
- */
25131
- "scroll-pr": [{
25132
- "scroll-pr": getSpacingWithArbitrary()
25133
- }],
25134
- /**
25135
- * Scroll Padding Bottom
25136
- * @see https://tailwindcss.com/docs/scroll-padding
25137
- */
25138
- "scroll-pb": [{
25139
- "scroll-pb": getSpacingWithArbitrary()
25140
- }],
25141
- /**
25142
- * Scroll Padding Left
25143
- * @see https://tailwindcss.com/docs/scroll-padding
25144
- */
25145
- "scroll-pl": [{
25146
- "scroll-pl": getSpacingWithArbitrary()
25147
- }],
25148
- /**
25149
- * Scroll Snap Align
25150
- * @see https://tailwindcss.com/docs/scroll-snap-align
25151
- */
25152
- "snap-align": [{
25153
- snap: ["start", "end", "center", "align-none"]
25154
- }],
25155
- /**
25156
- * Scroll Snap Stop
25157
- * @see https://tailwindcss.com/docs/scroll-snap-stop
25158
- */
25159
- "snap-stop": [{
25160
- snap: ["normal", "always"]
25161
- }],
25162
- /**
25163
- * Scroll Snap Type
25164
- * @see https://tailwindcss.com/docs/scroll-snap-type
25165
- */
25166
- "snap-type": [{
25167
- snap: ["none", "x", "y", "both"]
25168
- }],
25169
- /**
25170
- * Scroll Snap Type Strictness
25171
- * @see https://tailwindcss.com/docs/scroll-snap-type
25172
- */
25173
- "snap-strictness": [{
25174
- snap: ["mandatory", "proximity"]
25175
- }],
25176
- /**
25177
- * Touch Action
25178
- * @see https://tailwindcss.com/docs/touch-action
25179
- */
25180
- touch: [{
25181
- touch: ["auto", "none", "manipulation"]
25182
- }],
25183
- /**
25184
- * Touch Action X
25185
- * @see https://tailwindcss.com/docs/touch-action
25186
- */
25187
- "touch-x": [{
25188
- "touch-pan": ["x", "left", "right"]
25189
- }],
25190
- /**
25191
- * Touch Action Y
25192
- * @see https://tailwindcss.com/docs/touch-action
25193
- */
25194
- "touch-y": [{
25195
- "touch-pan": ["y", "up", "down"]
25196
- }],
25197
- /**
25198
- * Touch Action Pinch Zoom
25199
- * @see https://tailwindcss.com/docs/touch-action
25200
- */
25201
- "touch-pz": ["touch-pinch-zoom"],
25202
- /**
25203
- * User Select
25204
- * @see https://tailwindcss.com/docs/user-select
25205
- */
25206
- select: [{
25207
- select: ["none", "text", "all", "auto"]
25208
- }],
25209
- /**
25210
- * Will Change
25211
- * @see https://tailwindcss.com/docs/will-change
25212
- */
25213
- "will-change": [{
25214
- "will-change": ["auto", "scroll", "contents", "transform", isArbitraryValue]
25215
- }],
25216
- // SVG
25217
- /**
25218
- * Fill
25219
- * @see https://tailwindcss.com/docs/fill
25220
- */
25221
- fill: [{
25222
- fill: [colors, "none"]
25223
- }],
25224
- /**
25225
- * Stroke Width
25226
- * @see https://tailwindcss.com/docs/stroke-width
25227
- */
25228
- "stroke-w": [{
25229
- stroke: [isLength, isArbitraryLength, isArbitraryNumber]
25230
- }],
25231
- /**
25232
- * Stroke
25233
- * @see https://tailwindcss.com/docs/stroke
25234
- */
25235
- stroke: [{
25236
- stroke: [colors, "none"]
25237
- }],
25238
- // Accessibility
25239
- /**
25240
- * Screen Readers
25241
- * @see https://tailwindcss.com/docs/screen-readers
25242
- */
25243
- sr: ["sr-only", "not-sr-only"],
25244
- /**
25245
- * Forced Color Adjust
25246
- * @see https://tailwindcss.com/docs/forced-color-adjust
25247
- */
25248
- "forced-color-adjust": [{
25249
- "forced-color-adjust": ["auto", "none"]
25250
- }]
25251
- },
25252
- conflictingClassGroups: {
25253
- overflow: ["overflow-x", "overflow-y"],
25254
- overscroll: ["overscroll-x", "overscroll-y"],
25255
- inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
25256
- "inset-x": ["right", "left"],
25257
- "inset-y": ["top", "bottom"],
25258
- flex: ["basis", "grow", "shrink"],
25259
- gap: ["gap-x", "gap-y"],
25260
- p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
25261
- px: ["pr", "pl"],
25262
- py: ["pt", "pb"],
25263
- m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
25264
- mx: ["mr", "ml"],
25265
- my: ["mt", "mb"],
25266
- size: ["w", "h"],
25267
- "font-size": ["leading"],
25268
- "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
25269
- "fvn-ordinal": ["fvn-normal"],
25270
- "fvn-slashed-zero": ["fvn-normal"],
25271
- "fvn-figure": ["fvn-normal"],
25272
- "fvn-spacing": ["fvn-normal"],
25273
- "fvn-fraction": ["fvn-normal"],
25274
- "line-clamp": ["display", "overflow"],
25275
- rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
25276
- "rounded-s": ["rounded-ss", "rounded-es"],
25277
- "rounded-e": ["rounded-se", "rounded-ee"],
25278
- "rounded-t": ["rounded-tl", "rounded-tr"],
25279
- "rounded-r": ["rounded-tr", "rounded-br"],
25280
- "rounded-b": ["rounded-br", "rounded-bl"],
25281
- "rounded-l": ["rounded-tl", "rounded-bl"],
25282
- "border-spacing": ["border-spacing-x", "border-spacing-y"],
25283
- "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
25284
- "border-w-x": ["border-w-r", "border-w-l"],
25285
- "border-w-y": ["border-w-t", "border-w-b"],
25286
- "border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
25287
- "border-color-x": ["border-color-r", "border-color-l"],
25288
- "border-color-y": ["border-color-t", "border-color-b"],
25289
- "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
25290
- "scroll-mx": ["scroll-mr", "scroll-ml"],
25291
- "scroll-my": ["scroll-mt", "scroll-mb"],
25292
- "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
25293
- "scroll-px": ["scroll-pr", "scroll-pl"],
25294
- "scroll-py": ["scroll-pt", "scroll-pb"],
25295
- touch: ["touch-x", "touch-y", "touch-pz"],
25296
- "touch-x": ["touch"],
25297
- "touch-y": ["touch"],
25298
- "touch-pz": ["touch"]
25299
- },
25300
- conflictingClassGroupModifiers: {
25301
- "font-size": ["leading"]
25302
- }
25303
- };
25304
- };
25305
- var mergeConfigs = (baseConfig, {
25306
- cacheSize,
25307
- prefix,
25308
- separator,
25309
- experimentalParseClassName,
25310
- extend: extend5 = {},
25311
- override = {}
25312
- }) => {
25313
- overrideProperty(baseConfig, "cacheSize", cacheSize);
25314
- overrideProperty(baseConfig, "prefix", prefix);
25315
- overrideProperty(baseConfig, "separator", separator);
25316
- overrideProperty(baseConfig, "experimentalParseClassName", experimentalParseClassName);
25317
- for (const configKey in override) {
25318
- overrideConfigProperties(baseConfig[configKey], override[configKey]);
25319
- }
25320
- for (const key in extend5) {
25321
- mergeConfigProperties(baseConfig[key], extend5[key]);
25322
- }
25323
- return baseConfig;
25324
- };
25325
- var overrideProperty = (baseObject, overrideKey, overrideValue) => {
25326
- if (overrideValue !== void 0) {
25327
- baseObject[overrideKey] = overrideValue;
25328
- }
25329
- };
25330
- var overrideConfigProperties = (baseObject, overrideObject) => {
25331
- if (overrideObject) {
25332
- for (const key in overrideObject) {
25333
- overrideProperty(baseObject, key, overrideObject[key]);
25334
- }
25335
- }
25336
- };
25337
- var mergeConfigProperties = (baseObject, mergeObject) => {
25338
- if (mergeObject) {
25339
- for (const key in mergeObject) {
25340
- const mergeValue = mergeObject[key];
25341
- if (mergeValue !== void 0) {
25342
- baseObject[key] = (baseObject[key] || []).concat(mergeValue);
25343
- }
25344
- }
25345
- }
25346
- };
25347
- var extendTailwindMerge = (configExtension, ...createConfig) => typeof configExtension === "function" ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);
25348
- var twMerge2 = /* @__PURE__ */ createTailwindMerge(getDefaultConfig);
25349
- exports.createTailwindMerge = createTailwindMerge;
25350
- exports.extendTailwindMerge = extendTailwindMerge;
25351
- exports.fromTheme = fromTheme;
25352
- exports.getDefaultConfig = getDefaultConfig;
25353
- exports.mergeConfigs = mergeConfigs;
25354
- exports.twJoin = twJoin;
25355
- exports.twMerge = twMerge2;
25356
- exports.validators = validators;
25357
- }
25358
- });
25359
-
25360
22823
  // ../../node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js
25361
22824
  var require_classnames = __commonJS({
25362
22825
  "../../node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js"(exports, module2) {
@@ -56168,7 +53631,7 @@ var import_react80 = require("react");
56168
53631
 
56169
53632
  // src/helpers/utils.ts
56170
53633
  init_clsx();
56171
- var import_tailwind_merge = __toESM(require_bundle_cjs2());
53634
+ var import_tailwind_merge = __toESM(require_bundle_cjs());
56172
53635
  function cn(...inputs) {
56173
53636
  return (0, import_tailwind_merge.twMerge)(clsx(inputs));
56174
53637
  }
@@ -56473,7 +53936,7 @@ function CreditsBanner({ copy }) {
56473
53936
  var import_headless_ui4 = __toESM(require_cjs());
56474
53937
  var import_react82 = require("react");
56475
53938
 
56476
- // node_modules/swiper/shared/ssr-window.esm.mjs
53939
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/ssr-window.esm.mjs
56477
53940
  function isObject3(obj) {
56478
53941
  return obj !== null && typeof obj === "object" && "constructor" in obj && obj.constructor === Object;
56479
53942
  }
@@ -56624,7 +54087,7 @@ function getWindow2() {
56624
54087
  return win;
56625
54088
  }
56626
54089
 
56627
- // node_modules/swiper/shared/utils.mjs
54090
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/utils.mjs
56628
54091
  function classesToTokens(classes2) {
56629
54092
  if (classes2 === void 0) {
56630
54093
  classes2 = "";
@@ -56915,7 +54378,7 @@ function makeElementsArray(el) {
56915
54378
  return (Array.isArray(el) ? el : [el]).filter((e7) => !!e7);
56916
54379
  }
56917
54380
 
56918
- // node_modules/swiper/shared/create-element-if-not-defined.mjs
54381
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/create-element-if-not-defined.mjs
56919
54382
  function createElementIfNotDefined(swiper, originalParams, params, checkProps) {
56920
54383
  if (swiper.params.createElements) {
56921
54384
  Object.keys(checkProps).forEach((key) => {
@@ -56934,7 +54397,7 @@ function createElementIfNotDefined(swiper, originalParams, params, checkProps) {
56934
54397
  return params;
56935
54398
  }
56936
54399
 
56937
- // node_modules/swiper/shared/classes-to-selector.mjs
54400
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/classes-to-selector.mjs
56938
54401
  function classesToSelector(classes2) {
56939
54402
  if (classes2 === void 0) {
56940
54403
  classes2 = "";
@@ -56942,7 +54405,7 @@ function classesToSelector(classes2) {
56942
54405
  return `.${classes2.trim().replace(/([\.:!+\/])/g, "\\$1").replace(/ /g, ".")}`;
56943
54406
  }
56944
54407
 
56945
- // node_modules/swiper/modules/pagination.mjs
54408
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/modules/pagination.mjs
56946
54409
  function Pagination(_ref) {
56947
54410
  let {
56948
54411
  swiper,
@@ -57405,7 +54868,7 @@ function Pagination(_ref) {
57405
54868
  });
57406
54869
  }
57407
54870
 
57408
- // node_modules/swiper/modules/grid.mjs
54871
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/modules/grid.mjs
57409
54872
  function Grid(_ref) {
57410
54873
  let {
57411
54874
  swiper,
@@ -57561,10 +55024,10 @@ function Grid(_ref) {
57561
55024
  };
57562
55025
  }
57563
55026
 
57564
- // node_modules/swiper/swiper-react.mjs
55027
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/swiper-react.mjs
57565
55028
  var import_react81 = __toESM(require("react"), 1);
57566
55029
 
57567
- // node_modules/swiper/shared/swiper-core.mjs
55030
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/swiper-core.mjs
57568
55031
  var support;
57569
55032
  function calcSupport() {
57570
55033
  const window2 = getWindow2();
@@ -61421,7 +58884,7 @@ Object.keys(prototypes).forEach((prototypeGroup) => {
61421
58884
  });
61422
58885
  Swiper.use([Resize, Observer]);
61423
58886
 
61424
- // node_modules/swiper/shared/update-swiper.mjs
58887
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/update-swiper.mjs
61425
58888
  var paramsList = [
61426
58889
  "eventsPrefix",
61427
58890
  "injectStyles",
@@ -61779,7 +59242,7 @@ function updateSwiper(_ref) {
61779
59242
  swiper.update();
61780
59243
  }
61781
59244
 
61782
- // node_modules/swiper/shared/update-on-virtual-data.mjs
59245
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/shared/update-on-virtual-data.mjs
61783
59246
  function getParams(obj, splitEvents) {
61784
59247
  if (obj === void 0) {
61785
59248
  obj = {};
@@ -61912,7 +59375,7 @@ var updateOnVirtualData = (swiper) => {
61912
59375
  }
61913
59376
  };
61914
59377
 
61915
- // node_modules/swiper/swiper-react.mjs
59378
+ // ../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/swiper-react.mjs
61916
59379
  function _extends() {
61917
59380
  _extends = Object.assign ? Object.assign.bind() : function(target) {
61918
59381
  for (var i11 = 1; i11 < arguments.length; i11++) {