tailwindcss 0.0.0-oxide-insiders.759a8c2 → 0.0.0-oxide-insiders.e4ddda6
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.
- package/package.json +3 -3
- package/peers/index.js +91 -82
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "0.0.0-oxide-insiders.
|
|
3
|
+
"version": "0.0.0-oxide-insiders.e4ddda6",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@alloc/quick-lru": "^5.2.0",
|
|
71
|
-
"@tailwindcss/oxide": "0.0.0-oxide-insiders.
|
|
71
|
+
"@tailwindcss/oxide": "0.0.0-oxide-insiders.e4ddda6",
|
|
72
72
|
"arg": "^5.0.2",
|
|
73
73
|
"browserslist": "^4.21.5",
|
|
74
74
|
"chokidar": "^3.5.3",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"postcss-js": "^4.0.1",
|
|
90
90
|
"postcss-load-config": "^4.0.1",
|
|
91
91
|
"postcss-nested": "^6.0.1",
|
|
92
|
-
"postcss-selector-parser": "^6.0.
|
|
92
|
+
"postcss-selector-parser": "^6.0.12",
|
|
93
93
|
"postcss-value-parser": "^4.2.0",
|
|
94
94
|
"resolve": "^1.22.3",
|
|
95
95
|
"sucrase": "^3.32.0"
|
package/peers/index.js
CHANGED
|
@@ -84012,7 +84012,7 @@ var require_util2 = __commonJS({
|
|
|
84012
84012
|
"node_modules/postcss-selector-parser/dist/util/index.js"(exports2) {
|
|
84013
84013
|
"use strict";
|
|
84014
84014
|
exports2.__esModule = true;
|
|
84015
|
-
exports2.
|
|
84015
|
+
exports2.unesc = exports2.stripComments = exports2.getProp = exports2.ensureObject = void 0;
|
|
84016
84016
|
var _unesc = _interopRequireDefault(require_unesc());
|
|
84017
84017
|
exports2.unesc = _unesc["default"];
|
|
84018
84018
|
var _getProp = _interopRequireDefault(require_getProp());
|
|
@@ -84049,6 +84049,7 @@ var require_node6 = __commonJS({
|
|
|
84049
84049
|
_defineProperties(Constructor.prototype, protoProps);
|
|
84050
84050
|
if (staticProps)
|
|
84051
84051
|
_defineProperties(Constructor, staticProps);
|
|
84052
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
84052
84053
|
return Constructor;
|
|
84053
84054
|
}
|
|
84054
84055
|
var cloneNode = function cloneNode2(obj, parent) {
|
|
@@ -84211,7 +84212,7 @@ var require_types4 = __commonJS({
|
|
|
84211
84212
|
"node_modules/postcss-selector-parser/dist/selectors/types.js"(exports2) {
|
|
84212
84213
|
"use strict";
|
|
84213
84214
|
exports2.__esModule = true;
|
|
84214
|
-
exports2.UNIVERSAL = exports2.
|
|
84215
|
+
exports2.UNIVERSAL = exports2.TAG = exports2.STRING = exports2.SELECTOR = exports2.ROOT = exports2.PSEUDO = exports2.NESTING = exports2.ID = exports2.COMMENT = exports2.COMBINATOR = exports2.CLASS = exports2.ATTRIBUTE = void 0;
|
|
84215
84216
|
var TAG = "tag";
|
|
84216
84217
|
exports2.TAG = TAG;
|
|
84217
84218
|
var STRING = "string";
|
|
@@ -84247,30 +84248,30 @@ var require_container2 = __commonJS({
|
|
|
84247
84248
|
exports2["default"] = void 0;
|
|
84248
84249
|
var _node = _interopRequireDefault(require_node6());
|
|
84249
84250
|
var types = _interopRequireWildcard(require_types4());
|
|
84250
|
-
function _getRequireWildcardCache() {
|
|
84251
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
84251
84252
|
if (typeof WeakMap !== "function")
|
|
84252
84253
|
return null;
|
|
84253
|
-
var
|
|
84254
|
-
|
|
84255
|
-
|
|
84256
|
-
|
|
84257
|
-
|
|
84258
|
-
}
|
|
84259
|
-
function _interopRequireWildcard(obj) {
|
|
84260
|
-
if (obj && obj.__esModule) {
|
|
84254
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
|
84255
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
|
84256
|
+
return (_getRequireWildcardCache = function _getRequireWildcardCache2(nodeInterop2) {
|
|
84257
|
+
return nodeInterop2 ? cacheNodeInterop : cacheBabelInterop;
|
|
84258
|
+
})(nodeInterop);
|
|
84259
|
+
}
|
|
84260
|
+
function _interopRequireWildcard(obj, nodeInterop) {
|
|
84261
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
84261
84262
|
return obj;
|
|
84262
84263
|
}
|
|
84263
84264
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
84264
84265
|
return { "default": obj };
|
|
84265
84266
|
}
|
|
84266
|
-
var cache = _getRequireWildcardCache();
|
|
84267
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
84267
84268
|
if (cache && cache.has(obj)) {
|
|
84268
84269
|
return cache.get(obj);
|
|
84269
84270
|
}
|
|
84270
84271
|
var newObj = {};
|
|
84271
84272
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
84272
84273
|
for (var key in obj) {
|
|
84273
|
-
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
84274
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
84274
84275
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
84275
84276
|
if (desc && (desc.get || desc.set)) {
|
|
84276
84277
|
Object.defineProperty(newObj, key, desc);
|
|
@@ -84289,22 +84290,20 @@ var require_container2 = __commonJS({
|
|
|
84289
84290
|
return obj && obj.__esModule ? obj : { "default": obj };
|
|
84290
84291
|
}
|
|
84291
84292
|
function _createForOfIteratorHelperLoose(o, allowArrayLike) {
|
|
84292
|
-
var it;
|
|
84293
|
-
if (
|
|
84294
|
-
|
|
84295
|
-
|
|
84296
|
-
|
|
84297
|
-
|
|
84298
|
-
|
|
84299
|
-
|
|
84300
|
-
|
|
84301
|
-
return { done:
|
|
84302
|
-
};
|
|
84303
|
-
}
|
|
84304
|
-
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
84293
|
+
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
84294
|
+
if (it)
|
|
84295
|
+
return (it = it.call(o)).next.bind(it);
|
|
84296
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
84297
|
+
if (it)
|
|
84298
|
+
o = it;
|
|
84299
|
+
var i = 0;
|
|
84300
|
+
return function() {
|
|
84301
|
+
if (i >= o.length)
|
|
84302
|
+
return { done: true };
|
|
84303
|
+
return { done: false, value: o[i++] };
|
|
84304
|
+
};
|
|
84305
84305
|
}
|
|
84306
|
-
|
|
84307
|
-
return it.next.bind(it);
|
|
84306
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
84308
84307
|
}
|
|
84309
84308
|
function _unsupportedIterableToArray(o, minLen) {
|
|
84310
84309
|
if (!o)
|
|
@@ -84342,6 +84341,7 @@ var require_container2 = __commonJS({
|
|
|
84342
84341
|
_defineProperties(Constructor.prototype, protoProps);
|
|
84343
84342
|
if (staticProps)
|
|
84344
84343
|
_defineProperties(Constructor, staticProps);
|
|
84344
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
84345
84345
|
return Constructor;
|
|
84346
84346
|
}
|
|
84347
84347
|
function _inheritsLoose(subClass, superClass) {
|
|
@@ -84350,7 +84350,7 @@ var require_container2 = __commonJS({
|
|
|
84350
84350
|
_setPrototypeOf(subClass, superClass);
|
|
84351
84351
|
}
|
|
84352
84352
|
function _setPrototypeOf(o, p) {
|
|
84353
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84353
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84354
84354
|
o2.__proto__ = p2;
|
|
84355
84355
|
return o2;
|
|
84356
84356
|
};
|
|
@@ -84663,6 +84663,7 @@ var require_root2 = __commonJS({
|
|
|
84663
84663
|
_defineProperties(Constructor.prototype, protoProps);
|
|
84664
84664
|
if (staticProps)
|
|
84665
84665
|
_defineProperties(Constructor, staticProps);
|
|
84666
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
84666
84667
|
return Constructor;
|
|
84667
84668
|
}
|
|
84668
84669
|
function _inheritsLoose(subClass, superClass) {
|
|
@@ -84671,7 +84672,7 @@ var require_root2 = __commonJS({
|
|
|
84671
84672
|
_setPrototypeOf(subClass, superClass);
|
|
84672
84673
|
}
|
|
84673
84674
|
function _setPrototypeOf(o, p) {
|
|
84674
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84675
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84675
84676
|
o2.__proto__ = p2;
|
|
84676
84677
|
return o2;
|
|
84677
84678
|
};
|
|
@@ -84730,7 +84731,7 @@ var require_selector4 = __commonJS({
|
|
|
84730
84731
|
_setPrototypeOf(subClass, superClass);
|
|
84731
84732
|
}
|
|
84732
84733
|
function _setPrototypeOf(o, p) {
|
|
84733
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84734
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84734
84735
|
o2.__proto__ = p2;
|
|
84735
84736
|
return o2;
|
|
84736
84737
|
};
|
|
@@ -84869,6 +84870,7 @@ var require_className = __commonJS({
|
|
|
84869
84870
|
_defineProperties(Constructor.prototype, protoProps);
|
|
84870
84871
|
if (staticProps)
|
|
84871
84872
|
_defineProperties(Constructor, staticProps);
|
|
84873
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
84872
84874
|
return Constructor;
|
|
84873
84875
|
}
|
|
84874
84876
|
function _inheritsLoose(subClass, superClass) {
|
|
@@ -84877,7 +84879,7 @@ var require_className = __commonJS({
|
|
|
84877
84879
|
_setPrototypeOf(subClass, superClass);
|
|
84878
84880
|
}
|
|
84879
84881
|
function _setPrototypeOf(o, p) {
|
|
84880
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84882
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84881
84883
|
o2.__proto__ = p2;
|
|
84882
84884
|
return o2;
|
|
84883
84885
|
};
|
|
@@ -84940,7 +84942,7 @@ var require_comment2 = __commonJS({
|
|
|
84940
84942
|
_setPrototypeOf(subClass, superClass);
|
|
84941
84943
|
}
|
|
84942
84944
|
function _setPrototypeOf(o, p) {
|
|
84943
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84945
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84944
84946
|
o2.__proto__ = p2;
|
|
84945
84947
|
return o2;
|
|
84946
84948
|
};
|
|
@@ -84978,7 +84980,7 @@ var require_id = __commonJS({
|
|
|
84978
84980
|
_setPrototypeOf(subClass, superClass);
|
|
84979
84981
|
}
|
|
84980
84982
|
function _setPrototypeOf(o, p) {
|
|
84981
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
84983
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
84982
84984
|
o2.__proto__ = p2;
|
|
84983
84985
|
return o2;
|
|
84984
84986
|
};
|
|
@@ -85030,6 +85032,7 @@ var require_namespace = __commonJS({
|
|
|
85030
85032
|
_defineProperties(Constructor.prototype, protoProps);
|
|
85031
85033
|
if (staticProps)
|
|
85032
85034
|
_defineProperties(Constructor, staticProps);
|
|
85035
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
85033
85036
|
return Constructor;
|
|
85034
85037
|
}
|
|
85035
85038
|
function _inheritsLoose(subClass, superClass) {
|
|
@@ -85038,7 +85041,7 @@ var require_namespace = __commonJS({
|
|
|
85038
85041
|
_setPrototypeOf(subClass, superClass);
|
|
85039
85042
|
}
|
|
85040
85043
|
function _setPrototypeOf(o, p) {
|
|
85041
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85044
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85042
85045
|
o2.__proto__ = p2;
|
|
85043
85046
|
return o2;
|
|
85044
85047
|
};
|
|
@@ -85131,7 +85134,7 @@ var require_tag = __commonJS({
|
|
|
85131
85134
|
_setPrototypeOf(subClass, superClass);
|
|
85132
85135
|
}
|
|
85133
85136
|
function _setPrototypeOf(o, p) {
|
|
85134
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85137
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85135
85138
|
o2.__proto__ = p2;
|
|
85136
85139
|
return o2;
|
|
85137
85140
|
};
|
|
@@ -85169,7 +85172,7 @@ var require_string3 = __commonJS({
|
|
|
85169
85172
|
_setPrototypeOf(subClass, superClass);
|
|
85170
85173
|
}
|
|
85171
85174
|
function _setPrototypeOf(o, p) {
|
|
85172
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85175
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85173
85176
|
o2.__proto__ = p2;
|
|
85174
85177
|
return o2;
|
|
85175
85178
|
};
|
|
@@ -85207,7 +85210,7 @@ var require_pseudo3 = __commonJS({
|
|
|
85207
85210
|
_setPrototypeOf(subClass, superClass);
|
|
85208
85211
|
}
|
|
85209
85212
|
function _setPrototypeOf(o, p) {
|
|
85210
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85213
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85211
85214
|
o2.__proto__ = p2;
|
|
85212
85215
|
return o2;
|
|
85213
85216
|
};
|
|
@@ -85245,8 +85248,8 @@ var require_attribute = __commonJS({
|
|
|
85245
85248
|
"node_modules/postcss-selector-parser/dist/selectors/attribute.js"(exports2) {
|
|
85246
85249
|
"use strict";
|
|
85247
85250
|
exports2.__esModule = true;
|
|
85248
|
-
exports2.unescapeValue = unescapeValue;
|
|
85249
85251
|
exports2["default"] = void 0;
|
|
85252
|
+
exports2.unescapeValue = unescapeValue;
|
|
85250
85253
|
var _cssesc = _interopRequireDefault(require_cssesc());
|
|
85251
85254
|
var _unesc = _interopRequireDefault(require_unesc());
|
|
85252
85255
|
var _namespace = _interopRequireDefault(require_namespace());
|
|
@@ -85270,6 +85273,7 @@ var require_attribute = __commonJS({
|
|
|
85270
85273
|
_defineProperties(Constructor.prototype, protoProps);
|
|
85271
85274
|
if (staticProps)
|
|
85272
85275
|
_defineProperties(Constructor, staticProps);
|
|
85276
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
85273
85277
|
return Constructor;
|
|
85274
85278
|
}
|
|
85275
85279
|
function _inheritsLoose(subClass, superClass) {
|
|
@@ -85278,7 +85282,7 @@ var require_attribute = __commonJS({
|
|
|
85278
85282
|
_setPrototypeOf(subClass, superClass);
|
|
85279
85283
|
}
|
|
85280
85284
|
function _setPrototypeOf(o, p) {
|
|
85281
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85285
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85282
85286
|
o2.__proto__ = p2;
|
|
85283
85287
|
return o2;
|
|
85284
85288
|
};
|
|
@@ -85653,7 +85657,7 @@ var require_universal = __commonJS({
|
|
|
85653
85657
|
_setPrototypeOf(subClass, superClass);
|
|
85654
85658
|
}
|
|
85655
85659
|
function _setPrototypeOf(o, p) {
|
|
85656
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85660
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85657
85661
|
o2.__proto__ = p2;
|
|
85658
85662
|
return o2;
|
|
85659
85663
|
};
|
|
@@ -85692,7 +85696,7 @@ var require_combinator = __commonJS({
|
|
|
85692
85696
|
_setPrototypeOf(subClass, superClass);
|
|
85693
85697
|
}
|
|
85694
85698
|
function _setPrototypeOf(o, p) {
|
|
85695
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85699
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85696
85700
|
o2.__proto__ = p2;
|
|
85697
85701
|
return o2;
|
|
85698
85702
|
};
|
|
@@ -85730,7 +85734,7 @@ var require_nesting = __commonJS({
|
|
|
85730
85734
|
_setPrototypeOf(subClass, superClass);
|
|
85731
85735
|
}
|
|
85732
85736
|
function _setPrototypeOf(o, p) {
|
|
85733
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
85737
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
85734
85738
|
o2.__proto__ = p2;
|
|
85735
85739
|
return o2;
|
|
85736
85740
|
};
|
|
@@ -85772,7 +85776,7 @@ var require_tokenTypes = __commonJS({
|
|
|
85772
85776
|
"node_modules/postcss-selector-parser/dist/tokenTypes.js"(exports2) {
|
|
85773
85777
|
"use strict";
|
|
85774
85778
|
exports2.__esModule = true;
|
|
85775
|
-
exports2.
|
|
85779
|
+
exports2.word = exports2.tilde = exports2.tab = exports2.str = exports2.space = exports2.slash = exports2.singleQuote = exports2.semicolon = exports2.plus = exports2.pipe = exports2.openSquare = exports2.openParenthesis = exports2.newline = exports2.greaterThan = exports2.feed = exports2.equals = exports2.doubleQuote = exports2.dollar = exports2.cr = exports2.comment = exports2.comma = exports2.combinator = exports2.colon = exports2.closeSquare = exports2.closeParenthesis = exports2.caret = exports2.bang = exports2.backslash = exports2.at = exports2.asterisk = exports2.ampersand = void 0;
|
|
85776
85780
|
var ampersand = 38;
|
|
85777
85781
|
exports2.ampersand = ampersand;
|
|
85778
85782
|
var asterisk = 42;
|
|
@@ -85843,35 +85847,35 @@ var require_tokenize2 = __commonJS({
|
|
|
85843
85847
|
"node_modules/postcss-selector-parser/dist/tokenize.js"(exports2) {
|
|
85844
85848
|
"use strict";
|
|
85845
85849
|
exports2.__esModule = true;
|
|
85846
|
-
exports2["default"] = tokenize;
|
|
85847
85850
|
exports2.FIELDS = void 0;
|
|
85851
|
+
exports2["default"] = tokenize;
|
|
85848
85852
|
var t = _interopRequireWildcard(require_tokenTypes());
|
|
85849
85853
|
var _unescapable;
|
|
85850
85854
|
var _wordDelimiters;
|
|
85851
|
-
function _getRequireWildcardCache() {
|
|
85855
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
85852
85856
|
if (typeof WeakMap !== "function")
|
|
85853
85857
|
return null;
|
|
85854
|
-
var
|
|
85855
|
-
|
|
85856
|
-
|
|
85857
|
-
|
|
85858
|
-
|
|
85859
|
-
}
|
|
85860
|
-
function _interopRequireWildcard(obj) {
|
|
85861
|
-
if (obj && obj.__esModule) {
|
|
85858
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
|
85859
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
|
85860
|
+
return (_getRequireWildcardCache = function _getRequireWildcardCache2(nodeInterop2) {
|
|
85861
|
+
return nodeInterop2 ? cacheNodeInterop : cacheBabelInterop;
|
|
85862
|
+
})(nodeInterop);
|
|
85863
|
+
}
|
|
85864
|
+
function _interopRequireWildcard(obj, nodeInterop) {
|
|
85865
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
85862
85866
|
return obj;
|
|
85863
85867
|
}
|
|
85864
85868
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
85865
85869
|
return { "default": obj };
|
|
85866
85870
|
}
|
|
85867
|
-
var cache = _getRequireWildcardCache();
|
|
85871
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
85868
85872
|
if (cache && cache.has(obj)) {
|
|
85869
85873
|
return cache.get(obj);
|
|
85870
85874
|
}
|
|
85871
85875
|
var newObj = {};
|
|
85872
85876
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
85873
85877
|
for (var key in obj) {
|
|
85874
|
-
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
85878
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
85875
85879
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
85876
85880
|
if (desc && (desc.get || desc.set)) {
|
|
85877
85881
|
Object.defineProperty(newObj, key, desc);
|
|
@@ -86122,30 +86126,30 @@ var require_parser5 = __commonJS({
|
|
|
86122
86126
|
var _util = require_util2();
|
|
86123
86127
|
var _WHITESPACE_TOKENS;
|
|
86124
86128
|
var _Object$assign;
|
|
86125
|
-
function _getRequireWildcardCache() {
|
|
86129
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
86126
86130
|
if (typeof WeakMap !== "function")
|
|
86127
86131
|
return null;
|
|
86128
|
-
var
|
|
86129
|
-
|
|
86130
|
-
|
|
86131
|
-
|
|
86132
|
-
|
|
86133
|
-
}
|
|
86134
|
-
function _interopRequireWildcard(obj) {
|
|
86135
|
-
if (obj && obj.__esModule) {
|
|
86132
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
|
86133
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
|
86134
|
+
return (_getRequireWildcardCache = function _getRequireWildcardCache2(nodeInterop2) {
|
|
86135
|
+
return nodeInterop2 ? cacheNodeInterop : cacheBabelInterop;
|
|
86136
|
+
})(nodeInterop);
|
|
86137
|
+
}
|
|
86138
|
+
function _interopRequireWildcard(obj, nodeInterop) {
|
|
86139
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
86136
86140
|
return obj;
|
|
86137
86141
|
}
|
|
86138
86142
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
86139
86143
|
return { "default": obj };
|
|
86140
86144
|
}
|
|
86141
|
-
var cache = _getRequireWildcardCache();
|
|
86145
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
86142
86146
|
if (cache && cache.has(obj)) {
|
|
86143
86147
|
return cache.get(obj);
|
|
86144
86148
|
}
|
|
86145
86149
|
var newObj = {};
|
|
86146
86150
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
86147
86151
|
for (var key in obj) {
|
|
86148
|
-
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
86152
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
86149
86153
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
86150
86154
|
if (desc && (desc.get || desc.set)) {
|
|
86151
86155
|
Object.defineProperty(newObj, key, desc);
|
|
@@ -86178,6 +86182,7 @@ var require_parser5 = __commonJS({
|
|
|
86178
86182
|
_defineProperties(Constructor.prototype, protoProps);
|
|
86179
86183
|
if (staticProps)
|
|
86180
86184
|
_defineProperties(Constructor, staticProps);
|
|
86185
|
+
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
86181
86186
|
return Constructor;
|
|
86182
86187
|
}
|
|
86183
86188
|
var WHITESPACE_TOKENS = (_WHITESPACE_TOKENS = {}, _WHITESPACE_TOKENS[tokens.space] = true, _WHITESPACE_TOKENS[tokens.cr] = true, _WHITESPACE_TOKENS[tokens.feed] = true, _WHITESPACE_TOKENS[tokens.newline] = true, _WHITESPACE_TOKENS[tokens.tab] = true, _WHITESPACE_TOKENS);
|
|
@@ -87318,12 +87323,16 @@ var require_guards = __commonJS({
|
|
|
87318
87323
|
"node_modules/postcss-selector-parser/dist/selectors/guards.js"(exports2) {
|
|
87319
87324
|
"use strict";
|
|
87320
87325
|
exports2.__esModule = true;
|
|
87321
|
-
exports2.
|
|
87322
|
-
exports2.isPseudoElement = isPseudoElement;
|
|
87323
|
-
exports2.isPseudoClass = isPseudoClass;
|
|
87326
|
+
exports2.isComment = exports2.isCombinator = exports2.isClassName = exports2.isAttribute = void 0;
|
|
87324
87327
|
exports2.isContainer = isContainer;
|
|
87328
|
+
exports2.isIdentifier = void 0;
|
|
87325
87329
|
exports2.isNamespace = isNamespace;
|
|
87326
|
-
exports2.
|
|
87330
|
+
exports2.isNesting = void 0;
|
|
87331
|
+
exports2.isNode = isNode;
|
|
87332
|
+
exports2.isPseudo = void 0;
|
|
87333
|
+
exports2.isPseudoClass = isPseudoClass;
|
|
87334
|
+
exports2.isPseudoElement = isPseudoElement;
|
|
87335
|
+
exports2.isUniversal = exports2.isTag = exports2.isString = exports2.isSelector = exports2.isRoot = void 0;
|
|
87327
87336
|
var _types = require_types4();
|
|
87328
87337
|
var _IS_TYPE;
|
|
87329
87338
|
var IS_TYPE = (_IS_TYPE = {}, _IS_TYPE[_types.ATTRIBUTE] = true, _IS_TYPE[_types.CLASS] = true, _IS_TYPE[_types.COMBINATOR] = true, _IS_TYPE[_types.COMMENT] = true, _IS_TYPE[_types.ID] = true, _IS_TYPE[_types.NESTING] = true, _IS_TYPE[_types.PSEUDO] = true, _IS_TYPE[_types.ROOT] = true, _IS_TYPE[_types.SELECTOR] = true, _IS_TYPE[_types.STRING] = true, _IS_TYPE[_types.TAG] = true, _IS_TYPE[_types.UNIVERSAL] = true, _IS_TYPE);
|
|
@@ -87412,30 +87421,30 @@ var require_dist3 = __commonJS({
|
|
|
87412
87421
|
exports2["default"] = void 0;
|
|
87413
87422
|
var _processor = _interopRequireDefault(require_processor3());
|
|
87414
87423
|
var selectors = _interopRequireWildcard(require_selectors());
|
|
87415
|
-
function _getRequireWildcardCache() {
|
|
87424
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
87416
87425
|
if (typeof WeakMap !== "function")
|
|
87417
87426
|
return null;
|
|
87418
|
-
var
|
|
87419
|
-
|
|
87420
|
-
|
|
87421
|
-
|
|
87422
|
-
|
|
87423
|
-
}
|
|
87424
|
-
function _interopRequireWildcard(obj) {
|
|
87425
|
-
if (obj && obj.__esModule) {
|
|
87427
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
|
87428
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
|
87429
|
+
return (_getRequireWildcardCache = function _getRequireWildcardCache2(nodeInterop2) {
|
|
87430
|
+
return nodeInterop2 ? cacheNodeInterop : cacheBabelInterop;
|
|
87431
|
+
})(nodeInterop);
|
|
87432
|
+
}
|
|
87433
|
+
function _interopRequireWildcard(obj, nodeInterop) {
|
|
87434
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
87426
87435
|
return obj;
|
|
87427
87436
|
}
|
|
87428
87437
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
87429
87438
|
return { "default": obj };
|
|
87430
87439
|
}
|
|
87431
|
-
var cache = _getRequireWildcardCache();
|
|
87440
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
87432
87441
|
if (cache && cache.has(obj)) {
|
|
87433
87442
|
return cache.get(obj);
|
|
87434
87443
|
}
|
|
87435
87444
|
var newObj = {};
|
|
87436
87445
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
87437
87446
|
for (var key in obj) {
|
|
87438
|
-
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
87447
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
87439
87448
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
87440
87449
|
if (desc && (desc.get || desc.set)) {
|
|
87441
87450
|
Object.defineProperty(newObj, key, desc);
|