@vue/compiler-sfc 3.5.32 → 3.5.34
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/dist/compiler-sfc.cjs.js +625 -448
- package/dist/compiler-sfc.esm-browser.js +479 -226
- package/package.json +9 -9
package/dist/compiler-sfc.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-sfc v3.5.
|
|
2
|
+
* @vue/compiler-sfc v3.5.34
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2114,14 +2114,14 @@ function parseUriParts(urlString) {
|
|
|
2114
2114
|
const resourceUrlTagConfig = {
|
|
2115
2115
|
video: ["src", "poster"],
|
|
2116
2116
|
source: ["src"],
|
|
2117
|
-
img: ["src"]
|
|
2118
|
-
image: ["xlink:href", "href"]
|
|
2117
|
+
img: ["src"]
|
|
2119
2118
|
};
|
|
2120
2119
|
const defaultAssetUrlOptions = {
|
|
2121
2120
|
base: null,
|
|
2122
2121
|
includeAbsolute: false,
|
|
2123
2122
|
tags: {
|
|
2124
2123
|
...resourceUrlTagConfig,
|
|
2124
|
+
image: ["xlink:href", "href"],
|
|
2125
2125
|
use: ["xlink:href", "href"]
|
|
2126
2126
|
}
|
|
2127
2127
|
};
|
|
@@ -2162,7 +2162,8 @@ const transformAssetUrl = (node, context, options = defaultAssetUrlOptions) => {
|
|
|
2162
2162
|
}
|
|
2163
2163
|
const urlValue = attr.value.content;
|
|
2164
2164
|
const isHashOnlyValue = urlValue[0] === "#";
|
|
2165
|
-
if (isExternalUrl(urlValue) || isDataUrl(urlValue) ||
|
|
2165
|
+
if (isExternalUrl(urlValue) || isDataUrl(urlValue) || // a bare `#` is never a valid import specifier
|
|
2166
|
+
urlValue === "#" || isHashOnlyValue && !canTransformHashImport(node.tag, attr.name) || !options.includeAbsolute && !isRelativeUrl(urlValue)) {
|
|
2166
2167
|
return;
|
|
2167
2168
|
}
|
|
2168
2169
|
const url = parseUrl(urlValue);
|
|
@@ -2383,7 +2384,7 @@ var hasRequiredConsolidate$1;
|
|
|
2383
2384
|
function requireConsolidate$1 () {
|
|
2384
2385
|
if (hasRequiredConsolidate$1) return consolidate$2.exports;
|
|
2385
2386
|
hasRequiredConsolidate$1 = 1;
|
|
2386
|
-
(function (module, exports
|
|
2387
|
+
(function (module, exports) {
|
|
2387
2388
|
/*
|
|
2388
2389
|
* Engines which do not support caching of their file contents
|
|
2389
2390
|
* should use the `read()` function defined in consolidate.js
|
|
@@ -2429,7 +2430,7 @@ function requireConsolidate$1 () {
|
|
|
2429
2430
|
* @api public
|
|
2430
2431
|
*/
|
|
2431
2432
|
|
|
2432
|
-
exports
|
|
2433
|
+
exports.clearCache = function() {
|
|
2433
2434
|
readCache = {};
|
|
2434
2435
|
cacheStore = {};
|
|
2435
2436
|
};
|
|
@@ -2562,11 +2563,11 @@ function requireConsolidate$1 () {
|
|
|
2562
2563
|
opts.partials = partials;
|
|
2563
2564
|
if (err) return cb(err);
|
|
2564
2565
|
if (cache(opts)) {
|
|
2565
|
-
exports
|
|
2566
|
+
exports[name].render('', opts, cb);
|
|
2566
2567
|
} else {
|
|
2567
2568
|
read(path, opts, function(err, str) {
|
|
2568
2569
|
if (err) return cb(err);
|
|
2569
|
-
exports
|
|
2570
|
+
exports[name].render(str, opts, cb);
|
|
2570
2571
|
});
|
|
2571
2572
|
}
|
|
2572
2573
|
});
|
|
@@ -2578,13 +2579,13 @@ function requireConsolidate$1 () {
|
|
|
2578
2579
|
* velocity support.
|
|
2579
2580
|
*/
|
|
2580
2581
|
|
|
2581
|
-
exports
|
|
2582
|
+
exports.velocityjs = fromStringRenderer('velocityjs');
|
|
2582
2583
|
|
|
2583
2584
|
/**
|
|
2584
2585
|
* velocity string support.
|
|
2585
2586
|
*/
|
|
2586
2587
|
|
|
2587
|
-
exports
|
|
2588
|
+
exports.velocityjs.render = function(str, options, cb) {
|
|
2588
2589
|
return promisify(cb, function(cb) {
|
|
2589
2590
|
var engine = requires.velocityjs || (requires.velocityjs = require('velocityjs'));
|
|
2590
2591
|
try {
|
|
@@ -2600,7 +2601,7 @@ function requireConsolidate$1 () {
|
|
|
2600
2601
|
* Liquid support.
|
|
2601
2602
|
*/
|
|
2602
2603
|
|
|
2603
|
-
exports
|
|
2604
|
+
exports.liquid = fromStringRenderer('liquid');
|
|
2604
2605
|
|
|
2605
2606
|
/**
|
|
2606
2607
|
* Liquid string support.
|
|
@@ -2704,7 +2705,7 @@ function requireConsolidate$1 () {
|
|
|
2704
2705
|
tmpl(context, cb);
|
|
2705
2706
|
}
|
|
2706
2707
|
|
|
2707
|
-
exports
|
|
2708
|
+
exports.liquid.render = function(str, options, cb) {
|
|
2708
2709
|
return promisify(cb, function(cb) {
|
|
2709
2710
|
var engine = requires.liquid;
|
|
2710
2711
|
var Liquid;
|
|
@@ -2803,7 +2804,7 @@ function requireConsolidate$1 () {
|
|
|
2803
2804
|
* Jade support.
|
|
2804
2805
|
*/
|
|
2805
2806
|
|
|
2806
|
-
exports
|
|
2807
|
+
exports.jade = function(path, options, cb) {
|
|
2807
2808
|
return promisify(cb, function(cb) {
|
|
2808
2809
|
var engine = requires.jade;
|
|
2809
2810
|
if (!engine) {
|
|
@@ -2831,7 +2832,7 @@ function requireConsolidate$1 () {
|
|
|
2831
2832
|
* Jade string support.
|
|
2832
2833
|
*/
|
|
2833
2834
|
|
|
2834
|
-
exports
|
|
2835
|
+
exports.jade.render = function(str, options, cb) {
|
|
2835
2836
|
return promisify(cb, function(cb) {
|
|
2836
2837
|
var engine = requires.jade;
|
|
2837
2838
|
if (!engine) {
|
|
@@ -2859,13 +2860,13 @@ function requireConsolidate$1 () {
|
|
|
2859
2860
|
* Dust support.
|
|
2860
2861
|
*/
|
|
2861
2862
|
|
|
2862
|
-
exports
|
|
2863
|
+
exports.dust = fromStringRenderer('dust');
|
|
2863
2864
|
|
|
2864
2865
|
/**
|
|
2865
2866
|
* Dust string support.
|
|
2866
2867
|
*/
|
|
2867
2868
|
|
|
2868
|
-
exports
|
|
2869
|
+
exports.dust.render = function(str, options, cb) {
|
|
2869
2870
|
return promisify(cb, function(cb) {
|
|
2870
2871
|
var engine = requires.dust;
|
|
2871
2872
|
if (!engine) {
|
|
@@ -2914,13 +2915,13 @@ function requireConsolidate$1 () {
|
|
|
2914
2915
|
* Swig support.
|
|
2915
2916
|
*/
|
|
2916
2917
|
|
|
2917
|
-
exports
|
|
2918
|
+
exports.swig = fromStringRenderer('swig');
|
|
2918
2919
|
|
|
2919
2920
|
/**
|
|
2920
2921
|
* Swig string support.
|
|
2921
2922
|
*/
|
|
2922
2923
|
|
|
2923
|
-
exports
|
|
2924
|
+
exports.swig.render = function(str, options, cb) {
|
|
2924
2925
|
return promisify(cb, function(cb) {
|
|
2925
2926
|
var engine = requires.swig;
|
|
2926
2927
|
if (!engine) {
|
|
@@ -2950,7 +2951,7 @@ function requireConsolidate$1 () {
|
|
|
2950
2951
|
* Razor support.
|
|
2951
2952
|
*/
|
|
2952
2953
|
|
|
2953
|
-
exports
|
|
2954
|
+
exports.razor = function(path, options, cb) {
|
|
2954
2955
|
return promisify(cb, function(cb) {
|
|
2955
2956
|
var engine = requires.razor;
|
|
2956
2957
|
if (!engine) {
|
|
@@ -2980,7 +2981,7 @@ function requireConsolidate$1 () {
|
|
|
2980
2981
|
* razor string support.
|
|
2981
2982
|
*/
|
|
2982
2983
|
|
|
2983
|
-
exports
|
|
2984
|
+
exports.razor.render = function(str, options, cb) {
|
|
2984
2985
|
return promisify(cb, function(cb) {
|
|
2985
2986
|
|
|
2986
2987
|
try {
|
|
@@ -3003,13 +3004,13 @@ function requireConsolidate$1 () {
|
|
|
3003
3004
|
* Atpl support.
|
|
3004
3005
|
*/
|
|
3005
3006
|
|
|
3006
|
-
exports
|
|
3007
|
+
exports.atpl = fromStringRenderer('atpl');
|
|
3007
3008
|
|
|
3008
3009
|
/**
|
|
3009
3010
|
* Atpl string support.
|
|
3010
3011
|
*/
|
|
3011
3012
|
|
|
3012
|
-
exports
|
|
3013
|
+
exports.atpl.render = function(str, options, cb) {
|
|
3013
3014
|
return promisify(cb, function(cb) {
|
|
3014
3015
|
var engine = requires.atpl || (requires.atpl = require('atpl'));
|
|
3015
3016
|
try {
|
|
@@ -3025,13 +3026,13 @@ function requireConsolidate$1 () {
|
|
|
3025
3026
|
* Liquor support,
|
|
3026
3027
|
*/
|
|
3027
3028
|
|
|
3028
|
-
exports
|
|
3029
|
+
exports.liquor = fromStringRenderer('liquor');
|
|
3029
3030
|
|
|
3030
3031
|
/**
|
|
3031
3032
|
* Liquor string support.
|
|
3032
3033
|
*/
|
|
3033
3034
|
|
|
3034
|
-
exports
|
|
3035
|
+
exports.liquor.render = function(str, options, cb) {
|
|
3035
3036
|
return promisify(cb, function(cb) {
|
|
3036
3037
|
var engine = requires.liquor || (requires.liquor = require('liquor'));
|
|
3037
3038
|
try {
|
|
@@ -3047,13 +3048,13 @@ function requireConsolidate$1 () {
|
|
|
3047
3048
|
* Twig support.
|
|
3048
3049
|
*/
|
|
3049
3050
|
|
|
3050
|
-
exports
|
|
3051
|
+
exports.twig = fromStringRenderer('twig');
|
|
3051
3052
|
|
|
3052
3053
|
/**
|
|
3053
3054
|
* Twig string support.
|
|
3054
3055
|
*/
|
|
3055
3056
|
|
|
3056
|
-
exports
|
|
3057
|
+
exports.twig.render = function(str, options, cb) {
|
|
3057
3058
|
return promisify(cb, function(cb) {
|
|
3058
3059
|
var engine = requires.twig || (requires.twig = require('twig').twig);
|
|
3059
3060
|
var templateData = {
|
|
@@ -3075,13 +3076,13 @@ function requireConsolidate$1 () {
|
|
|
3075
3076
|
* EJS support.
|
|
3076
3077
|
*/
|
|
3077
3078
|
|
|
3078
|
-
exports
|
|
3079
|
+
exports.ejs = fromStringRenderer('ejs');
|
|
3079
3080
|
|
|
3080
3081
|
/**
|
|
3081
3082
|
* EJS string support.
|
|
3082
3083
|
*/
|
|
3083
3084
|
|
|
3084
|
-
exports
|
|
3085
|
+
exports.ejs.render = function(str, options, cb) {
|
|
3085
3086
|
return promisify(cb, function(cb) {
|
|
3086
3087
|
var engine = requires.ejs || (requires.ejs = require('ejs'));
|
|
3087
3088
|
try {
|
|
@@ -3097,13 +3098,13 @@ function requireConsolidate$1 () {
|
|
|
3097
3098
|
* Eco support.
|
|
3098
3099
|
*/
|
|
3099
3100
|
|
|
3100
|
-
exports
|
|
3101
|
+
exports.eco = fromStringRenderer('eco');
|
|
3101
3102
|
|
|
3102
3103
|
/**
|
|
3103
3104
|
* Eco string support.
|
|
3104
3105
|
*/
|
|
3105
3106
|
|
|
3106
|
-
exports
|
|
3107
|
+
exports.eco.render = function(str, options, cb) {
|
|
3107
3108
|
return promisify(cb, function(cb) {
|
|
3108
3109
|
var engine = requires.eco || (requires.eco = require('eco'));
|
|
3109
3110
|
try {
|
|
@@ -3118,13 +3119,13 @@ function requireConsolidate$1 () {
|
|
|
3118
3119
|
* Jazz support.
|
|
3119
3120
|
*/
|
|
3120
3121
|
|
|
3121
|
-
exports
|
|
3122
|
+
exports.jazz = fromStringRenderer('jazz');
|
|
3122
3123
|
|
|
3123
3124
|
/**
|
|
3124
3125
|
* Jazz string support.
|
|
3125
3126
|
*/
|
|
3126
3127
|
|
|
3127
|
-
exports
|
|
3128
|
+
exports.jazz.render = function(str, options, cb) {
|
|
3128
3129
|
return promisify(cb, function(cb) {
|
|
3129
3130
|
var engine = requires.jazz || (requires.jazz = require('jazz'));
|
|
3130
3131
|
try {
|
|
@@ -3142,13 +3143,13 @@ function requireConsolidate$1 () {
|
|
|
3142
3143
|
* JQTPL support.
|
|
3143
3144
|
*/
|
|
3144
3145
|
|
|
3145
|
-
exports
|
|
3146
|
+
exports.jqtpl = fromStringRenderer('jqtpl');
|
|
3146
3147
|
|
|
3147
3148
|
/**
|
|
3148
3149
|
* JQTPL string support.
|
|
3149
3150
|
*/
|
|
3150
3151
|
|
|
3151
|
-
exports
|
|
3152
|
+
exports.jqtpl.render = function(str, options, cb) {
|
|
3152
3153
|
return promisify(cb, function(cb) {
|
|
3153
3154
|
var engine = requires.jqtpl || (requires.jqtpl = require('jqtpl'));
|
|
3154
3155
|
try {
|
|
@@ -3164,13 +3165,13 @@ function requireConsolidate$1 () {
|
|
|
3164
3165
|
* Haml support.
|
|
3165
3166
|
*/
|
|
3166
3167
|
|
|
3167
|
-
exports
|
|
3168
|
+
exports.haml = fromStringRenderer('haml');
|
|
3168
3169
|
|
|
3169
3170
|
/**
|
|
3170
3171
|
* Haml string support.
|
|
3171
3172
|
*/
|
|
3172
3173
|
|
|
3173
|
-
exports
|
|
3174
|
+
exports.haml.render = function(str, options, cb) {
|
|
3174
3175
|
return promisify(cb, function(cb) {
|
|
3175
3176
|
var engine = requires.haml || (requires.haml = require('hamljs'));
|
|
3176
3177
|
try {
|
|
@@ -3186,13 +3187,13 @@ function requireConsolidate$1 () {
|
|
|
3186
3187
|
* Hamlet support.
|
|
3187
3188
|
*/
|
|
3188
3189
|
|
|
3189
|
-
exports
|
|
3190
|
+
exports.hamlet = fromStringRenderer('hamlet');
|
|
3190
3191
|
|
|
3191
3192
|
/**
|
|
3192
3193
|
* Hamlet string support.
|
|
3193
3194
|
*/
|
|
3194
3195
|
|
|
3195
|
-
exports
|
|
3196
|
+
exports.hamlet.render = function(str, options, cb) {
|
|
3196
3197
|
return promisify(cb, function(cb) {
|
|
3197
3198
|
var engine = requires.hamlet || (requires.hamlet = require('hamlet'));
|
|
3198
3199
|
try {
|
|
@@ -3208,7 +3209,7 @@ function requireConsolidate$1 () {
|
|
|
3208
3209
|
* Whiskers support.
|
|
3209
3210
|
*/
|
|
3210
3211
|
|
|
3211
|
-
exports
|
|
3212
|
+
exports.whiskers = function(path, options, cb) {
|
|
3212
3213
|
return promisify(cb, function(cb) {
|
|
3213
3214
|
var engine = requires.whiskers || (requires.whiskers = require('whiskers'));
|
|
3214
3215
|
engine.__express(path, options, cb);
|
|
@@ -3219,7 +3220,7 @@ function requireConsolidate$1 () {
|
|
|
3219
3220
|
* Whiskers string support.
|
|
3220
3221
|
*/
|
|
3221
3222
|
|
|
3222
|
-
exports
|
|
3223
|
+
exports.whiskers.render = function(str, options, cb) {
|
|
3223
3224
|
return promisify(cb, function(cb) {
|
|
3224
3225
|
var engine = requires.whiskers || (requires.whiskers = require('whiskers'));
|
|
3225
3226
|
try {
|
|
@@ -3234,13 +3235,13 @@ function requireConsolidate$1 () {
|
|
|
3234
3235
|
* Coffee-HAML support.
|
|
3235
3236
|
*/
|
|
3236
3237
|
|
|
3237
|
-
exports
|
|
3238
|
+
exports['haml-coffee'] = fromStringRenderer('haml-coffee');
|
|
3238
3239
|
|
|
3239
3240
|
/**
|
|
3240
3241
|
* Coffee-HAML string support.
|
|
3241
3242
|
*/
|
|
3242
3243
|
|
|
3243
|
-
exports
|
|
3244
|
+
exports['haml-coffee'].render = function(str, options, cb) {
|
|
3244
3245
|
return promisify(cb, function(cb) {
|
|
3245
3246
|
var engine = requires['haml-coffee'] || (requires['haml-coffee'] = require('haml-coffee'));
|
|
3246
3247
|
try {
|
|
@@ -3256,13 +3257,13 @@ function requireConsolidate$1 () {
|
|
|
3256
3257
|
* Hogan support.
|
|
3257
3258
|
*/
|
|
3258
3259
|
|
|
3259
|
-
exports
|
|
3260
|
+
exports.hogan = fromStringRenderer('hogan');
|
|
3260
3261
|
|
|
3261
3262
|
/**
|
|
3262
3263
|
* Hogan string support.
|
|
3263
3264
|
*/
|
|
3264
3265
|
|
|
3265
|
-
exports
|
|
3266
|
+
exports.hogan.render = function(str, options, cb) {
|
|
3266
3267
|
return promisify(cb, function(cb) {
|
|
3267
3268
|
var engine = requires.hogan || (requires.hogan = require('hogan.js'));
|
|
3268
3269
|
try {
|
|
@@ -3278,13 +3279,13 @@ function requireConsolidate$1 () {
|
|
|
3278
3279
|
* templayed.js support.
|
|
3279
3280
|
*/
|
|
3280
3281
|
|
|
3281
|
-
exports
|
|
3282
|
+
exports.templayed = fromStringRenderer('templayed');
|
|
3282
3283
|
|
|
3283
3284
|
/**
|
|
3284
3285
|
* templayed.js string support.
|
|
3285
3286
|
*/
|
|
3286
3287
|
|
|
3287
|
-
exports
|
|
3288
|
+
exports.templayed.render = function(str, options, cb) {
|
|
3288
3289
|
return promisify(cb, function(cb) {
|
|
3289
3290
|
var engine = requires.templayed || (requires.templayed = require('templayed'));
|
|
3290
3291
|
try {
|
|
@@ -3300,13 +3301,13 @@ function requireConsolidate$1 () {
|
|
|
3300
3301
|
* Handlebars support.
|
|
3301
3302
|
*/
|
|
3302
3303
|
|
|
3303
|
-
exports
|
|
3304
|
+
exports.handlebars = fromStringRenderer('handlebars');
|
|
3304
3305
|
|
|
3305
3306
|
/**
|
|
3306
3307
|
* Handlebars string support.
|
|
3307
3308
|
*/
|
|
3308
3309
|
|
|
3309
|
-
exports
|
|
3310
|
+
exports.handlebars.render = function(str, options, cb) {
|
|
3310
3311
|
return promisify(cb, function(cb) {
|
|
3311
3312
|
var engine = requires.handlebars || (requires.handlebars = require('handlebars'));
|
|
3312
3313
|
try {
|
|
@@ -3328,13 +3329,13 @@ function requireConsolidate$1 () {
|
|
|
3328
3329
|
* Underscore support.
|
|
3329
3330
|
*/
|
|
3330
3331
|
|
|
3331
|
-
exports
|
|
3332
|
+
exports.underscore = fromStringRenderer('underscore');
|
|
3332
3333
|
|
|
3333
3334
|
/**
|
|
3334
3335
|
* Underscore string support.
|
|
3335
3336
|
*/
|
|
3336
3337
|
|
|
3337
|
-
exports
|
|
3338
|
+
exports.underscore.render = function(str, options, cb) {
|
|
3338
3339
|
return promisify(cb, function(cb) {
|
|
3339
3340
|
var engine = requires.underscore || (requires.underscore = require('underscore'));
|
|
3340
3341
|
try {
|
|
@@ -3355,13 +3356,13 @@ function requireConsolidate$1 () {
|
|
|
3355
3356
|
* Lodash support.
|
|
3356
3357
|
*/
|
|
3357
3358
|
|
|
3358
|
-
exports
|
|
3359
|
+
exports.lodash = fromStringRenderer('lodash');
|
|
3359
3360
|
|
|
3360
3361
|
/**
|
|
3361
3362
|
* Lodash string support.
|
|
3362
3363
|
*/
|
|
3363
3364
|
|
|
3364
|
-
exports
|
|
3365
|
+
exports.lodash.render = function(str, options, cb) {
|
|
3365
3366
|
return promisify(cb, function(cb) {
|
|
3366
3367
|
var engine = requires.lodash || (requires.lodash = require('lodash'));
|
|
3367
3368
|
try {
|
|
@@ -3377,7 +3378,7 @@ function requireConsolidate$1 () {
|
|
|
3377
3378
|
* Pug support. (formerly Jade)
|
|
3378
3379
|
*/
|
|
3379
3380
|
|
|
3380
|
-
exports
|
|
3381
|
+
exports.pug = function(path, options, cb) {
|
|
3381
3382
|
return promisify(cb, function(cb) {
|
|
3382
3383
|
var engine = requires.pug;
|
|
3383
3384
|
if (!engine) {
|
|
@@ -3405,7 +3406,7 @@ function requireConsolidate$1 () {
|
|
|
3405
3406
|
* Pug string support.
|
|
3406
3407
|
*/
|
|
3407
3408
|
|
|
3408
|
-
exports
|
|
3409
|
+
exports.pug.render = function(str, options, cb) {
|
|
3409
3410
|
return promisify(cb, function(cb) {
|
|
3410
3411
|
var engine = requires.pug;
|
|
3411
3412
|
if (!engine) {
|
|
@@ -3433,13 +3434,13 @@ function requireConsolidate$1 () {
|
|
|
3433
3434
|
* QEJS support.
|
|
3434
3435
|
*/
|
|
3435
3436
|
|
|
3436
|
-
exports
|
|
3437
|
+
exports.qejs = fromStringRenderer('qejs');
|
|
3437
3438
|
|
|
3438
3439
|
/**
|
|
3439
3440
|
* QEJS string support.
|
|
3440
3441
|
*/
|
|
3441
3442
|
|
|
3442
|
-
exports
|
|
3443
|
+
exports.qejs.render = function(str, options, cb) {
|
|
3443
3444
|
return promisify(cb, function(cb) {
|
|
3444
3445
|
try {
|
|
3445
3446
|
var engine = requires.qejs || (requires.qejs = require('qejs'));
|
|
@@ -3458,13 +3459,13 @@ function requireConsolidate$1 () {
|
|
|
3458
3459
|
* Walrus support.
|
|
3459
3460
|
*/
|
|
3460
3461
|
|
|
3461
|
-
exports
|
|
3462
|
+
exports.walrus = fromStringRenderer('walrus');
|
|
3462
3463
|
|
|
3463
3464
|
/**
|
|
3464
3465
|
* Walrus string support.
|
|
3465
3466
|
*/
|
|
3466
3467
|
|
|
3467
|
-
exports
|
|
3468
|
+
exports.walrus.render = function(str, options, cb) {
|
|
3468
3469
|
return promisify(cb, function(cb) {
|
|
3469
3470
|
var engine = requires.walrus || (requires.walrus = require('walrus'));
|
|
3470
3471
|
try {
|
|
@@ -3480,13 +3481,13 @@ function requireConsolidate$1 () {
|
|
|
3480
3481
|
* Mustache support.
|
|
3481
3482
|
*/
|
|
3482
3483
|
|
|
3483
|
-
exports
|
|
3484
|
+
exports.mustache = fromStringRenderer('mustache');
|
|
3484
3485
|
|
|
3485
3486
|
/**
|
|
3486
3487
|
* Mustache string support.
|
|
3487
3488
|
*/
|
|
3488
3489
|
|
|
3489
|
-
exports
|
|
3490
|
+
exports.mustache.render = function(str, options, cb) {
|
|
3490
3491
|
return promisify(cb, function(cb) {
|
|
3491
3492
|
var engine = requires.mustache || (requires.mustache = require('mustache'));
|
|
3492
3493
|
try {
|
|
@@ -3501,7 +3502,7 @@ function requireConsolidate$1 () {
|
|
|
3501
3502
|
* Just support.
|
|
3502
3503
|
*/
|
|
3503
3504
|
|
|
3504
|
-
exports
|
|
3505
|
+
exports.just = function(path, options, cb) {
|
|
3505
3506
|
return promisify(cb, function(cb) {
|
|
3506
3507
|
var engine = requires.just;
|
|
3507
3508
|
if (!engine) {
|
|
@@ -3517,7 +3518,7 @@ function requireConsolidate$1 () {
|
|
|
3517
3518
|
* Just string support.
|
|
3518
3519
|
*/
|
|
3519
3520
|
|
|
3520
|
-
exports
|
|
3521
|
+
exports.just.render = function(str, options, cb) {
|
|
3521
3522
|
return promisify(cb, function(cb) {
|
|
3522
3523
|
var JUST = require('just');
|
|
3523
3524
|
var engine = new JUST({ root: { page: str }});
|
|
@@ -3529,7 +3530,7 @@ function requireConsolidate$1 () {
|
|
|
3529
3530
|
* ECT support.
|
|
3530
3531
|
*/
|
|
3531
3532
|
|
|
3532
|
-
exports
|
|
3533
|
+
exports.ect = function(path, options, cb) {
|
|
3533
3534
|
return promisify(cb, function(cb) {
|
|
3534
3535
|
var engine = requires.ect;
|
|
3535
3536
|
if (!engine) {
|
|
@@ -3545,7 +3546,7 @@ function requireConsolidate$1 () {
|
|
|
3545
3546
|
* ECT string support.
|
|
3546
3547
|
*/
|
|
3547
3548
|
|
|
3548
|
-
exports
|
|
3549
|
+
exports.ect.render = function(str, options, cb) {
|
|
3549
3550
|
return promisify(cb, function(cb) {
|
|
3550
3551
|
var ECT = require('ect');
|
|
3551
3552
|
var engine = new ECT({ root: { page: str }});
|
|
@@ -3557,13 +3558,13 @@ function requireConsolidate$1 () {
|
|
|
3557
3558
|
* mote support.
|
|
3558
3559
|
*/
|
|
3559
3560
|
|
|
3560
|
-
exports
|
|
3561
|
+
exports.mote = fromStringRenderer('mote');
|
|
3561
3562
|
|
|
3562
3563
|
/**
|
|
3563
3564
|
* mote string support.
|
|
3564
3565
|
*/
|
|
3565
3566
|
|
|
3566
|
-
exports
|
|
3567
|
+
exports.mote.render = function(str, options, cb) {
|
|
3567
3568
|
return promisify(cb, function(cb) {
|
|
3568
3569
|
var engine = requires.mote || (requires.mote = require('mote'));
|
|
3569
3570
|
try {
|
|
@@ -3579,7 +3580,7 @@ function requireConsolidate$1 () {
|
|
|
3579
3580
|
* Toffee support.
|
|
3580
3581
|
*/
|
|
3581
3582
|
|
|
3582
|
-
exports
|
|
3583
|
+
exports.toffee = function(path, options, cb) {
|
|
3583
3584
|
return promisify(cb, function(cb) {
|
|
3584
3585
|
var toffee = requires.toffee || (requires.toffee = require('toffee'));
|
|
3585
3586
|
toffee.__consolidate_engine_render(path, options, cb);
|
|
@@ -3590,7 +3591,7 @@ function requireConsolidate$1 () {
|
|
|
3590
3591
|
* Toffee string support.
|
|
3591
3592
|
*/
|
|
3592
3593
|
|
|
3593
|
-
exports
|
|
3594
|
+
exports.toffee.render = function(str, options, cb) {
|
|
3594
3595
|
return promisify(cb, function(cb) {
|
|
3595
3596
|
var engine = requires.toffee || (requires.toffee = require('toffee'));
|
|
3596
3597
|
try {
|
|
@@ -3605,13 +3606,13 @@ function requireConsolidate$1 () {
|
|
|
3605
3606
|
* doT support.
|
|
3606
3607
|
*/
|
|
3607
3608
|
|
|
3608
|
-
exports
|
|
3609
|
+
exports.dot = fromStringRenderer('dot');
|
|
3609
3610
|
|
|
3610
3611
|
/**
|
|
3611
3612
|
* doT string support.
|
|
3612
3613
|
*/
|
|
3613
3614
|
|
|
3614
|
-
exports
|
|
3615
|
+
exports.dot.render = function(str, options, cb) {
|
|
3615
3616
|
return promisify(cb, function(cb) {
|
|
3616
3617
|
var engine = requires.dot || (requires.dot = require('dot'));
|
|
3617
3618
|
var extend = (requires.extend || (requires.extend = require$$2._extend));
|
|
@@ -3631,13 +3632,13 @@ function requireConsolidate$1 () {
|
|
|
3631
3632
|
* bracket support.
|
|
3632
3633
|
*/
|
|
3633
3634
|
|
|
3634
|
-
exports
|
|
3635
|
+
exports.bracket = fromStringRenderer('bracket');
|
|
3635
3636
|
|
|
3636
3637
|
/**
|
|
3637
3638
|
* bracket string support.
|
|
3638
3639
|
*/
|
|
3639
3640
|
|
|
3640
|
-
exports
|
|
3641
|
+
exports.bracket.render = function(str, options, cb) {
|
|
3641
3642
|
return promisify(cb, function(cb) {
|
|
3642
3643
|
var engine = requires.bracket || (requires.bracket = require('bracket-template'));
|
|
3643
3644
|
try {
|
|
@@ -3653,13 +3654,13 @@ function requireConsolidate$1 () {
|
|
|
3653
3654
|
* Ractive support.
|
|
3654
3655
|
*/
|
|
3655
3656
|
|
|
3656
|
-
exports
|
|
3657
|
+
exports.ractive = fromStringRenderer('ractive');
|
|
3657
3658
|
|
|
3658
3659
|
/**
|
|
3659
3660
|
* Ractive string support.
|
|
3660
3661
|
*/
|
|
3661
3662
|
|
|
3662
|
-
exports
|
|
3663
|
+
exports.ractive.render = function(str, options, cb) {
|
|
3663
3664
|
return promisify(cb, function(cb) {
|
|
3664
3665
|
var Engine = requires.ractive || (requires.ractive = require('ractive'));
|
|
3665
3666
|
|
|
@@ -3694,13 +3695,13 @@ function requireConsolidate$1 () {
|
|
|
3694
3695
|
* Nunjucks support.
|
|
3695
3696
|
*/
|
|
3696
3697
|
|
|
3697
|
-
exports
|
|
3698
|
+
exports.nunjucks = fromStringRenderer('nunjucks');
|
|
3698
3699
|
|
|
3699
3700
|
/**
|
|
3700
3701
|
* Nunjucks string support.
|
|
3701
3702
|
*/
|
|
3702
3703
|
|
|
3703
|
-
exports
|
|
3704
|
+
exports.nunjucks.render = function(str, options, cb) {
|
|
3704
3705
|
return promisify(cb, function(cb) {
|
|
3705
3706
|
|
|
3706
3707
|
try {
|
|
@@ -3759,13 +3760,13 @@ function requireConsolidate$1 () {
|
|
|
3759
3760
|
* HTMLing support.
|
|
3760
3761
|
*/
|
|
3761
3762
|
|
|
3762
|
-
exports
|
|
3763
|
+
exports.htmling = fromStringRenderer('htmling');
|
|
3763
3764
|
|
|
3764
3765
|
/**
|
|
3765
3766
|
* HTMLing string support.
|
|
3766
3767
|
*/
|
|
3767
3768
|
|
|
3768
|
-
exports
|
|
3769
|
+
exports.htmling.render = function(str, options, cb) {
|
|
3769
3770
|
return promisify(cb, function(cb) {
|
|
3770
3771
|
var engine = requires.htmling || (requires.htmling = require('htmling'));
|
|
3771
3772
|
try {
|
|
@@ -3788,7 +3789,7 @@ function requireConsolidate$1 () {
|
|
|
3788
3789
|
return module._compile(compiled, filename);
|
|
3789
3790
|
}
|
|
3790
3791
|
|
|
3791
|
-
exports
|
|
3792
|
+
exports.requireReact = requireReact;
|
|
3792
3793
|
|
|
3793
3794
|
/**
|
|
3794
3795
|
* Converting a string into a node module.
|
|
@@ -3837,13 +3838,13 @@ function requireConsolidate$1 () {
|
|
|
3837
3838
|
* Plates Support.
|
|
3838
3839
|
*/
|
|
3839
3840
|
|
|
3840
|
-
exports
|
|
3841
|
+
exports.plates = fromStringRenderer('plates');
|
|
3841
3842
|
|
|
3842
3843
|
/**
|
|
3843
3844
|
* Plates string support.
|
|
3844
3845
|
*/
|
|
3845
3846
|
|
|
3846
|
-
exports
|
|
3847
|
+
exports.plates.render = function(str, options, cb) {
|
|
3847
3848
|
return promisify(cb, function(cb) {
|
|
3848
3849
|
var engine = requires.plates || (requires.plates = require('plates'));
|
|
3849
3850
|
var map = options.map || undefined;
|
|
@@ -3944,24 +3945,24 @@ function requireConsolidate$1 () {
|
|
|
3944
3945
|
/**
|
|
3945
3946
|
* React JS Support
|
|
3946
3947
|
*/
|
|
3947
|
-
exports
|
|
3948
|
+
exports.react = reactRenderer('path');
|
|
3948
3949
|
|
|
3949
3950
|
/**
|
|
3950
3951
|
* React JS string support.
|
|
3951
3952
|
*/
|
|
3952
|
-
exports
|
|
3953
|
+
exports.react.render = reactRenderer('string');
|
|
3953
3954
|
|
|
3954
3955
|
/**
|
|
3955
3956
|
* ARC-templates support.
|
|
3956
3957
|
*/
|
|
3957
3958
|
|
|
3958
|
-
exports
|
|
3959
|
+
exports['arc-templates'] = fromStringRenderer('arc-templates');
|
|
3959
3960
|
|
|
3960
3961
|
/**
|
|
3961
3962
|
* ARC-templates string support.
|
|
3962
3963
|
*/
|
|
3963
3964
|
|
|
3964
|
-
exports
|
|
3965
|
+
exports['arc-templates'].render = function(str, options, cb) {
|
|
3965
3966
|
var readFileWithOptions = util.promisify(read);
|
|
3966
3967
|
var consolidateFileSystem = {};
|
|
3967
3968
|
consolidateFileSystem.readFile = function(path) {
|
|
@@ -3989,12 +3990,12 @@ function requireConsolidate$1 () {
|
|
|
3989
3990
|
/**
|
|
3990
3991
|
* Vash support
|
|
3991
3992
|
*/
|
|
3992
|
-
exports
|
|
3993
|
+
exports.vash = fromStringRenderer('vash');
|
|
3993
3994
|
|
|
3994
3995
|
/**
|
|
3995
3996
|
* Vash string support
|
|
3996
3997
|
*/
|
|
3997
|
-
exports
|
|
3998
|
+
exports.vash.render = function(str, options, cb) {
|
|
3998
3999
|
return promisify(cb, function(cb) {
|
|
3999
4000
|
var engine = requires.vash || (requires.vash = require('vash'));
|
|
4000
4001
|
|
|
@@ -4025,13 +4026,13 @@ function requireConsolidate$1 () {
|
|
|
4025
4026
|
* Slm support.
|
|
4026
4027
|
*/
|
|
4027
4028
|
|
|
4028
|
-
exports
|
|
4029
|
+
exports.slm = fromStringRenderer('slm');
|
|
4029
4030
|
|
|
4030
4031
|
/**
|
|
4031
4032
|
* Slm string support.
|
|
4032
4033
|
*/
|
|
4033
4034
|
|
|
4034
|
-
exports
|
|
4035
|
+
exports.slm.render = function(str, options, cb) {
|
|
4035
4036
|
return promisify(cb, function(cb) {
|
|
4036
4037
|
var engine = requires.slm || (requires.slm = require('slm'));
|
|
4037
4038
|
|
|
@@ -4048,7 +4049,7 @@ function requireConsolidate$1 () {
|
|
|
4048
4049
|
* Marko support.
|
|
4049
4050
|
*/
|
|
4050
4051
|
|
|
4051
|
-
exports
|
|
4052
|
+
exports.marko = function(path, options, cb) {
|
|
4052
4053
|
return promisify(cb, function(cb) {
|
|
4053
4054
|
var engine = requires.marko || (requires.marko = require('marko'));
|
|
4054
4055
|
options.writeToDisk = !!options.cache;
|
|
@@ -4066,7 +4067,7 @@ function requireConsolidate$1 () {
|
|
|
4066
4067
|
* Marko string support.
|
|
4067
4068
|
*/
|
|
4068
4069
|
|
|
4069
|
-
exports
|
|
4070
|
+
exports.marko.render = function(str, options, cb) {
|
|
4070
4071
|
return promisify(cb, function(cb) {
|
|
4071
4072
|
var engine = requires.marko || (requires.marko = require('marko'));
|
|
4072
4073
|
options.writeToDisk = !!options.cache;
|
|
@@ -4084,7 +4085,7 @@ function requireConsolidate$1 () {
|
|
|
4084
4085
|
/**
|
|
4085
4086
|
* Teacup support.
|
|
4086
4087
|
*/
|
|
4087
|
-
exports
|
|
4088
|
+
exports.teacup = function(path, options, cb) {
|
|
4088
4089
|
return promisify(cb, function(cb) {
|
|
4089
4090
|
var engine = requires.teacup || (requires.teacup = require('teacup/lib/express'));
|
|
4090
4091
|
commonjsRequire.extensions['.teacup'] = commonjsRequire.extensions['.coffee'];
|
|
@@ -4105,7 +4106,7 @@ function requireConsolidate$1 () {
|
|
|
4105
4106
|
/**
|
|
4106
4107
|
* Teacup string support.
|
|
4107
4108
|
*/
|
|
4108
|
-
exports
|
|
4109
|
+
exports.teacup.render = function(str, options, cb) {
|
|
4109
4110
|
var coffee = require('coffee-script');
|
|
4110
4111
|
var vm = require('vm');
|
|
4111
4112
|
var sandbox = {
|
|
@@ -4123,13 +4124,13 @@ function requireConsolidate$1 () {
|
|
|
4123
4124
|
* Squirrelly support.
|
|
4124
4125
|
*/
|
|
4125
4126
|
|
|
4126
|
-
exports
|
|
4127
|
+
exports.squirrelly = fromStringRenderer('squirrelly');
|
|
4127
4128
|
|
|
4128
4129
|
/**
|
|
4129
4130
|
* Squirrelly string support.
|
|
4130
4131
|
*/
|
|
4131
4132
|
|
|
4132
|
-
exports
|
|
4133
|
+
exports.squirrelly.render = function(str, options, cb) {
|
|
4133
4134
|
return promisify(cb, function(cb) {
|
|
4134
4135
|
var engine = requires.squirrelly || (requires.squirrelly = require('squirrelly'));
|
|
4135
4136
|
try {
|
|
@@ -4150,13 +4151,13 @@ function requireConsolidate$1 () {
|
|
|
4150
4151
|
* Twing support.
|
|
4151
4152
|
*/
|
|
4152
4153
|
|
|
4153
|
-
exports
|
|
4154
|
+
exports.twing = fromStringRenderer('twing');
|
|
4154
4155
|
|
|
4155
4156
|
/**
|
|
4156
4157
|
* Twing string support.
|
|
4157
4158
|
*/
|
|
4158
4159
|
|
|
4159
|
-
exports
|
|
4160
|
+
exports.twing.render = function(str, options, cb) {
|
|
4160
4161
|
return promisify(cb, function(cb) {
|
|
4161
4162
|
var engine = requires.twing || (requires.twing = require('twing'));
|
|
4162
4163
|
try {
|
|
@@ -4174,7 +4175,7 @@ function requireConsolidate$1 () {
|
|
|
4174
4175
|
/**
|
|
4175
4176
|
* expose the instance of the engine
|
|
4176
4177
|
*/
|
|
4177
|
-
exports
|
|
4178
|
+
exports.requires = requires;
|
|
4178
4179
|
} (consolidate$2, consolidate$2.exports));
|
|
4179
4180
|
return consolidate$2.exports;
|
|
4180
4181
|
}
|
|
@@ -4445,10 +4446,10 @@ var hasRequiredUnesc$1;
|
|
|
4445
4446
|
function requireUnesc$1 () {
|
|
4446
4447
|
if (hasRequiredUnesc$1) return unesc$1.exports;
|
|
4447
4448
|
hasRequiredUnesc$1 = 1;
|
|
4448
|
-
(function (module, exports
|
|
4449
|
+
(function (module, exports) {
|
|
4449
4450
|
|
|
4450
|
-
exports
|
|
4451
|
-
exports
|
|
4451
|
+
exports.__esModule = true;
|
|
4452
|
+
exports["default"] = unesc;
|
|
4452
4453
|
// Many thanks for this post which made this migration much easier.
|
|
4453
4454
|
// https://mathiasbynens.be/notes/css-escapes
|
|
4454
4455
|
|
|
@@ -4520,7 +4521,7 @@ function requireUnesc$1 () {
|
|
|
4520
4521
|
}
|
|
4521
4522
|
return ret;
|
|
4522
4523
|
}
|
|
4523
|
-
module.exports = exports
|
|
4524
|
+
module.exports = exports.default;
|
|
4524
4525
|
} (unesc$1, unesc$1.exports));
|
|
4525
4526
|
return unesc$1.exports;
|
|
4526
4527
|
}
|
|
@@ -4532,10 +4533,10 @@ var hasRequiredGetProp$1;
|
|
|
4532
4533
|
function requireGetProp$1 () {
|
|
4533
4534
|
if (hasRequiredGetProp$1) return getProp$1.exports;
|
|
4534
4535
|
hasRequiredGetProp$1 = 1;
|
|
4535
|
-
(function (module, exports
|
|
4536
|
+
(function (module, exports) {
|
|
4536
4537
|
|
|
4537
|
-
exports
|
|
4538
|
-
exports
|
|
4538
|
+
exports.__esModule = true;
|
|
4539
|
+
exports["default"] = getProp;
|
|
4539
4540
|
function getProp(obj) {
|
|
4540
4541
|
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
4541
4542
|
props[_key - 1] = arguments[_key];
|
|
@@ -4549,7 +4550,7 @@ function requireGetProp$1 () {
|
|
|
4549
4550
|
}
|
|
4550
4551
|
return obj;
|
|
4551
4552
|
}
|
|
4552
|
-
module.exports = exports
|
|
4553
|
+
module.exports = exports.default;
|
|
4553
4554
|
} (getProp$1, getProp$1.exports));
|
|
4554
4555
|
return getProp$1.exports;
|
|
4555
4556
|
}
|
|
@@ -4561,10 +4562,10 @@ var hasRequiredEnsureObject$1;
|
|
|
4561
4562
|
function requireEnsureObject$1 () {
|
|
4562
4563
|
if (hasRequiredEnsureObject$1) return ensureObject$1.exports;
|
|
4563
4564
|
hasRequiredEnsureObject$1 = 1;
|
|
4564
|
-
(function (module, exports
|
|
4565
|
+
(function (module, exports) {
|
|
4565
4566
|
|
|
4566
|
-
exports
|
|
4567
|
-
exports
|
|
4567
|
+
exports.__esModule = true;
|
|
4568
|
+
exports["default"] = ensureObject;
|
|
4568
4569
|
function ensureObject(obj) {
|
|
4569
4570
|
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
4570
4571
|
props[_key - 1] = arguments[_key];
|
|
@@ -4577,7 +4578,7 @@ function requireEnsureObject$1 () {
|
|
|
4577
4578
|
obj = obj[prop];
|
|
4578
4579
|
}
|
|
4579
4580
|
}
|
|
4580
|
-
module.exports = exports
|
|
4581
|
+
module.exports = exports.default;
|
|
4581
4582
|
} (ensureObject$1, ensureObject$1.exports));
|
|
4582
4583
|
return ensureObject$1.exports;
|
|
4583
4584
|
}
|
|
@@ -4589,10 +4590,10 @@ var hasRequiredStripComments$1;
|
|
|
4589
4590
|
function requireStripComments$1 () {
|
|
4590
4591
|
if (hasRequiredStripComments$1) return stripComments$1.exports;
|
|
4591
4592
|
hasRequiredStripComments$1 = 1;
|
|
4592
|
-
(function (module, exports
|
|
4593
|
+
(function (module, exports) {
|
|
4593
4594
|
|
|
4594
|
-
exports
|
|
4595
|
-
exports
|
|
4595
|
+
exports.__esModule = true;
|
|
4596
|
+
exports["default"] = stripComments;
|
|
4596
4597
|
function stripComments(str) {
|
|
4597
4598
|
var s = "";
|
|
4598
4599
|
var commentStart = str.indexOf("/*");
|
|
@@ -4609,7 +4610,7 @@ function requireStripComments$1 () {
|
|
|
4609
4610
|
s = s + str.slice(lastEnd);
|
|
4610
4611
|
return s;
|
|
4611
4612
|
}
|
|
4612
|
-
module.exports = exports
|
|
4613
|
+
module.exports = exports.default;
|
|
4613
4614
|
} (stripComments$1, stripComments$1.exports));
|
|
4614
4615
|
return stripComments$1.exports;
|
|
4615
4616
|
}
|
|
@@ -4639,10 +4640,10 @@ var hasRequiredNode$2;
|
|
|
4639
4640
|
function requireNode$2 () {
|
|
4640
4641
|
if (hasRequiredNode$2) return node$2.exports;
|
|
4641
4642
|
hasRequiredNode$2 = 1;
|
|
4642
|
-
(function (module, exports
|
|
4643
|
+
(function (module, exports) {
|
|
4643
4644
|
|
|
4644
|
-
exports
|
|
4645
|
-
exports
|
|
4645
|
+
exports.__esModule = true;
|
|
4646
|
+
exports["default"] = void 0;
|
|
4646
4647
|
var _util = /*@__PURE__*/ requireUtil$2();
|
|
4647
4648
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
4648
4649
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
@@ -4829,8 +4830,8 @@ function requireNode$2 () {
|
|
|
4829
4830
|
}]);
|
|
4830
4831
|
return Node;
|
|
4831
4832
|
}();
|
|
4832
|
-
exports
|
|
4833
|
-
module.exports = exports
|
|
4833
|
+
exports["default"] = Node;
|
|
4834
|
+
module.exports = exports.default;
|
|
4834
4835
|
} (node$2, node$2.exports));
|
|
4835
4836
|
return node$2.exports;
|
|
4836
4837
|
}
|
|
@@ -4877,10 +4878,10 @@ var hasRequiredContainer$1;
|
|
|
4877
4878
|
function requireContainer$1 () {
|
|
4878
4879
|
if (hasRequiredContainer$1) return container$1.exports;
|
|
4879
4880
|
hasRequiredContainer$1 = 1;
|
|
4880
|
-
(function (module, exports
|
|
4881
|
+
(function (module, exports) {
|
|
4881
4882
|
|
|
4882
|
-
exports
|
|
4883
|
-
exports
|
|
4883
|
+
exports.__esModule = true;
|
|
4884
|
+
exports["default"] = void 0;
|
|
4884
4885
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
4885
4886
|
var types = _interopRequireWildcard(/*@__PURE__*/ requireTypes$1());
|
|
4886
4887
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -5196,8 +5197,8 @@ function requireContainer$1 () {
|
|
|
5196
5197
|
}]);
|
|
5197
5198
|
return Container;
|
|
5198
5199
|
}(_node["default"]);
|
|
5199
|
-
exports
|
|
5200
|
-
module.exports = exports
|
|
5200
|
+
exports["default"] = Container;
|
|
5201
|
+
module.exports = exports.default;
|
|
5201
5202
|
} (container$1, container$1.exports));
|
|
5202
5203
|
return container$1.exports;
|
|
5203
5204
|
}
|
|
@@ -5207,10 +5208,10 @@ var hasRequiredRoot$1;
|
|
|
5207
5208
|
function requireRoot$1 () {
|
|
5208
5209
|
if (hasRequiredRoot$1) return root$1.exports;
|
|
5209
5210
|
hasRequiredRoot$1 = 1;
|
|
5210
|
-
(function (module, exports
|
|
5211
|
+
(function (module, exports) {
|
|
5211
5212
|
|
|
5212
|
-
exports
|
|
5213
|
-
exports
|
|
5213
|
+
exports.__esModule = true;
|
|
5214
|
+
exports["default"] = void 0;
|
|
5214
5215
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer$1());
|
|
5215
5216
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5216
5217
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5249,8 +5250,8 @@ function requireRoot$1 () {
|
|
|
5249
5250
|
}]);
|
|
5250
5251
|
return Root;
|
|
5251
5252
|
}(_container["default"]);
|
|
5252
|
-
exports
|
|
5253
|
-
module.exports = exports
|
|
5253
|
+
exports["default"] = Root;
|
|
5254
|
+
module.exports = exports.default;
|
|
5254
5255
|
} (root$1, root$1.exports));
|
|
5255
5256
|
return root$1.exports;
|
|
5256
5257
|
}
|
|
@@ -5262,10 +5263,10 @@ var hasRequiredSelector$1;
|
|
|
5262
5263
|
function requireSelector$1 () {
|
|
5263
5264
|
if (hasRequiredSelector$1) return selector$1.exports;
|
|
5264
5265
|
hasRequiredSelector$1 = 1;
|
|
5265
|
-
(function (module, exports
|
|
5266
|
+
(function (module, exports) {
|
|
5266
5267
|
|
|
5267
|
-
exports
|
|
5268
|
-
exports
|
|
5268
|
+
exports.__esModule = true;
|
|
5269
|
+
exports["default"] = void 0;
|
|
5269
5270
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer$1());
|
|
5270
5271
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5271
5272
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5281,8 +5282,8 @@ function requireSelector$1 () {
|
|
|
5281
5282
|
}
|
|
5282
5283
|
return Selector;
|
|
5283
5284
|
}(_container["default"]);
|
|
5284
|
-
exports
|
|
5285
|
-
module.exports = exports
|
|
5285
|
+
exports["default"] = Selector;
|
|
5286
|
+
module.exports = exports.default;
|
|
5286
5287
|
} (selector$1, selector$1.exports));
|
|
5287
5288
|
return selector$1.exports;
|
|
5288
5289
|
}
|
|
@@ -5412,10 +5413,10 @@ var hasRequiredClassName$1;
|
|
|
5412
5413
|
function requireClassName$1 () {
|
|
5413
5414
|
if (hasRequiredClassName$1) return className$1.exports;
|
|
5414
5415
|
hasRequiredClassName$1 = 1;
|
|
5415
|
-
(function (module, exports
|
|
5416
|
+
(function (module, exports) {
|
|
5416
5417
|
|
|
5417
|
-
exports
|
|
5418
|
-
exports
|
|
5418
|
+
exports.__esModule = true;
|
|
5419
|
+
exports["default"] = void 0;
|
|
5419
5420
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
5420
5421
|
var _util = /*@__PURE__*/ requireUtil$2();
|
|
5421
5422
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
@@ -5460,8 +5461,8 @@ function requireClassName$1 () {
|
|
|
5460
5461
|
}]);
|
|
5461
5462
|
return ClassName;
|
|
5462
5463
|
}(_node["default"]);
|
|
5463
|
-
exports
|
|
5464
|
-
module.exports = exports
|
|
5464
|
+
exports["default"] = ClassName;
|
|
5465
|
+
module.exports = exports.default;
|
|
5465
5466
|
} (className$1, className$1.exports));
|
|
5466
5467
|
return className$1.exports;
|
|
5467
5468
|
}
|
|
@@ -5473,10 +5474,10 @@ var hasRequiredComment$1;
|
|
|
5473
5474
|
function requireComment$1 () {
|
|
5474
5475
|
if (hasRequiredComment$1) return comment$1.exports;
|
|
5475
5476
|
hasRequiredComment$1 = 1;
|
|
5476
|
-
(function (module, exports
|
|
5477
|
+
(function (module, exports) {
|
|
5477
5478
|
|
|
5478
|
-
exports
|
|
5479
|
-
exports
|
|
5479
|
+
exports.__esModule = true;
|
|
5480
|
+
exports["default"] = void 0;
|
|
5480
5481
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
5481
5482
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5482
5483
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5492,8 +5493,8 @@ function requireComment$1 () {
|
|
|
5492
5493
|
}
|
|
5493
5494
|
return Comment;
|
|
5494
5495
|
}(_node["default"]);
|
|
5495
|
-
exports
|
|
5496
|
-
module.exports = exports
|
|
5496
|
+
exports["default"] = Comment;
|
|
5497
|
+
module.exports = exports.default;
|
|
5497
5498
|
} (comment$1, comment$1.exports));
|
|
5498
5499
|
return comment$1.exports;
|
|
5499
5500
|
}
|
|
@@ -5505,10 +5506,10 @@ var hasRequiredId$1;
|
|
|
5505
5506
|
function requireId$1 () {
|
|
5506
5507
|
if (hasRequiredId$1) return id$1.exports;
|
|
5507
5508
|
hasRequiredId$1 = 1;
|
|
5508
|
-
(function (module, exports
|
|
5509
|
+
(function (module, exports) {
|
|
5509
5510
|
|
|
5510
|
-
exports
|
|
5511
|
-
exports
|
|
5511
|
+
exports.__esModule = true;
|
|
5512
|
+
exports["default"] = void 0;
|
|
5512
5513
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
5513
5514
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5514
5515
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5528,8 +5529,8 @@ function requireId$1 () {
|
|
|
5528
5529
|
};
|
|
5529
5530
|
return ID;
|
|
5530
5531
|
}(_node["default"]);
|
|
5531
|
-
exports
|
|
5532
|
-
module.exports = exports
|
|
5532
|
+
exports["default"] = ID;
|
|
5533
|
+
module.exports = exports.default;
|
|
5533
5534
|
} (id$1, id$1.exports));
|
|
5534
5535
|
return id$1.exports;
|
|
5535
5536
|
}
|
|
@@ -5543,10 +5544,10 @@ var hasRequiredNamespace$1;
|
|
|
5543
5544
|
function requireNamespace$1 () {
|
|
5544
5545
|
if (hasRequiredNamespace$1) return namespace$1.exports;
|
|
5545
5546
|
hasRequiredNamespace$1 = 1;
|
|
5546
|
-
(function (module, exports
|
|
5547
|
+
(function (module, exports) {
|
|
5547
5548
|
|
|
5548
|
-
exports
|
|
5549
|
-
exports
|
|
5549
|
+
exports.__esModule = true;
|
|
5550
|
+
exports["default"] = void 0;
|
|
5550
5551
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
5551
5552
|
var _util = /*@__PURE__*/ requireUtil$2();
|
|
5552
5553
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
@@ -5620,8 +5621,8 @@ function requireNamespace$1 () {
|
|
|
5620
5621
|
}]);
|
|
5621
5622
|
return Namespace;
|
|
5622
5623
|
}(_node["default"]);
|
|
5623
|
-
exports
|
|
5624
|
-
module.exports = exports
|
|
5624
|
+
exports["default"] = Namespace;
|
|
5625
|
+
module.exports = exports.default;
|
|
5625
5626
|
} (namespace$1, namespace$1.exports));
|
|
5626
5627
|
return namespace$1.exports;
|
|
5627
5628
|
}
|
|
@@ -5631,10 +5632,10 @@ var hasRequiredTag$1;
|
|
|
5631
5632
|
function requireTag$1 () {
|
|
5632
5633
|
if (hasRequiredTag$1) return tag$1.exports;
|
|
5633
5634
|
hasRequiredTag$1 = 1;
|
|
5634
|
-
(function (module, exports
|
|
5635
|
+
(function (module, exports) {
|
|
5635
5636
|
|
|
5636
|
-
exports
|
|
5637
|
-
exports
|
|
5637
|
+
exports.__esModule = true;
|
|
5638
|
+
exports["default"] = void 0;
|
|
5638
5639
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace$1());
|
|
5639
5640
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5640
5641
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5650,8 +5651,8 @@ function requireTag$1 () {
|
|
|
5650
5651
|
}
|
|
5651
5652
|
return Tag;
|
|
5652
5653
|
}(_namespace["default"]);
|
|
5653
|
-
exports
|
|
5654
|
-
module.exports = exports
|
|
5654
|
+
exports["default"] = Tag;
|
|
5655
|
+
module.exports = exports.default;
|
|
5655
5656
|
} (tag$1, tag$1.exports));
|
|
5656
5657
|
return tag$1.exports;
|
|
5657
5658
|
}
|
|
@@ -5663,10 +5664,10 @@ var hasRequiredString$1;
|
|
|
5663
5664
|
function requireString$1 () {
|
|
5664
5665
|
if (hasRequiredString$1) return string$1.exports;
|
|
5665
5666
|
hasRequiredString$1 = 1;
|
|
5666
|
-
(function (module, exports
|
|
5667
|
+
(function (module, exports) {
|
|
5667
5668
|
|
|
5668
|
-
exports
|
|
5669
|
-
exports
|
|
5669
|
+
exports.__esModule = true;
|
|
5670
|
+
exports["default"] = void 0;
|
|
5670
5671
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
5671
5672
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5672
5673
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5682,8 +5683,8 @@ function requireString$1 () {
|
|
|
5682
5683
|
}
|
|
5683
5684
|
return String;
|
|
5684
5685
|
}(_node["default"]);
|
|
5685
|
-
exports
|
|
5686
|
-
module.exports = exports
|
|
5686
|
+
exports["default"] = String;
|
|
5687
|
+
module.exports = exports.default;
|
|
5687
5688
|
} (string$1, string$1.exports));
|
|
5688
5689
|
return string$1.exports;
|
|
5689
5690
|
}
|
|
@@ -5695,10 +5696,10 @@ var hasRequiredPseudo$1;
|
|
|
5695
5696
|
function requirePseudo$1 () {
|
|
5696
5697
|
if (hasRequiredPseudo$1) return pseudo$1.exports;
|
|
5697
5698
|
hasRequiredPseudo$1 = 1;
|
|
5698
|
-
(function (module, exports
|
|
5699
|
+
(function (module, exports) {
|
|
5699
5700
|
|
|
5700
|
-
exports
|
|
5701
|
-
exports
|
|
5701
|
+
exports.__esModule = true;
|
|
5702
|
+
exports["default"] = void 0;
|
|
5702
5703
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer$1());
|
|
5703
5704
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
5704
5705
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -5719,8 +5720,8 @@ function requirePseudo$1 () {
|
|
|
5719
5720
|
};
|
|
5720
5721
|
return Pseudo;
|
|
5721
5722
|
}(_container["default"]);
|
|
5722
|
-
exports
|
|
5723
|
-
module.exports = exports
|
|
5723
|
+
exports["default"] = Pseudo;
|
|
5724
|
+
module.exports = exports.default;
|
|
5724
5725
|
} (pseudo$1, pseudo$1.exports));
|
|
5725
5726
|
return pseudo$1.exports;
|
|
5726
5727
|
}
|
|
@@ -5746,11 +5747,11 @@ var hasRequiredAttribute$1;
|
|
|
5746
5747
|
function requireAttribute$1 () {
|
|
5747
5748
|
if (hasRequiredAttribute$1) return attribute$1;
|
|
5748
5749
|
hasRequiredAttribute$1 = 1;
|
|
5749
|
-
(function (exports
|
|
5750
|
+
(function (exports) {
|
|
5750
5751
|
|
|
5751
|
-
exports
|
|
5752
|
-
exports
|
|
5753
|
-
exports
|
|
5752
|
+
exports.__esModule = true;
|
|
5753
|
+
exports["default"] = void 0;
|
|
5754
|
+
exports.unescapeValue = unescapeValue;
|
|
5754
5755
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
5755
5756
|
var _unesc = _interopRequireDefault(/*@__PURE__*/ requireUnesc$1());
|
|
5756
5757
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace$1());
|
|
@@ -6175,7 +6176,7 @@ function requireAttribute$1 () {
|
|
|
6175
6176
|
}]);
|
|
6176
6177
|
return Attribute;
|
|
6177
6178
|
}(_namespace["default"]);
|
|
6178
|
-
exports
|
|
6179
|
+
exports["default"] = Attribute;
|
|
6179
6180
|
Attribute.NO_QUOTE = null;
|
|
6180
6181
|
Attribute.SINGLE_QUOTE = "'";
|
|
6181
6182
|
Attribute.DOUBLE_QUOTE = '"';
|
|
@@ -6205,10 +6206,10 @@ var hasRequiredUniversal$1;
|
|
|
6205
6206
|
function requireUniversal$1 () {
|
|
6206
6207
|
if (hasRequiredUniversal$1) return universal$1.exports;
|
|
6207
6208
|
hasRequiredUniversal$1 = 1;
|
|
6208
|
-
(function (module, exports
|
|
6209
|
+
(function (module, exports) {
|
|
6209
6210
|
|
|
6210
|
-
exports
|
|
6211
|
-
exports
|
|
6211
|
+
exports.__esModule = true;
|
|
6212
|
+
exports["default"] = void 0;
|
|
6212
6213
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace$1());
|
|
6213
6214
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
6214
6215
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -6225,8 +6226,8 @@ function requireUniversal$1 () {
|
|
|
6225
6226
|
}
|
|
6226
6227
|
return Universal;
|
|
6227
6228
|
}(_namespace["default"]);
|
|
6228
|
-
exports
|
|
6229
|
-
module.exports = exports
|
|
6229
|
+
exports["default"] = Universal;
|
|
6230
|
+
module.exports = exports.default;
|
|
6230
6231
|
} (universal$1, universal$1.exports));
|
|
6231
6232
|
return universal$1.exports;
|
|
6232
6233
|
}
|
|
@@ -6238,10 +6239,10 @@ var hasRequiredCombinator$1;
|
|
|
6238
6239
|
function requireCombinator$1 () {
|
|
6239
6240
|
if (hasRequiredCombinator$1) return combinator$1.exports;
|
|
6240
6241
|
hasRequiredCombinator$1 = 1;
|
|
6241
|
-
(function (module, exports
|
|
6242
|
+
(function (module, exports) {
|
|
6242
6243
|
|
|
6243
|
-
exports
|
|
6244
|
-
exports
|
|
6244
|
+
exports.__esModule = true;
|
|
6245
|
+
exports["default"] = void 0;
|
|
6245
6246
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
6246
6247
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
6247
6248
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -6257,8 +6258,8 @@ function requireCombinator$1 () {
|
|
|
6257
6258
|
}
|
|
6258
6259
|
return Combinator;
|
|
6259
6260
|
}(_node["default"]);
|
|
6260
|
-
exports
|
|
6261
|
-
module.exports = exports
|
|
6261
|
+
exports["default"] = Combinator;
|
|
6262
|
+
module.exports = exports.default;
|
|
6262
6263
|
} (combinator$1, combinator$1.exports));
|
|
6263
6264
|
return combinator$1.exports;
|
|
6264
6265
|
}
|
|
@@ -6270,10 +6271,10 @@ var hasRequiredNesting$1;
|
|
|
6270
6271
|
function requireNesting$1 () {
|
|
6271
6272
|
if (hasRequiredNesting$1) return nesting$1.exports;
|
|
6272
6273
|
hasRequiredNesting$1 = 1;
|
|
6273
|
-
(function (module, exports
|
|
6274
|
+
(function (module, exports) {
|
|
6274
6275
|
|
|
6275
|
-
exports
|
|
6276
|
-
exports
|
|
6276
|
+
exports.__esModule = true;
|
|
6277
|
+
exports["default"] = void 0;
|
|
6277
6278
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode$2());
|
|
6278
6279
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
6279
6280
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -6290,8 +6291,8 @@ function requireNesting$1 () {
|
|
|
6290
6291
|
}
|
|
6291
6292
|
return Nesting;
|
|
6292
6293
|
}(_node["default"]);
|
|
6293
|
-
exports
|
|
6294
|
-
module.exports = exports
|
|
6294
|
+
exports["default"] = Nesting;
|
|
6295
|
+
module.exports = exports.default;
|
|
6295
6296
|
} (nesting$1, nesting$1.exports));
|
|
6296
6297
|
return nesting$1.exports;
|
|
6297
6298
|
}
|
|
@@ -6303,16 +6304,16 @@ var hasRequiredSortAscending$1;
|
|
|
6303
6304
|
function requireSortAscending$1 () {
|
|
6304
6305
|
if (hasRequiredSortAscending$1) return sortAscending$1.exports;
|
|
6305
6306
|
hasRequiredSortAscending$1 = 1;
|
|
6306
|
-
(function (module, exports
|
|
6307
|
+
(function (module, exports) {
|
|
6307
6308
|
|
|
6308
|
-
exports
|
|
6309
|
-
exports
|
|
6309
|
+
exports.__esModule = true;
|
|
6310
|
+
exports["default"] = sortAscending;
|
|
6310
6311
|
function sortAscending(list) {
|
|
6311
6312
|
return list.sort(function (a, b) {
|
|
6312
6313
|
return a - b;
|
|
6313
6314
|
});
|
|
6314
6315
|
}
|
|
6315
|
-
module.exports = exports
|
|
6316
|
+
module.exports = exports.default;
|
|
6316
6317
|
} (sortAscending$1, sortAscending$1.exports));
|
|
6317
6318
|
return sortAscending$1.exports;
|
|
6318
6319
|
}
|
|
@@ -6403,11 +6404,11 @@ var hasRequiredTokenize$1;
|
|
|
6403
6404
|
function requireTokenize$1 () {
|
|
6404
6405
|
if (hasRequiredTokenize$1) return tokenize$1;
|
|
6405
6406
|
hasRequiredTokenize$1 = 1;
|
|
6406
|
-
(function (exports
|
|
6407
|
+
(function (exports) {
|
|
6407
6408
|
|
|
6408
|
-
exports
|
|
6409
|
-
exports
|
|
6410
|
-
exports
|
|
6409
|
+
exports.__esModule = true;
|
|
6410
|
+
exports.FIELDS = void 0;
|
|
6411
|
+
exports["default"] = tokenize;
|
|
6411
6412
|
var t = _interopRequireWildcard(/*@__PURE__*/ requireTokenTypes$1());
|
|
6412
6413
|
var _unescapable, _wordDelimiters;
|
|
6413
6414
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -6477,7 +6478,7 @@ function requireTokenize$1 () {
|
|
|
6477
6478
|
START_POS: 5,
|
|
6478
6479
|
END_POS: 6
|
|
6479
6480
|
};
|
|
6480
|
-
exports
|
|
6481
|
+
exports.FIELDS = FIELDS;
|
|
6481
6482
|
function tokenize(input) {
|
|
6482
6483
|
var tokens = [];
|
|
6483
6484
|
var css = input.css.valueOf();
|
|
@@ -6649,10 +6650,10 @@ var hasRequiredParser$2;
|
|
|
6649
6650
|
function requireParser$2 () {
|
|
6650
6651
|
if (hasRequiredParser$2) return parser$1.exports;
|
|
6651
6652
|
hasRequiredParser$2 = 1;
|
|
6652
|
-
(function (module, exports
|
|
6653
|
+
(function (module, exports) {
|
|
6653
6654
|
|
|
6654
|
-
exports
|
|
6655
|
-
exports
|
|
6655
|
+
exports.__esModule = true;
|
|
6656
|
+
exports["default"] = void 0;
|
|
6656
6657
|
var _root = _interopRequireDefault(/*@__PURE__*/ requireRoot$1());
|
|
6657
6658
|
var _selector = _interopRequireDefault(/*@__PURE__*/ requireSelector$1());
|
|
6658
6659
|
var _className = _interopRequireDefault(/*@__PURE__*/ requireClassName$1());
|
|
@@ -7660,8 +7661,8 @@ function requireParser$2 () {
|
|
|
7660
7661
|
}]);
|
|
7661
7662
|
return Parser;
|
|
7662
7663
|
}();
|
|
7663
|
-
exports
|
|
7664
|
-
module.exports = exports
|
|
7664
|
+
exports["default"] = Parser;
|
|
7665
|
+
module.exports = exports.default;
|
|
7665
7666
|
} (parser$1, parser$1.exports));
|
|
7666
7667
|
return parser$1.exports;
|
|
7667
7668
|
}
|
|
@@ -7671,10 +7672,10 @@ var hasRequiredProcessor$1;
|
|
|
7671
7672
|
function requireProcessor$1 () {
|
|
7672
7673
|
if (hasRequiredProcessor$1) return processor$1.exports;
|
|
7673
7674
|
hasRequiredProcessor$1 = 1;
|
|
7674
|
-
(function (module, exports
|
|
7675
|
+
(function (module, exports) {
|
|
7675
7676
|
|
|
7676
|
-
exports
|
|
7677
|
-
exports
|
|
7677
|
+
exports.__esModule = true;
|
|
7678
|
+
exports["default"] = void 0;
|
|
7678
7679
|
var _parser = _interopRequireDefault(/*@__PURE__*/ requireParser$2());
|
|
7679
7680
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
7680
7681
|
var Processor = /*#__PURE__*/function () {
|
|
@@ -7839,8 +7840,8 @@ function requireProcessor$1 () {
|
|
|
7839
7840
|
};
|
|
7840
7841
|
return Processor;
|
|
7841
7842
|
}();
|
|
7842
|
-
exports
|
|
7843
|
-
module.exports = exports
|
|
7843
|
+
exports["default"] = Processor;
|
|
7844
|
+
module.exports = exports.default;
|
|
7844
7845
|
} (processor$1, processor$1.exports));
|
|
7845
7846
|
return processor$1.exports;
|
|
7846
7847
|
}
|
|
@@ -7993,26 +7994,26 @@ var hasRequiredSelectors$1;
|
|
|
7993
7994
|
function requireSelectors$1 () {
|
|
7994
7995
|
if (hasRequiredSelectors$1) return selectors$1;
|
|
7995
7996
|
hasRequiredSelectors$1 = 1;
|
|
7996
|
-
(function (exports
|
|
7997
|
+
(function (exports) {
|
|
7997
7998
|
|
|
7998
|
-
exports
|
|
7999
|
+
exports.__esModule = true;
|
|
7999
8000
|
var _types = /*@__PURE__*/ requireTypes$1();
|
|
8000
8001
|
Object.keys(_types).forEach(function (key) {
|
|
8001
8002
|
if (key === "default" || key === "__esModule") return;
|
|
8002
|
-
if (key in exports
|
|
8003
|
-
exports
|
|
8003
|
+
if (key in exports && exports[key] === _types[key]) return;
|
|
8004
|
+
exports[key] = _types[key];
|
|
8004
8005
|
});
|
|
8005
8006
|
var _constructors = /*@__PURE__*/ requireConstructors$1();
|
|
8006
8007
|
Object.keys(_constructors).forEach(function (key) {
|
|
8007
8008
|
if (key === "default" || key === "__esModule") return;
|
|
8008
|
-
if (key in exports
|
|
8009
|
-
exports
|
|
8009
|
+
if (key in exports && exports[key] === _constructors[key]) return;
|
|
8010
|
+
exports[key] = _constructors[key];
|
|
8010
8011
|
});
|
|
8011
8012
|
var _guards = /*@__PURE__*/ requireGuards$1();
|
|
8012
8013
|
Object.keys(_guards).forEach(function (key) {
|
|
8013
8014
|
if (key === "default" || key === "__esModule") return;
|
|
8014
|
-
if (key in exports
|
|
8015
|
-
exports
|
|
8015
|
+
if (key in exports && exports[key] === _guards[key]) return;
|
|
8016
|
+
exports[key] = _guards[key];
|
|
8016
8017
|
});
|
|
8017
8018
|
} (selectors$1));
|
|
8018
8019
|
return selectors$1;
|
|
@@ -8023,10 +8024,10 @@ var hasRequiredDist$1;
|
|
|
8023
8024
|
function requireDist$1 () {
|
|
8024
8025
|
if (hasRequiredDist$1) return dist$1.exports;
|
|
8025
8026
|
hasRequiredDist$1 = 1;
|
|
8026
|
-
(function (module, exports
|
|
8027
|
+
(function (module, exports) {
|
|
8027
8028
|
|
|
8028
|
-
exports
|
|
8029
|
-
exports
|
|
8029
|
+
exports.__esModule = true;
|
|
8030
|
+
exports["default"] = void 0;
|
|
8030
8031
|
var _processor = _interopRequireDefault(/*@__PURE__*/ requireProcessor$1());
|
|
8031
8032
|
var selectors = _interopRequireWildcard(/*@__PURE__*/ requireSelectors$1());
|
|
8032
8033
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -8038,8 +8039,8 @@ function requireDist$1 () {
|
|
|
8038
8039
|
Object.assign(parser, selectors);
|
|
8039
8040
|
delete parser.__esModule;
|
|
8040
8041
|
var _default = parser;
|
|
8041
|
-
exports
|
|
8042
|
-
module.exports = exports
|
|
8042
|
+
exports["default"] = _default;
|
|
8043
|
+
module.exports = exports.default;
|
|
8043
8044
|
} (dist$1, dist$1.exports));
|
|
8044
8045
|
return dist$1.exports;
|
|
8045
8046
|
}
|
|
@@ -8110,6 +8111,8 @@ function processRule(id, rule) {
|
|
|
8110
8111
|
function rewriteSelector(id, rule, selector, selectorRoot, deep, slotted = false) {
|
|
8111
8112
|
let node = null;
|
|
8112
8113
|
let shouldInject = !deep;
|
|
8114
|
+
let hasNestedDeep = false;
|
|
8115
|
+
let splitForNestedDeep = false;
|
|
8113
8116
|
selector.each((n) => {
|
|
8114
8117
|
if (n.type === "combinator" && (n.value === ">>>" || n.value === "/deep/")) {
|
|
8115
8118
|
n.value = " ";
|
|
@@ -8121,6 +8124,49 @@ function rewriteSelector(id, rule, selector, selectorRoot, deep, slotted = false
|
|
|
8121
8124
|
}
|
|
8122
8125
|
if (n.type === "pseudo") {
|
|
8123
8126
|
const { value } = n;
|
|
8127
|
+
if (isDeepContainerPseudo(n)) {
|
|
8128
|
+
const hasDeepSelectors = n.nodes.some(
|
|
8129
|
+
(selector2) => selector2.some(isDeepSelector)
|
|
8130
|
+
);
|
|
8131
|
+
if (hasDeepSelectors) {
|
|
8132
|
+
const hasScopeAnchor = !!node;
|
|
8133
|
+
const hasMixedSelectors = n.nodes.some(
|
|
8134
|
+
(selector2) => !selector2.some(isDeepSelector)
|
|
8135
|
+
);
|
|
8136
|
+
const hasTrailingNodes = selector.index(n) < selector.length - 1;
|
|
8137
|
+
if (canSplitDeepContainerPseudo(n) && !deep && !hasScopeAnchor && hasMixedSelectors && hasTrailingNodes) {
|
|
8138
|
+
splitSelectorForNestedDeep(
|
|
8139
|
+
id,
|
|
8140
|
+
rule,
|
|
8141
|
+
selector,
|
|
8142
|
+
selectorRoot,
|
|
8143
|
+
n,
|
|
8144
|
+
deep,
|
|
8145
|
+
slotted
|
|
8146
|
+
);
|
|
8147
|
+
splitForNestedDeep = true;
|
|
8148
|
+
return false;
|
|
8149
|
+
}
|
|
8150
|
+
if (value === ":not" && !deep && !hasScopeAnchor && hasMixedSelectors && hasTrailingNodes) {
|
|
8151
|
+
return;
|
|
8152
|
+
}
|
|
8153
|
+
n.nodes.forEach(
|
|
8154
|
+
(selector2) => rewriteSelector(
|
|
8155
|
+
id,
|
|
8156
|
+
rule,
|
|
8157
|
+
selector2,
|
|
8158
|
+
selectorRoot,
|
|
8159
|
+
deep || hasScopeAnchor,
|
|
8160
|
+
slotted
|
|
8161
|
+
)
|
|
8162
|
+
);
|
|
8163
|
+
if (!hasScopeAnchor) {
|
|
8164
|
+
node = n;
|
|
8165
|
+
shouldInject = false;
|
|
8166
|
+
}
|
|
8167
|
+
hasNestedDeep = true;
|
|
8168
|
+
}
|
|
8169
|
+
}
|
|
8124
8170
|
if (value === ":deep" || value === "::v-deep") {
|
|
8125
8171
|
rule.__deep = true;
|
|
8126
8172
|
if (n.nodes.length) {
|
|
@@ -8195,10 +8241,13 @@ function rewriteSelector(id, rule, selector, selectorRoot, deep, slotted = false
|
|
|
8195
8241
|
}
|
|
8196
8242
|
if (node) return;
|
|
8197
8243
|
}
|
|
8198
|
-
if (n.type !== "pseudo" && n.type !== "combinator" || n.type === "pseudo" && (n.value === ":is" || n.value === ":where") && !node) {
|
|
8244
|
+
if (!hasNestedDeep && (n.type !== "pseudo" && n.type !== "combinator" || n.type === "pseudo" && (n.value === ":is" || n.value === ":where") && !node)) {
|
|
8199
8245
|
node = n;
|
|
8200
8246
|
}
|
|
8201
8247
|
});
|
|
8248
|
+
if (splitForNestedDeep) {
|
|
8249
|
+
return;
|
|
8250
|
+
}
|
|
8202
8251
|
if (rule.nodes.some((node2) => node2.type === "rule")) {
|
|
8203
8252
|
const deep2 = rule.__deep;
|
|
8204
8253
|
if (!deep2) {
|
|
@@ -8210,7 +8259,7 @@ function rewriteSelector(id, rule, selector, selectorRoot, deep, slotted = false
|
|
|
8210
8259
|
}
|
|
8211
8260
|
shouldInject = deep2;
|
|
8212
8261
|
}
|
|
8213
|
-
if (node) {
|
|
8262
|
+
if (node && !hasNestedDeep) {
|
|
8214
8263
|
const { type, value } = node;
|
|
8215
8264
|
if (type === "pseudo" && (value === ":is" || value === ":where")) {
|
|
8216
8265
|
node.nodes.forEach(
|
|
@@ -8242,6 +8291,38 @@ function rewriteSelector(id, rule, selector, selectorRoot, deep, slotted = false
|
|
|
8242
8291
|
function isSpaceCombinator(node) {
|
|
8243
8292
|
return node.type === "combinator" && /^\s+$/.test(node.value);
|
|
8244
8293
|
}
|
|
8294
|
+
function isDeepSelector(node) {
|
|
8295
|
+
var _a;
|
|
8296
|
+
if (node.type === "pseudo" && (node.value === ":deep" || node.value === "::v-deep")) {
|
|
8297
|
+
return true;
|
|
8298
|
+
}
|
|
8299
|
+
return !!((_a = node.nodes) == null ? void 0 : _a.some((child) => isDeepSelector(child)));
|
|
8300
|
+
}
|
|
8301
|
+
function isDeepContainerPseudo(node) {
|
|
8302
|
+
return node.type === "pseudo" && (node.value === ":is" || node.value === ":where" || node.value === ":has" || node.value === ":not");
|
|
8303
|
+
}
|
|
8304
|
+
function canSplitDeepContainerPseudo(node) {
|
|
8305
|
+
return node.value === ":is" || node.value === ":where" || node.value === ":has";
|
|
8306
|
+
}
|
|
8307
|
+
function splitSelectorForNestedDeep(id, rule, selector, selectorRoot, pseudo, deep, slotted) {
|
|
8308
|
+
const pseudoIndex = selector.index(pseudo);
|
|
8309
|
+
const selectors = pseudo.nodes.map((branch, index) => {
|
|
8310
|
+
const branchSelector = selector.clone();
|
|
8311
|
+
if (branchSelector.first) {
|
|
8312
|
+
branchSelector.first.spaces.before = index === 0 ? selector.first.spaces.before : " ";
|
|
8313
|
+
}
|
|
8314
|
+
const branchPseudo = branchSelector.at(pseudoIndex);
|
|
8315
|
+
const branchClone = branch.clone();
|
|
8316
|
+
if (branchClone.first) {
|
|
8317
|
+
branchClone.first.spaces.before = "";
|
|
8318
|
+
}
|
|
8319
|
+
branchPseudo.removeAll();
|
|
8320
|
+
branchPseudo.append(branchClone);
|
|
8321
|
+
rewriteSelector(id, rule, branchSelector, selectorRoot, deep, slotted);
|
|
8322
|
+
return branchSelector;
|
|
8323
|
+
});
|
|
8324
|
+
selector.replaceWith(...selectors);
|
|
8325
|
+
}
|
|
8245
8326
|
function extractAndWrapNodes(parentNode) {
|
|
8246
8327
|
if (!parentNode.nodes) return;
|
|
8247
8328
|
const nodes = parentNode.nodes.filter(
|
|
@@ -8502,7 +8583,7 @@ var hasRequiredUtil$1;
|
|
|
8502
8583
|
function requireUtil$1 () {
|
|
8503
8584
|
if (hasRequiredUtil$1) return util$1;
|
|
8504
8585
|
hasRequiredUtil$1 = 1;
|
|
8505
|
-
(function (exports
|
|
8586
|
+
(function (exports) {
|
|
8506
8587
|
/*
|
|
8507
8588
|
* Copyright 2011 Mozilla Foundation and contributors
|
|
8508
8589
|
* Licensed under the New BSD license. See LICENSE or:
|
|
@@ -8528,7 +8609,7 @@ function requireUtil$1 () {
|
|
|
8528
8609
|
throw new Error('"' + aName + '" is a required argument.');
|
|
8529
8610
|
}
|
|
8530
8611
|
}
|
|
8531
|
-
exports
|
|
8612
|
+
exports.getArg = getArg;
|
|
8532
8613
|
|
|
8533
8614
|
var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
|
|
8534
8615
|
var dataUrlRegexp = /^data:.+\,.+$/;
|
|
@@ -8546,7 +8627,7 @@ function requireUtil$1 () {
|
|
|
8546
8627
|
path: match[5]
|
|
8547
8628
|
};
|
|
8548
8629
|
}
|
|
8549
|
-
exports
|
|
8630
|
+
exports.urlParse = urlParse;
|
|
8550
8631
|
|
|
8551
8632
|
function urlGenerate(aParsedUrl) {
|
|
8552
8633
|
var url = '';
|
|
@@ -8568,7 +8649,7 @@ function requireUtil$1 () {
|
|
|
8568
8649
|
}
|
|
8569
8650
|
return url;
|
|
8570
8651
|
}
|
|
8571
|
-
exports
|
|
8652
|
+
exports.urlGenerate = urlGenerate;
|
|
8572
8653
|
|
|
8573
8654
|
/**
|
|
8574
8655
|
* Normalizes a path, or the path portion of a URL:
|
|
@@ -8590,7 +8671,7 @@ function requireUtil$1 () {
|
|
|
8590
8671
|
}
|
|
8591
8672
|
path = url.path;
|
|
8592
8673
|
}
|
|
8593
|
-
var isAbsolute = exports
|
|
8674
|
+
var isAbsolute = exports.isAbsolute(path);
|
|
8594
8675
|
|
|
8595
8676
|
var parts = path.split(/\/+/);
|
|
8596
8677
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
|
@@ -8624,7 +8705,7 @@ function requireUtil$1 () {
|
|
|
8624
8705
|
}
|
|
8625
8706
|
return path;
|
|
8626
8707
|
}
|
|
8627
|
-
exports
|
|
8708
|
+
exports.normalize = normalize;
|
|
8628
8709
|
|
|
8629
8710
|
/**
|
|
8630
8711
|
* Joins two paths/URLs.
|
|
@@ -8683,9 +8764,9 @@ function requireUtil$1 () {
|
|
|
8683
8764
|
}
|
|
8684
8765
|
return joined;
|
|
8685
8766
|
}
|
|
8686
|
-
exports
|
|
8767
|
+
exports.join = join;
|
|
8687
8768
|
|
|
8688
|
-
exports
|
|
8769
|
+
exports.isAbsolute = function (aPath) {
|
|
8689
8770
|
return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
|
|
8690
8771
|
};
|
|
8691
8772
|
|
|
@@ -8727,7 +8808,7 @@ function requireUtil$1 () {
|
|
|
8727
8808
|
// Make sure we add a "../" for each component we removed from the root.
|
|
8728
8809
|
return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
|
|
8729
8810
|
}
|
|
8730
|
-
exports
|
|
8811
|
+
exports.relative = relative;
|
|
8731
8812
|
|
|
8732
8813
|
var supportsNullProto = (function () {
|
|
8733
8814
|
var obj = Object.create(null);
|
|
@@ -8754,7 +8835,7 @@ function requireUtil$1 () {
|
|
|
8754
8835
|
|
|
8755
8836
|
return aStr;
|
|
8756
8837
|
}
|
|
8757
|
-
exports
|
|
8838
|
+
exports.toSetString = supportsNullProto ? identity : toSetString;
|
|
8758
8839
|
|
|
8759
8840
|
function fromSetString(aStr) {
|
|
8760
8841
|
if (isProtoString(aStr)) {
|
|
@@ -8763,7 +8844,7 @@ function requireUtil$1 () {
|
|
|
8763
8844
|
|
|
8764
8845
|
return aStr;
|
|
8765
8846
|
}
|
|
8766
|
-
exports
|
|
8847
|
+
exports.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
8767
8848
|
|
|
8768
8849
|
function isProtoString(s) {
|
|
8769
8850
|
if (!s) {
|
|
@@ -8833,7 +8914,7 @@ function requireUtil$1 () {
|
|
|
8833
8914
|
|
|
8834
8915
|
return strcmp(mappingA.name, mappingB.name);
|
|
8835
8916
|
}
|
|
8836
|
-
exports
|
|
8917
|
+
exports.compareByOriginalPositions = compareByOriginalPositions;
|
|
8837
8918
|
|
|
8838
8919
|
/**
|
|
8839
8920
|
* Comparator between two mappings with deflated source and name indices where
|
|
@@ -8872,7 +8953,7 @@ function requireUtil$1 () {
|
|
|
8872
8953
|
|
|
8873
8954
|
return strcmp(mappingA.name, mappingB.name);
|
|
8874
8955
|
}
|
|
8875
|
-
exports
|
|
8956
|
+
exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
8876
8957
|
|
|
8877
8958
|
function strcmp(aStr1, aStr2) {
|
|
8878
8959
|
if (aStr1 === aStr2) {
|
|
@@ -8926,7 +9007,7 @@ function requireUtil$1 () {
|
|
|
8926
9007
|
|
|
8927
9008
|
return strcmp(mappingA.name, mappingB.name);
|
|
8928
9009
|
}
|
|
8929
|
-
exports
|
|
9010
|
+
exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
8930
9011
|
|
|
8931
9012
|
/**
|
|
8932
9013
|
* Strip any JSON XSSI avoidance prefix from the string (as documented
|
|
@@ -8936,7 +9017,7 @@ function requireUtil$1 () {
|
|
|
8936
9017
|
function parseSourceMapInput(str) {
|
|
8937
9018
|
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
|
|
8938
9019
|
}
|
|
8939
|
-
exports
|
|
9020
|
+
exports.parseSourceMapInput = parseSourceMapInput;
|
|
8940
9021
|
|
|
8941
9022
|
/**
|
|
8942
9023
|
* Compute the URL of a source given the the source root, the source's
|
|
@@ -8989,7 +9070,7 @@ function requireUtil$1 () {
|
|
|
8989
9070
|
|
|
8990
9071
|
return normalize(sourceURL);
|
|
8991
9072
|
}
|
|
8992
|
-
exports
|
|
9073
|
+
exports.computeSourceURL = computeSourceURL;
|
|
8993
9074
|
} (util$1));
|
|
8994
9075
|
return util$1;
|
|
8995
9076
|
}
|
|
@@ -9661,15 +9742,15 @@ var hasRequiredBinarySearch;
|
|
|
9661
9742
|
function requireBinarySearch () {
|
|
9662
9743
|
if (hasRequiredBinarySearch) return binarySearch;
|
|
9663
9744
|
hasRequiredBinarySearch = 1;
|
|
9664
|
-
(function (exports
|
|
9745
|
+
(function (exports) {
|
|
9665
9746
|
/*
|
|
9666
9747
|
* Copyright 2011 Mozilla Foundation and contributors
|
|
9667
9748
|
* Licensed under the New BSD license. See LICENSE or:
|
|
9668
9749
|
* http://opensource.org/licenses/BSD-3-Clause
|
|
9669
9750
|
*/
|
|
9670
9751
|
|
|
9671
|
-
exports
|
|
9672
|
-
exports
|
|
9752
|
+
exports.GREATEST_LOWER_BOUND = 1;
|
|
9753
|
+
exports.LEAST_UPPER_BOUND = 2;
|
|
9673
9754
|
|
|
9674
9755
|
/**
|
|
9675
9756
|
* Recursive implementation of binary search.
|
|
@@ -9709,7 +9790,7 @@ function requireBinarySearch () {
|
|
|
9709
9790
|
|
|
9710
9791
|
// The exact needle element was not found in this haystack. Determine if
|
|
9711
9792
|
// we are in termination case (3) or (2) and return the appropriate thing.
|
|
9712
|
-
if (aBias == exports
|
|
9793
|
+
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
9713
9794
|
return aHigh < aHaystack.length ? aHigh : -1;
|
|
9714
9795
|
} else {
|
|
9715
9796
|
return mid;
|
|
@@ -9723,7 +9804,7 @@ function requireBinarySearch () {
|
|
|
9723
9804
|
}
|
|
9724
9805
|
|
|
9725
9806
|
// we are in termination case (3) or (2) and return the appropriate thing.
|
|
9726
|
-
if (aBias == exports
|
|
9807
|
+
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
9727
9808
|
return mid;
|
|
9728
9809
|
} else {
|
|
9729
9810
|
return aLow < 0 ? -1 : aLow;
|
|
@@ -9749,13 +9830,13 @@ function requireBinarySearch () {
|
|
|
9749
9830
|
* searching for, respectively, if the exact element cannot be found.
|
|
9750
9831
|
* Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.
|
|
9751
9832
|
*/
|
|
9752
|
-
exports
|
|
9833
|
+
exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
9753
9834
|
if (aHaystack.length === 0) {
|
|
9754
9835
|
return -1;
|
|
9755
9836
|
}
|
|
9756
9837
|
|
|
9757
9838
|
var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,
|
|
9758
|
-
aCompare, aBias || exports
|
|
9839
|
+
aCompare, aBias || exports.GREATEST_LOWER_BOUND);
|
|
9759
9840
|
if (index < 0) {
|
|
9760
9841
|
return -1;
|
|
9761
9842
|
}
|
|
@@ -11942,11 +12023,11 @@ function requireCreateICSSRules () {
|
|
|
11942
12023
|
});
|
|
11943
12024
|
};
|
|
11944
12025
|
|
|
11945
|
-
const createExports = (exports
|
|
11946
|
-
const declarations = Object.keys(exports
|
|
12026
|
+
const createExports = (exports, postcss, mode = "rule") => {
|
|
12027
|
+
const declarations = Object.keys(exports).map((key) =>
|
|
11947
12028
|
postcss.decl({
|
|
11948
12029
|
prop: key,
|
|
11949
|
-
value: exports
|
|
12030
|
+
value: exports[key],
|
|
11950
12031
|
raws: { before: "\n " },
|
|
11951
12032
|
})
|
|
11952
12033
|
);
|
|
@@ -11970,9 +12051,9 @@ function requireCreateICSSRules () {
|
|
|
11970
12051
|
return [rule];
|
|
11971
12052
|
};
|
|
11972
12053
|
|
|
11973
|
-
const createICSSRules = (imports, exports
|
|
12054
|
+
const createICSSRules = (imports, exports, postcss, mode) => [
|
|
11974
12055
|
...createImports(imports, postcss, mode),
|
|
11975
|
-
...createExports(exports
|
|
12056
|
+
...createExports(exports, postcss, mode),
|
|
11976
12057
|
];
|
|
11977
12058
|
|
|
11978
12059
|
createICSSRules_1 = createICSSRules;
|
|
@@ -12073,12 +12154,12 @@ function requireParser$1 () {
|
|
|
12073
12154
|
async fetchImport(importNode, relativeTo, depNr) {
|
|
12074
12155
|
const file = importNode.selector.match(importRegexp)[1];
|
|
12075
12156
|
const depTrace = this.trace + String.fromCharCode(depNr);
|
|
12076
|
-
const exports
|
|
12157
|
+
const exports = await this.pathFetcher(file, relativeTo, depTrace);
|
|
12077
12158
|
|
|
12078
12159
|
try {
|
|
12079
12160
|
importNode.each(decl => {
|
|
12080
12161
|
if (decl.type == "decl") {
|
|
12081
|
-
this.translations[decl.prop] = exports
|
|
12162
|
+
this.translations[decl.prop] = exports[decl.value];
|
|
12082
12163
|
}
|
|
12083
12164
|
});
|
|
12084
12165
|
importNode.remove();
|
|
@@ -13249,12 +13330,12 @@ function requireWasmHash () {
|
|
|
13249
13330
|
* @param {number} digestSize size of digest returned by wasm
|
|
13250
13331
|
*/
|
|
13251
13332
|
constructor(instance, instancesPool, chunkSize, digestSize) {
|
|
13252
|
-
const exports
|
|
13333
|
+
const exports = /** @type {any} */ (instance.exports);
|
|
13253
13334
|
|
|
13254
|
-
exports
|
|
13335
|
+
exports.init();
|
|
13255
13336
|
|
|
13256
|
-
this.exports = exports
|
|
13257
|
-
this.mem = Buffer.from(exports
|
|
13337
|
+
this.exports = exports;
|
|
13338
|
+
this.mem = Buffer.from(exports.memory.buffer, 0, 65536);
|
|
13258
13339
|
this.buffered = 0;
|
|
13259
13340
|
this.instancesPool = instancesPool;
|
|
13260
13341
|
this.chunkSize = chunkSize;
|
|
@@ -13294,7 +13375,7 @@ function requireWasmHash () {
|
|
|
13294
13375
|
* @returns {void}
|
|
13295
13376
|
*/
|
|
13296
13377
|
_updateWithShortString(data, encoding) {
|
|
13297
|
-
const { exports
|
|
13378
|
+
const { exports, buffered, mem, chunkSize } = this;
|
|
13298
13379
|
|
|
13299
13380
|
let endPos;
|
|
13300
13381
|
|
|
@@ -13336,7 +13417,7 @@ function requireWasmHash () {
|
|
|
13336
13417
|
} else {
|
|
13337
13418
|
const l = endPos & ~(this.chunkSize - 1);
|
|
13338
13419
|
|
|
13339
|
-
exports
|
|
13420
|
+
exports.update(l);
|
|
13340
13421
|
|
|
13341
13422
|
const newBuffered = endPos - l;
|
|
13342
13423
|
|
|
@@ -13353,7 +13434,7 @@ function requireWasmHash () {
|
|
|
13353
13434
|
* @returns {void}
|
|
13354
13435
|
*/
|
|
13355
13436
|
_updateWithBuffer(data) {
|
|
13356
|
-
const { exports
|
|
13437
|
+
const { exports, buffered, mem } = this;
|
|
13357
13438
|
const length = data.length;
|
|
13358
13439
|
|
|
13359
13440
|
if (buffered + length < this.chunkSize) {
|
|
@@ -13367,23 +13448,23 @@ function requireWasmHash () {
|
|
|
13367
13448
|
let i = 65536 - buffered;
|
|
13368
13449
|
|
|
13369
13450
|
data.copy(mem, buffered, 0, i);
|
|
13370
|
-
exports
|
|
13451
|
+
exports.update(65536);
|
|
13371
13452
|
|
|
13372
13453
|
const stop = l - buffered - 65536;
|
|
13373
13454
|
|
|
13374
13455
|
while (i < stop) {
|
|
13375
13456
|
data.copy(mem, 0, i, i + 65536);
|
|
13376
|
-
exports
|
|
13457
|
+
exports.update(65536);
|
|
13377
13458
|
i += 65536;
|
|
13378
13459
|
}
|
|
13379
13460
|
|
|
13380
13461
|
data.copy(mem, 0, i, l - buffered);
|
|
13381
13462
|
|
|
13382
|
-
exports
|
|
13463
|
+
exports.update(l - buffered - i);
|
|
13383
13464
|
} else {
|
|
13384
13465
|
data.copy(mem, buffered, 0, l - buffered);
|
|
13385
13466
|
|
|
13386
|
-
exports
|
|
13467
|
+
exports.update(l);
|
|
13387
13468
|
}
|
|
13388
13469
|
|
|
13389
13470
|
const newBuffered = length + buffered - l;
|
|
@@ -13397,9 +13478,9 @@ function requireWasmHash () {
|
|
|
13397
13478
|
}
|
|
13398
13479
|
|
|
13399
13480
|
digest(type) {
|
|
13400
|
-
const { exports
|
|
13481
|
+
const { exports, buffered, mem, digestSize } = this;
|
|
13401
13482
|
|
|
13402
|
-
exports
|
|
13483
|
+
exports.final(buffered);
|
|
13403
13484
|
|
|
13404
13485
|
this.instancesPool.push(this);
|
|
13405
13486
|
|
|
@@ -14031,10 +14112,10 @@ var hasRequiredUnesc;
|
|
|
14031
14112
|
function requireUnesc () {
|
|
14032
14113
|
if (hasRequiredUnesc) return unesc.exports;
|
|
14033
14114
|
hasRequiredUnesc = 1;
|
|
14034
|
-
(function (module, exports
|
|
14115
|
+
(function (module, exports) {
|
|
14035
14116
|
|
|
14036
|
-
exports
|
|
14037
|
-
exports
|
|
14117
|
+
exports.__esModule = true;
|
|
14118
|
+
exports["default"] = unesc;
|
|
14038
14119
|
// Many thanks for this post which made this migration much easier.
|
|
14039
14120
|
// https://mathiasbynens.be/notes/css-escapes
|
|
14040
14121
|
|
|
@@ -14106,7 +14187,7 @@ function requireUnesc () {
|
|
|
14106
14187
|
}
|
|
14107
14188
|
return ret;
|
|
14108
14189
|
}
|
|
14109
|
-
module.exports = exports
|
|
14190
|
+
module.exports = exports.default;
|
|
14110
14191
|
} (unesc, unesc.exports));
|
|
14111
14192
|
return unesc.exports;
|
|
14112
14193
|
}
|
|
@@ -14118,10 +14199,10 @@ var hasRequiredGetProp;
|
|
|
14118
14199
|
function requireGetProp () {
|
|
14119
14200
|
if (hasRequiredGetProp) return getProp.exports;
|
|
14120
14201
|
hasRequiredGetProp = 1;
|
|
14121
|
-
(function (module, exports
|
|
14202
|
+
(function (module, exports) {
|
|
14122
14203
|
|
|
14123
|
-
exports
|
|
14124
|
-
exports
|
|
14204
|
+
exports.__esModule = true;
|
|
14205
|
+
exports["default"] = getProp;
|
|
14125
14206
|
function getProp(obj) {
|
|
14126
14207
|
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
14127
14208
|
props[_key - 1] = arguments[_key];
|
|
@@ -14135,7 +14216,7 @@ function requireGetProp () {
|
|
|
14135
14216
|
}
|
|
14136
14217
|
return obj;
|
|
14137
14218
|
}
|
|
14138
|
-
module.exports = exports
|
|
14219
|
+
module.exports = exports.default;
|
|
14139
14220
|
} (getProp, getProp.exports));
|
|
14140
14221
|
return getProp.exports;
|
|
14141
14222
|
}
|
|
@@ -14147,10 +14228,10 @@ var hasRequiredEnsureObject;
|
|
|
14147
14228
|
function requireEnsureObject () {
|
|
14148
14229
|
if (hasRequiredEnsureObject) return ensureObject.exports;
|
|
14149
14230
|
hasRequiredEnsureObject = 1;
|
|
14150
|
-
(function (module, exports
|
|
14231
|
+
(function (module, exports) {
|
|
14151
14232
|
|
|
14152
|
-
exports
|
|
14153
|
-
exports
|
|
14233
|
+
exports.__esModule = true;
|
|
14234
|
+
exports["default"] = ensureObject;
|
|
14154
14235
|
function ensureObject(obj) {
|
|
14155
14236
|
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
14156
14237
|
props[_key - 1] = arguments[_key];
|
|
@@ -14163,7 +14244,7 @@ function requireEnsureObject () {
|
|
|
14163
14244
|
obj = obj[prop];
|
|
14164
14245
|
}
|
|
14165
14246
|
}
|
|
14166
|
-
module.exports = exports
|
|
14247
|
+
module.exports = exports.default;
|
|
14167
14248
|
} (ensureObject, ensureObject.exports));
|
|
14168
14249
|
return ensureObject.exports;
|
|
14169
14250
|
}
|
|
@@ -14175,10 +14256,10 @@ var hasRequiredStripComments;
|
|
|
14175
14256
|
function requireStripComments () {
|
|
14176
14257
|
if (hasRequiredStripComments) return stripComments.exports;
|
|
14177
14258
|
hasRequiredStripComments = 1;
|
|
14178
|
-
(function (module, exports
|
|
14259
|
+
(function (module, exports) {
|
|
14179
14260
|
|
|
14180
|
-
exports
|
|
14181
|
-
exports
|
|
14261
|
+
exports.__esModule = true;
|
|
14262
|
+
exports["default"] = stripComments;
|
|
14182
14263
|
function stripComments(str) {
|
|
14183
14264
|
var s = "";
|
|
14184
14265
|
var commentStart = str.indexOf("/*");
|
|
@@ -14195,7 +14276,7 @@ function requireStripComments () {
|
|
|
14195
14276
|
s = s + str.slice(lastEnd);
|
|
14196
14277
|
return s;
|
|
14197
14278
|
}
|
|
14198
|
-
module.exports = exports
|
|
14279
|
+
module.exports = exports.default;
|
|
14199
14280
|
} (stripComments, stripComments.exports));
|
|
14200
14281
|
return stripComments.exports;
|
|
14201
14282
|
}
|
|
@@ -14225,10 +14306,10 @@ var hasRequiredNode;
|
|
|
14225
14306
|
function requireNode () {
|
|
14226
14307
|
if (hasRequiredNode) return node.exports;
|
|
14227
14308
|
hasRequiredNode = 1;
|
|
14228
|
-
(function (module, exports
|
|
14309
|
+
(function (module, exports) {
|
|
14229
14310
|
|
|
14230
|
-
exports
|
|
14231
|
-
exports
|
|
14311
|
+
exports.__esModule = true;
|
|
14312
|
+
exports["default"] = void 0;
|
|
14232
14313
|
var _util = /*@__PURE__*/ requireUtil();
|
|
14233
14314
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
14234
14315
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
@@ -14415,8 +14496,8 @@ function requireNode () {
|
|
|
14415
14496
|
}]);
|
|
14416
14497
|
return Node;
|
|
14417
14498
|
}();
|
|
14418
|
-
exports
|
|
14419
|
-
module.exports = exports
|
|
14499
|
+
exports["default"] = Node;
|
|
14500
|
+
module.exports = exports.default;
|
|
14420
14501
|
} (node, node.exports));
|
|
14421
14502
|
return node.exports;
|
|
14422
14503
|
}
|
|
@@ -14463,10 +14544,10 @@ var hasRequiredContainer;
|
|
|
14463
14544
|
function requireContainer () {
|
|
14464
14545
|
if (hasRequiredContainer) return container.exports;
|
|
14465
14546
|
hasRequiredContainer = 1;
|
|
14466
|
-
(function (module, exports
|
|
14547
|
+
(function (module, exports) {
|
|
14467
14548
|
|
|
14468
|
-
exports
|
|
14469
|
-
exports
|
|
14549
|
+
exports.__esModule = true;
|
|
14550
|
+
exports["default"] = void 0;
|
|
14470
14551
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
14471
14552
|
var types = _interopRequireWildcard(/*@__PURE__*/ requireTypes());
|
|
14472
14553
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -14769,8 +14850,8 @@ function requireContainer () {
|
|
|
14769
14850
|
}]);
|
|
14770
14851
|
return Container;
|
|
14771
14852
|
}(_node["default"]);
|
|
14772
|
-
exports
|
|
14773
|
-
module.exports = exports
|
|
14853
|
+
exports["default"] = Container;
|
|
14854
|
+
module.exports = exports.default;
|
|
14774
14855
|
} (container, container.exports));
|
|
14775
14856
|
return container.exports;
|
|
14776
14857
|
}
|
|
@@ -14780,10 +14861,10 @@ var hasRequiredRoot;
|
|
|
14780
14861
|
function requireRoot () {
|
|
14781
14862
|
if (hasRequiredRoot) return root.exports;
|
|
14782
14863
|
hasRequiredRoot = 1;
|
|
14783
|
-
(function (module, exports
|
|
14864
|
+
(function (module, exports) {
|
|
14784
14865
|
|
|
14785
|
-
exports
|
|
14786
|
-
exports
|
|
14866
|
+
exports.__esModule = true;
|
|
14867
|
+
exports["default"] = void 0;
|
|
14787
14868
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer());
|
|
14788
14869
|
var _types = /*@__PURE__*/ requireTypes();
|
|
14789
14870
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -14822,8 +14903,8 @@ function requireRoot () {
|
|
|
14822
14903
|
}]);
|
|
14823
14904
|
return Root;
|
|
14824
14905
|
}(_container["default"]);
|
|
14825
|
-
exports
|
|
14826
|
-
module.exports = exports
|
|
14906
|
+
exports["default"] = Root;
|
|
14907
|
+
module.exports = exports.default;
|
|
14827
14908
|
} (root, root.exports));
|
|
14828
14909
|
return root.exports;
|
|
14829
14910
|
}
|
|
@@ -14835,10 +14916,10 @@ var hasRequiredSelector;
|
|
|
14835
14916
|
function requireSelector () {
|
|
14836
14917
|
if (hasRequiredSelector) return selector.exports;
|
|
14837
14918
|
hasRequiredSelector = 1;
|
|
14838
|
-
(function (module, exports
|
|
14919
|
+
(function (module, exports) {
|
|
14839
14920
|
|
|
14840
|
-
exports
|
|
14841
|
-
exports
|
|
14921
|
+
exports.__esModule = true;
|
|
14922
|
+
exports["default"] = void 0;
|
|
14842
14923
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer());
|
|
14843
14924
|
var _types = /*@__PURE__*/ requireTypes();
|
|
14844
14925
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -14854,8 +14935,8 @@ function requireSelector () {
|
|
|
14854
14935
|
}
|
|
14855
14936
|
return Selector;
|
|
14856
14937
|
}(_container["default"]);
|
|
14857
|
-
exports
|
|
14858
|
-
module.exports = exports
|
|
14938
|
+
exports["default"] = Selector;
|
|
14939
|
+
module.exports = exports.default;
|
|
14859
14940
|
} (selector, selector.exports));
|
|
14860
14941
|
return selector.exports;
|
|
14861
14942
|
}
|
|
@@ -14867,10 +14948,10 @@ var hasRequiredClassName;
|
|
|
14867
14948
|
function requireClassName () {
|
|
14868
14949
|
if (hasRequiredClassName) return className.exports;
|
|
14869
14950
|
hasRequiredClassName = 1;
|
|
14870
|
-
(function (module, exports
|
|
14951
|
+
(function (module, exports) {
|
|
14871
14952
|
|
|
14872
|
-
exports
|
|
14873
|
-
exports
|
|
14953
|
+
exports.__esModule = true;
|
|
14954
|
+
exports["default"] = void 0;
|
|
14874
14955
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
14875
14956
|
var _util = /*@__PURE__*/ requireUtil();
|
|
14876
14957
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
@@ -14915,8 +14996,8 @@ function requireClassName () {
|
|
|
14915
14996
|
}]);
|
|
14916
14997
|
return ClassName;
|
|
14917
14998
|
}(_node["default"]);
|
|
14918
|
-
exports
|
|
14919
|
-
module.exports = exports
|
|
14999
|
+
exports["default"] = ClassName;
|
|
15000
|
+
module.exports = exports.default;
|
|
14920
15001
|
} (className, className.exports));
|
|
14921
15002
|
return className.exports;
|
|
14922
15003
|
}
|
|
@@ -14928,10 +15009,10 @@ var hasRequiredComment;
|
|
|
14928
15009
|
function requireComment () {
|
|
14929
15010
|
if (hasRequiredComment) return comment.exports;
|
|
14930
15011
|
hasRequiredComment = 1;
|
|
14931
|
-
(function (module, exports
|
|
15012
|
+
(function (module, exports) {
|
|
14932
15013
|
|
|
14933
|
-
exports
|
|
14934
|
-
exports
|
|
15014
|
+
exports.__esModule = true;
|
|
15015
|
+
exports["default"] = void 0;
|
|
14935
15016
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
14936
15017
|
var _types = /*@__PURE__*/ requireTypes();
|
|
14937
15018
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -14947,8 +15028,8 @@ function requireComment () {
|
|
|
14947
15028
|
}
|
|
14948
15029
|
return Comment;
|
|
14949
15030
|
}(_node["default"]);
|
|
14950
|
-
exports
|
|
14951
|
-
module.exports = exports
|
|
15031
|
+
exports["default"] = Comment;
|
|
15032
|
+
module.exports = exports.default;
|
|
14952
15033
|
} (comment, comment.exports));
|
|
14953
15034
|
return comment.exports;
|
|
14954
15035
|
}
|
|
@@ -14960,10 +15041,10 @@ var hasRequiredId;
|
|
|
14960
15041
|
function requireId () {
|
|
14961
15042
|
if (hasRequiredId) return id.exports;
|
|
14962
15043
|
hasRequiredId = 1;
|
|
14963
|
-
(function (module, exports
|
|
15044
|
+
(function (module, exports) {
|
|
14964
15045
|
|
|
14965
|
-
exports
|
|
14966
|
-
exports
|
|
15046
|
+
exports.__esModule = true;
|
|
15047
|
+
exports["default"] = void 0;
|
|
14967
15048
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
14968
15049
|
var _types = /*@__PURE__*/ requireTypes();
|
|
14969
15050
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -14983,8 +15064,8 @@ function requireId () {
|
|
|
14983
15064
|
};
|
|
14984
15065
|
return ID;
|
|
14985
15066
|
}(_node["default"]);
|
|
14986
|
-
exports
|
|
14987
|
-
module.exports = exports
|
|
15067
|
+
exports["default"] = ID;
|
|
15068
|
+
module.exports = exports.default;
|
|
14988
15069
|
} (id, id.exports));
|
|
14989
15070
|
return id.exports;
|
|
14990
15071
|
}
|
|
@@ -14998,10 +15079,10 @@ var hasRequiredNamespace;
|
|
|
14998
15079
|
function requireNamespace () {
|
|
14999
15080
|
if (hasRequiredNamespace) return namespace.exports;
|
|
15000
15081
|
hasRequiredNamespace = 1;
|
|
15001
|
-
(function (module, exports
|
|
15082
|
+
(function (module, exports) {
|
|
15002
15083
|
|
|
15003
|
-
exports
|
|
15004
|
-
exports
|
|
15084
|
+
exports.__esModule = true;
|
|
15085
|
+
exports["default"] = void 0;
|
|
15005
15086
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
15006
15087
|
var _util = /*@__PURE__*/ requireUtil();
|
|
15007
15088
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
@@ -15075,8 +15156,8 @@ function requireNamespace () {
|
|
|
15075
15156
|
}]);
|
|
15076
15157
|
return Namespace;
|
|
15077
15158
|
}(_node["default"]);
|
|
15078
|
-
exports
|
|
15079
|
-
module.exports = exports
|
|
15159
|
+
exports["default"] = Namespace;
|
|
15160
|
+
module.exports = exports.default;
|
|
15080
15161
|
} (namespace, namespace.exports));
|
|
15081
15162
|
return namespace.exports;
|
|
15082
15163
|
}
|
|
@@ -15086,10 +15167,10 @@ var hasRequiredTag;
|
|
|
15086
15167
|
function requireTag () {
|
|
15087
15168
|
if (hasRequiredTag) return tag.exports;
|
|
15088
15169
|
hasRequiredTag = 1;
|
|
15089
|
-
(function (module, exports
|
|
15170
|
+
(function (module, exports) {
|
|
15090
15171
|
|
|
15091
|
-
exports
|
|
15092
|
-
exports
|
|
15172
|
+
exports.__esModule = true;
|
|
15173
|
+
exports["default"] = void 0;
|
|
15093
15174
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace());
|
|
15094
15175
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15095
15176
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15105,8 +15186,8 @@ function requireTag () {
|
|
|
15105
15186
|
}
|
|
15106
15187
|
return Tag;
|
|
15107
15188
|
}(_namespace["default"]);
|
|
15108
|
-
exports
|
|
15109
|
-
module.exports = exports
|
|
15189
|
+
exports["default"] = Tag;
|
|
15190
|
+
module.exports = exports.default;
|
|
15110
15191
|
} (tag, tag.exports));
|
|
15111
15192
|
return tag.exports;
|
|
15112
15193
|
}
|
|
@@ -15118,10 +15199,10 @@ var hasRequiredString;
|
|
|
15118
15199
|
function requireString () {
|
|
15119
15200
|
if (hasRequiredString) return string.exports;
|
|
15120
15201
|
hasRequiredString = 1;
|
|
15121
|
-
(function (module, exports
|
|
15202
|
+
(function (module, exports) {
|
|
15122
15203
|
|
|
15123
|
-
exports
|
|
15124
|
-
exports
|
|
15204
|
+
exports.__esModule = true;
|
|
15205
|
+
exports["default"] = void 0;
|
|
15125
15206
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
15126
15207
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15127
15208
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15137,8 +15218,8 @@ function requireString () {
|
|
|
15137
15218
|
}
|
|
15138
15219
|
return String;
|
|
15139
15220
|
}(_node["default"]);
|
|
15140
|
-
exports
|
|
15141
|
-
module.exports = exports
|
|
15221
|
+
exports["default"] = String;
|
|
15222
|
+
module.exports = exports.default;
|
|
15142
15223
|
} (string, string.exports));
|
|
15143
15224
|
return string.exports;
|
|
15144
15225
|
}
|
|
@@ -15150,10 +15231,10 @@ var hasRequiredPseudo;
|
|
|
15150
15231
|
function requirePseudo () {
|
|
15151
15232
|
if (hasRequiredPseudo) return pseudo.exports;
|
|
15152
15233
|
hasRequiredPseudo = 1;
|
|
15153
|
-
(function (module, exports
|
|
15234
|
+
(function (module, exports) {
|
|
15154
15235
|
|
|
15155
|
-
exports
|
|
15156
|
-
exports
|
|
15236
|
+
exports.__esModule = true;
|
|
15237
|
+
exports["default"] = void 0;
|
|
15157
15238
|
var _container = _interopRequireDefault(/*@__PURE__*/ requireContainer());
|
|
15158
15239
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15159
15240
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15174,8 +15255,8 @@ function requirePseudo () {
|
|
|
15174
15255
|
};
|
|
15175
15256
|
return Pseudo;
|
|
15176
15257
|
}(_container["default"]);
|
|
15177
|
-
exports
|
|
15178
|
-
module.exports = exports
|
|
15258
|
+
exports["default"] = Pseudo;
|
|
15259
|
+
module.exports = exports.default;
|
|
15179
15260
|
} (pseudo, pseudo.exports));
|
|
15180
15261
|
return pseudo.exports;
|
|
15181
15262
|
}
|
|
@@ -15187,11 +15268,11 @@ var hasRequiredAttribute;
|
|
|
15187
15268
|
function requireAttribute () {
|
|
15188
15269
|
if (hasRequiredAttribute) return attribute;
|
|
15189
15270
|
hasRequiredAttribute = 1;
|
|
15190
|
-
(function (exports
|
|
15271
|
+
(function (exports) {
|
|
15191
15272
|
|
|
15192
|
-
exports
|
|
15193
|
-
exports
|
|
15194
|
-
exports
|
|
15273
|
+
exports.__esModule = true;
|
|
15274
|
+
exports["default"] = void 0;
|
|
15275
|
+
exports.unescapeValue = unescapeValue;
|
|
15195
15276
|
var _cssesc = _interopRequireDefault(/*@__PURE__*/ requireCssesc());
|
|
15196
15277
|
var _unesc = _interopRequireDefault(/*@__PURE__*/ requireUnesc());
|
|
15197
15278
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace());
|
|
@@ -15616,7 +15697,7 @@ function requireAttribute () {
|
|
|
15616
15697
|
}]);
|
|
15617
15698
|
return Attribute;
|
|
15618
15699
|
}(_namespace["default"]);
|
|
15619
|
-
exports
|
|
15700
|
+
exports["default"] = Attribute;
|
|
15620
15701
|
Attribute.NO_QUOTE = null;
|
|
15621
15702
|
Attribute.SINGLE_QUOTE = "'";
|
|
15622
15703
|
Attribute.DOUBLE_QUOTE = '"';
|
|
@@ -15646,10 +15727,10 @@ var hasRequiredUniversal;
|
|
|
15646
15727
|
function requireUniversal () {
|
|
15647
15728
|
if (hasRequiredUniversal) return universal.exports;
|
|
15648
15729
|
hasRequiredUniversal = 1;
|
|
15649
|
-
(function (module, exports
|
|
15730
|
+
(function (module, exports) {
|
|
15650
15731
|
|
|
15651
|
-
exports
|
|
15652
|
-
exports
|
|
15732
|
+
exports.__esModule = true;
|
|
15733
|
+
exports["default"] = void 0;
|
|
15653
15734
|
var _namespace = _interopRequireDefault(/*@__PURE__*/ requireNamespace());
|
|
15654
15735
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15655
15736
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15666,8 +15747,8 @@ function requireUniversal () {
|
|
|
15666
15747
|
}
|
|
15667
15748
|
return Universal;
|
|
15668
15749
|
}(_namespace["default"]);
|
|
15669
|
-
exports
|
|
15670
|
-
module.exports = exports
|
|
15750
|
+
exports["default"] = Universal;
|
|
15751
|
+
module.exports = exports.default;
|
|
15671
15752
|
} (universal, universal.exports));
|
|
15672
15753
|
return universal.exports;
|
|
15673
15754
|
}
|
|
@@ -15679,10 +15760,10 @@ var hasRequiredCombinator;
|
|
|
15679
15760
|
function requireCombinator () {
|
|
15680
15761
|
if (hasRequiredCombinator) return combinator.exports;
|
|
15681
15762
|
hasRequiredCombinator = 1;
|
|
15682
|
-
(function (module, exports
|
|
15763
|
+
(function (module, exports) {
|
|
15683
15764
|
|
|
15684
|
-
exports
|
|
15685
|
-
exports
|
|
15765
|
+
exports.__esModule = true;
|
|
15766
|
+
exports["default"] = void 0;
|
|
15686
15767
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
15687
15768
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15688
15769
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15698,8 +15779,8 @@ function requireCombinator () {
|
|
|
15698
15779
|
}
|
|
15699
15780
|
return Combinator;
|
|
15700
15781
|
}(_node["default"]);
|
|
15701
|
-
exports
|
|
15702
|
-
module.exports = exports
|
|
15782
|
+
exports["default"] = Combinator;
|
|
15783
|
+
module.exports = exports.default;
|
|
15703
15784
|
} (combinator, combinator.exports));
|
|
15704
15785
|
return combinator.exports;
|
|
15705
15786
|
}
|
|
@@ -15711,10 +15792,10 @@ var hasRequiredNesting;
|
|
|
15711
15792
|
function requireNesting () {
|
|
15712
15793
|
if (hasRequiredNesting) return nesting.exports;
|
|
15713
15794
|
hasRequiredNesting = 1;
|
|
15714
|
-
(function (module, exports
|
|
15795
|
+
(function (module, exports) {
|
|
15715
15796
|
|
|
15716
|
-
exports
|
|
15717
|
-
exports
|
|
15797
|
+
exports.__esModule = true;
|
|
15798
|
+
exports["default"] = void 0;
|
|
15718
15799
|
var _node = _interopRequireDefault(/*@__PURE__*/ requireNode());
|
|
15719
15800
|
var _types = /*@__PURE__*/ requireTypes();
|
|
15720
15801
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -15731,8 +15812,8 @@ function requireNesting () {
|
|
|
15731
15812
|
}
|
|
15732
15813
|
return Nesting;
|
|
15733
15814
|
}(_node["default"]);
|
|
15734
|
-
exports
|
|
15735
|
-
module.exports = exports
|
|
15815
|
+
exports["default"] = Nesting;
|
|
15816
|
+
module.exports = exports.default;
|
|
15736
15817
|
} (nesting, nesting.exports));
|
|
15737
15818
|
return nesting.exports;
|
|
15738
15819
|
}
|
|
@@ -15744,16 +15825,16 @@ var hasRequiredSortAscending;
|
|
|
15744
15825
|
function requireSortAscending () {
|
|
15745
15826
|
if (hasRequiredSortAscending) return sortAscending.exports;
|
|
15746
15827
|
hasRequiredSortAscending = 1;
|
|
15747
|
-
(function (module, exports
|
|
15828
|
+
(function (module, exports) {
|
|
15748
15829
|
|
|
15749
|
-
exports
|
|
15750
|
-
exports
|
|
15830
|
+
exports.__esModule = true;
|
|
15831
|
+
exports["default"] = sortAscending;
|
|
15751
15832
|
function sortAscending(list) {
|
|
15752
15833
|
return list.sort(function (a, b) {
|
|
15753
15834
|
return a - b;
|
|
15754
15835
|
});
|
|
15755
15836
|
}
|
|
15756
|
-
module.exports = exports
|
|
15837
|
+
module.exports = exports.default;
|
|
15757
15838
|
} (sortAscending, sortAscending.exports));
|
|
15758
15839
|
return sortAscending.exports;
|
|
15759
15840
|
}
|
|
@@ -15844,11 +15925,11 @@ var hasRequiredTokenize;
|
|
|
15844
15925
|
function requireTokenize () {
|
|
15845
15926
|
if (hasRequiredTokenize) return tokenize;
|
|
15846
15927
|
hasRequiredTokenize = 1;
|
|
15847
|
-
(function (exports
|
|
15928
|
+
(function (exports) {
|
|
15848
15929
|
|
|
15849
|
-
exports
|
|
15850
|
-
exports
|
|
15851
|
-
exports
|
|
15930
|
+
exports.__esModule = true;
|
|
15931
|
+
exports.FIELDS = void 0;
|
|
15932
|
+
exports["default"] = tokenize;
|
|
15852
15933
|
var t = _interopRequireWildcard(/*@__PURE__*/ requireTokenTypes());
|
|
15853
15934
|
var _unescapable, _wordDelimiters;
|
|
15854
15935
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -15918,7 +15999,7 @@ function requireTokenize () {
|
|
|
15918
15999
|
START_POS: 5,
|
|
15919
16000
|
END_POS: 6
|
|
15920
16001
|
};
|
|
15921
|
-
exports
|
|
16002
|
+
exports.FIELDS = FIELDS;
|
|
15922
16003
|
function tokenize(input) {
|
|
15923
16004
|
var tokens = [];
|
|
15924
16005
|
var css = input.css.valueOf();
|
|
@@ -16090,10 +16171,10 @@ var hasRequiredParser;
|
|
|
16090
16171
|
function requireParser () {
|
|
16091
16172
|
if (hasRequiredParser) return parser.exports;
|
|
16092
16173
|
hasRequiredParser = 1;
|
|
16093
|
-
(function (module, exports
|
|
16174
|
+
(function (module, exports) {
|
|
16094
16175
|
|
|
16095
|
-
exports
|
|
16096
|
-
exports
|
|
16176
|
+
exports.__esModule = true;
|
|
16177
|
+
exports["default"] = void 0;
|
|
16097
16178
|
var _root = _interopRequireDefault(/*@__PURE__*/ requireRoot());
|
|
16098
16179
|
var _selector = _interopRequireDefault(/*@__PURE__*/ requireSelector());
|
|
16099
16180
|
var _className = _interopRequireDefault(/*@__PURE__*/ requireClassName());
|
|
@@ -17101,8 +17182,8 @@ function requireParser () {
|
|
|
17101
17182
|
}]);
|
|
17102
17183
|
return Parser;
|
|
17103
17184
|
}();
|
|
17104
|
-
exports
|
|
17105
|
-
module.exports = exports
|
|
17185
|
+
exports["default"] = Parser;
|
|
17186
|
+
module.exports = exports.default;
|
|
17106
17187
|
} (parser, parser.exports));
|
|
17107
17188
|
return parser.exports;
|
|
17108
17189
|
}
|
|
@@ -17112,10 +17193,10 @@ var hasRequiredProcessor;
|
|
|
17112
17193
|
function requireProcessor () {
|
|
17113
17194
|
if (hasRequiredProcessor) return processor.exports;
|
|
17114
17195
|
hasRequiredProcessor = 1;
|
|
17115
|
-
(function (module, exports
|
|
17196
|
+
(function (module, exports) {
|
|
17116
17197
|
|
|
17117
|
-
exports
|
|
17118
|
-
exports
|
|
17198
|
+
exports.__esModule = true;
|
|
17199
|
+
exports["default"] = void 0;
|
|
17119
17200
|
var _parser = _interopRequireDefault(/*@__PURE__*/ requireParser());
|
|
17120
17201
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17121
17202
|
var Processor = /*#__PURE__*/function () {
|
|
@@ -17280,8 +17361,8 @@ function requireProcessor () {
|
|
|
17280
17361
|
};
|
|
17281
17362
|
return Processor;
|
|
17282
17363
|
}();
|
|
17283
|
-
exports
|
|
17284
|
-
module.exports = exports
|
|
17364
|
+
exports["default"] = Processor;
|
|
17365
|
+
module.exports = exports.default;
|
|
17285
17366
|
} (processor, processor.exports));
|
|
17286
17367
|
return processor.exports;
|
|
17287
17368
|
}
|
|
@@ -17434,26 +17515,26 @@ var hasRequiredSelectors;
|
|
|
17434
17515
|
function requireSelectors () {
|
|
17435
17516
|
if (hasRequiredSelectors) return selectors;
|
|
17436
17517
|
hasRequiredSelectors = 1;
|
|
17437
|
-
(function (exports
|
|
17518
|
+
(function (exports) {
|
|
17438
17519
|
|
|
17439
|
-
exports
|
|
17520
|
+
exports.__esModule = true;
|
|
17440
17521
|
var _types = /*@__PURE__*/ requireTypes();
|
|
17441
17522
|
Object.keys(_types).forEach(function (key) {
|
|
17442
17523
|
if (key === "default" || key === "__esModule") return;
|
|
17443
|
-
if (key in exports
|
|
17444
|
-
exports
|
|
17524
|
+
if (key in exports && exports[key] === _types[key]) return;
|
|
17525
|
+
exports[key] = _types[key];
|
|
17445
17526
|
});
|
|
17446
17527
|
var _constructors = /*@__PURE__*/ requireConstructors();
|
|
17447
17528
|
Object.keys(_constructors).forEach(function (key) {
|
|
17448
17529
|
if (key === "default" || key === "__esModule") return;
|
|
17449
|
-
if (key in exports
|
|
17450
|
-
exports
|
|
17530
|
+
if (key in exports && exports[key] === _constructors[key]) return;
|
|
17531
|
+
exports[key] = _constructors[key];
|
|
17451
17532
|
});
|
|
17452
17533
|
var _guards = /*@__PURE__*/ requireGuards();
|
|
17453
17534
|
Object.keys(_guards).forEach(function (key) {
|
|
17454
17535
|
if (key === "default" || key === "__esModule") return;
|
|
17455
|
-
if (key in exports
|
|
17456
|
-
exports
|
|
17536
|
+
if (key in exports && exports[key] === _guards[key]) return;
|
|
17537
|
+
exports[key] = _guards[key];
|
|
17457
17538
|
});
|
|
17458
17539
|
} (selectors));
|
|
17459
17540
|
return selectors;
|
|
@@ -17464,10 +17545,10 @@ var hasRequiredDist;
|
|
|
17464
17545
|
function requireDist () {
|
|
17465
17546
|
if (hasRequiredDist) return dist.exports;
|
|
17466
17547
|
hasRequiredDist = 1;
|
|
17467
|
-
(function (module, exports
|
|
17548
|
+
(function (module, exports) {
|
|
17468
17549
|
|
|
17469
|
-
exports
|
|
17470
|
-
exports
|
|
17550
|
+
exports.__esModule = true;
|
|
17551
|
+
exports["default"] = void 0;
|
|
17471
17552
|
var _processor = _interopRequireDefault(/*@__PURE__*/ requireProcessor());
|
|
17472
17553
|
var selectors = _interopRequireWildcard(/*@__PURE__*/ requireSelectors());
|
|
17473
17554
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -17479,8 +17560,8 @@ function requireDist () {
|
|
|
17479
17560
|
Object.assign(parser, selectors);
|
|
17480
17561
|
delete parser.__esModule;
|
|
17481
17562
|
var _default = parser;
|
|
17482
|
-
exports
|
|
17483
|
-
module.exports = exports
|
|
17563
|
+
exports["default"] = _default;
|
|
17564
|
+
module.exports = exports.default;
|
|
17484
17565
|
} (dist, dist.exports));
|
|
17485
17566
|
return dist.exports;
|
|
17486
17567
|
}
|
|
@@ -18819,7 +18900,7 @@ function requireSrc$1 () {
|
|
|
18819
18900
|
return {
|
|
18820
18901
|
postcssPlugin: "postcss-modules-scope",
|
|
18821
18902
|
Once(root, { rule }) {
|
|
18822
|
-
const exports
|
|
18903
|
+
const exports = Object.create(null);
|
|
18823
18904
|
|
|
18824
18905
|
function exportScopedName(name, rawName, node) {
|
|
18825
18906
|
const scopedName = generateScopedName(
|
|
@@ -18837,10 +18918,10 @@ function requireSrc$1 () {
|
|
|
18837
18918
|
);
|
|
18838
18919
|
const { key, value } = exportEntry;
|
|
18839
18920
|
|
|
18840
|
-
exports
|
|
18921
|
+
exports[key] = exports[key] || [];
|
|
18841
18922
|
|
|
18842
|
-
if (exports
|
|
18843
|
-
exports
|
|
18923
|
+
if (exports[key].indexOf(value) < 0) {
|
|
18924
|
+
exports[key].push(value);
|
|
18844
18925
|
}
|
|
18845
18926
|
|
|
18846
18927
|
return scopedName;
|
|
@@ -18922,7 +19003,7 @@ function requireSrc$1 () {
|
|
|
18922
19003
|
case "id":
|
|
18923
19004
|
case "class":
|
|
18924
19005
|
if (exportGlobals) {
|
|
18925
|
-
exports
|
|
19006
|
+
exports[node.value] = [node.value];
|
|
18926
19007
|
}
|
|
18927
19008
|
break;
|
|
18928
19009
|
}
|
|
@@ -18959,16 +19040,16 @@ function requireSrc$1 () {
|
|
|
18959
19040
|
|
|
18960
19041
|
if (global) {
|
|
18961
19042
|
localNames.forEach((exportedName) => {
|
|
18962
|
-
exports
|
|
19043
|
+
exports[exportedName].push(global[1]);
|
|
18963
19044
|
});
|
|
18964
19045
|
} else if (hasOwnProperty.call(importedNames, className)) {
|
|
18965
19046
|
localNames.forEach((exportedName) => {
|
|
18966
|
-
exports
|
|
19047
|
+
exports[exportedName].push(className);
|
|
18967
19048
|
});
|
|
18968
|
-
} else if (hasOwnProperty.call(exports
|
|
19049
|
+
} else if (hasOwnProperty.call(exports, className)) {
|
|
18969
19050
|
localNames.forEach((exportedName) => {
|
|
18970
|
-
exports
|
|
18971
|
-
exports
|
|
19051
|
+
exports[className].forEach((item) => {
|
|
19052
|
+
exports[exportedName].push(item);
|
|
18972
19053
|
});
|
|
18973
19054
|
});
|
|
18974
19055
|
} else {
|
|
@@ -19050,7 +19131,7 @@ function requireSrc$1 () {
|
|
|
19050
19131
|
});
|
|
19051
19132
|
|
|
19052
19133
|
// If we found any :locals, insert an :export rule
|
|
19053
|
-
const exportedNames = Object.keys(exports
|
|
19134
|
+
const exportedNames = Object.keys(exports);
|
|
19054
19135
|
|
|
19055
19136
|
if (exportedNames.length > 0) {
|
|
19056
19137
|
const exportRule = rule({ selector: ":export" });
|
|
@@ -19058,7 +19139,7 @@ function requireSrc$1 () {
|
|
|
19058
19139
|
exportedNames.forEach((exportedName) =>
|
|
19059
19140
|
exportRule.append({
|
|
19060
19141
|
prop: exportedName,
|
|
19061
|
-
value: exports
|
|
19142
|
+
value: exports[exportedName].join(" "),
|
|
19062
19143
|
raws: { before: "\n " },
|
|
19063
19144
|
})
|
|
19064
19145
|
);
|
|
@@ -20189,7 +20270,9 @@ function expand_(str, max, isTop) {
|
|
|
20189
20270
|
const x = numeric(n[0]);
|
|
20190
20271
|
const y = numeric(n[1]);
|
|
20191
20272
|
const width = Math.max(n[0].length, n[1].length);
|
|
20192
|
-
let incr = n.length === 3 && n[2] !== undefined ?
|
|
20273
|
+
let incr = n.length === 3 && n[2] !== undefined ?
|
|
20274
|
+
Math.max(Math.abs(numeric(n[2])), 1)
|
|
20275
|
+
: 1;
|
|
20193
20276
|
let test = lte;
|
|
20194
20277
|
const reverse = y < x;
|
|
20195
20278
|
if (reverse) {
|
|
@@ -20420,16 +20503,16 @@ const parseClass = (glob, position) => {
|
|
|
20420
20503
|
const unescape = (s, { windowsPathsNoEscape = false, magicalBraces = true, } = {}) => {
|
|
20421
20504
|
if (magicalBraces) {
|
|
20422
20505
|
return windowsPathsNoEscape ?
|
|
20423
|
-
s.replace(/\[([
|
|
20506
|
+
s.replace(/\[([^/\\])\]/g, '$1')
|
|
20424
20507
|
: s
|
|
20425
|
-
.replace(/((?!\\).|^)\[([
|
|
20426
|
-
.replace(/\\([
|
|
20508
|
+
.replace(/((?!\\).|^)\[([^/\\])\]/g, '$1$2')
|
|
20509
|
+
.replace(/\\([^/])/g, '$1');
|
|
20427
20510
|
}
|
|
20428
20511
|
return windowsPathsNoEscape ?
|
|
20429
|
-
s.replace(/\[([
|
|
20512
|
+
s.replace(/\[([^/\\{}])\]/g, '$1')
|
|
20430
20513
|
: s
|
|
20431
|
-
.replace(/((?!\\).|^)\[([
|
|
20432
|
-
.replace(/\\([
|
|
20514
|
+
.replace(/((?!\\).|^)\[([^/\\{}])\]/g, '$1$2')
|
|
20515
|
+
.replace(/\\([^/{}])/g, '$1');
|
|
20433
20516
|
};
|
|
20434
20517
|
|
|
20435
20518
|
// parse a single path portion
|
|
@@ -20621,15 +20704,14 @@ class AST {
|
|
|
20621
20704
|
}
|
|
20622
20705
|
// reconstructs the pattern
|
|
20623
20706
|
toString() {
|
|
20624
|
-
|
|
20625
|
-
|
|
20626
|
-
|
|
20627
|
-
|
|
20628
|
-
|
|
20629
|
-
|
|
20630
|
-
|
|
20631
|
-
|
|
20632
|
-
}
|
|
20707
|
+
return (this.#toString !== undefined ? this.#toString
|
|
20708
|
+
: !this.type ?
|
|
20709
|
+
(this.#toString = this.#parts.map(p => String(p)).join(''))
|
|
20710
|
+
: (this.#toString =
|
|
20711
|
+
this.type +
|
|
20712
|
+
'(' +
|
|
20713
|
+
this.#parts.map(p => String(p)).join('|') +
|
|
20714
|
+
')'));
|
|
20633
20715
|
}
|
|
20634
20716
|
#fillNegs() {
|
|
20635
20717
|
/* c8 ignore start */
|
|
@@ -20909,7 +20991,7 @@ class AST {
|
|
|
20909
20991
|
}
|
|
20910
20992
|
#canUsurpType(c) {
|
|
20911
20993
|
const m = usurpMap.get(this.type);
|
|
20912
|
-
return !!
|
|
20994
|
+
return !!m?.has(c);
|
|
20913
20995
|
}
|
|
20914
20996
|
#canUsurp(child) {
|
|
20915
20997
|
if (!child ||
|
|
@@ -21307,7 +21389,7 @@ const minimatch = (p, pattern, options = {}) => {
|
|
|
21307
21389
|
return new Minimatch(pattern, options).match(p);
|
|
21308
21390
|
};
|
|
21309
21391
|
// Optimized checking for the most common glob patterns.
|
|
21310
|
-
const starDotExtRE = /^\*+([
|
|
21392
|
+
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
21311
21393
|
const starDotExtTest = (ext) => (f) => !f.startsWith('.') && f.endsWith(ext);
|
|
21312
21394
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
21313
21395
|
const starDotExtTestNocase = (ext) => {
|
|
@@ -21326,7 +21408,7 @@ const dotStarTest = (f) => f !== '.' && f !== '..' && f.startsWith('.');
|
|
|
21326
21408
|
const starRE = /^\*+$/;
|
|
21327
21409
|
const starTest = (f) => f.length !== 0 && !f.startsWith('.');
|
|
21328
21410
|
const starTestDot = (f) => f.length !== 0 && f !== '.' && f !== '..';
|
|
21329
|
-
const qmarksRE = /^\?+([
|
|
21411
|
+
const qmarksRE = /^\?+([^+@!?*[(]*)?$/;
|
|
21330
21412
|
const qmarksTestNocase = ([$0, ext = '']) => {
|
|
21331
21413
|
const noext = qmarksTestNoExt([$0]);
|
|
21332
21414
|
if (!ext)
|
|
@@ -21553,6 +21635,7 @@ class Minimatch {
|
|
|
21553
21635
|
// step 2: expand braces
|
|
21554
21636
|
this.globSet = [...new Set(this.braceExpand())];
|
|
21555
21637
|
if (options.debug) {
|
|
21638
|
+
//oxlint-disable-next-line no-console
|
|
21556
21639
|
this.debug = (...args) => console.error(...args);
|
|
21557
21640
|
}
|
|
21558
21641
|
this.debug(this.pattern, this.globSet);
|
|
@@ -21615,10 +21698,10 @@ class Minimatch {
|
|
|
21615
21698
|
preprocess(globParts) {
|
|
21616
21699
|
// if we're not in globstar mode, then turn ** into *
|
|
21617
21700
|
if (this.options.noglobstar) {
|
|
21618
|
-
for (
|
|
21619
|
-
for (let j = 0; j <
|
|
21620
|
-
if (
|
|
21621
|
-
|
|
21701
|
+
for (const partset of globParts) {
|
|
21702
|
+
for (let j = 0; j < partset.length; j++) {
|
|
21703
|
+
if (partset[j] === '**') {
|
|
21704
|
+
partset[j] = '*';
|
|
21622
21705
|
}
|
|
21623
21706
|
}
|
|
21624
21707
|
}
|
|
@@ -21706,7 +21789,11 @@ class Minimatch {
|
|
|
21706
21789
|
let dd = 0;
|
|
21707
21790
|
while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
|
|
21708
21791
|
const p = parts[dd - 1];
|
|
21709
|
-
if (p &&
|
|
21792
|
+
if (p &&
|
|
21793
|
+
p !== '.' &&
|
|
21794
|
+
p !== '..' &&
|
|
21795
|
+
p !== '**' &&
|
|
21796
|
+
!(this.isWindows && /^[a-z]:$/i.test(p))) {
|
|
21710
21797
|
didSomething = true;
|
|
21711
21798
|
parts.splice(dd - 1, 2);
|
|
21712
21799
|
dd -= 2;
|
|
@@ -21955,15 +22042,17 @@ class Minimatch {
|
|
|
21955
22042
|
// split the pattern up into globstar-delimited sections
|
|
21956
22043
|
// the tail has to be at the end, and the others just have
|
|
21957
22044
|
// to be found in order from the head.
|
|
21958
|
-
const [head, body, tail] = partial ?
|
|
21959
|
-
|
|
21960
|
-
|
|
21961
|
-
|
|
21962
|
-
|
|
21963
|
-
|
|
21964
|
-
|
|
21965
|
-
|
|
21966
|
-
|
|
22045
|
+
const [head, body, tail] = partial ?
|
|
22046
|
+
[
|
|
22047
|
+
pattern.slice(patternIndex, firstgs),
|
|
22048
|
+
pattern.slice(firstgs + 1),
|
|
22049
|
+
[],
|
|
22050
|
+
]
|
|
22051
|
+
: [
|
|
22052
|
+
pattern.slice(patternIndex, firstgs),
|
|
22053
|
+
pattern.slice(firstgs + 1, lastgs),
|
|
22054
|
+
pattern.slice(lastgs + 1),
|
|
22055
|
+
];
|
|
21967
22056
|
// check the head, from the current file/pattern index.
|
|
21968
22057
|
if (head.length) {
|
|
21969
22058
|
const fileHead = file.slice(fileIndex, fileIndex + head.length);
|
|
@@ -22309,7 +22398,7 @@ class Minimatch {
|
|
|
22309
22398
|
this.regexp = new RegExp(re, [...flags].join(''));
|
|
22310
22399
|
/* c8 ignore start */
|
|
22311
22400
|
}
|
|
22312
|
-
catch
|
|
22401
|
+
catch {
|
|
22313
22402
|
// should be impossible
|
|
22314
22403
|
this.regexp = false;
|
|
22315
22404
|
}
|
|
@@ -22324,7 +22413,7 @@ class Minimatch {
|
|
|
22324
22413
|
if (this.preserveMultipleSlashes) {
|
|
22325
22414
|
return p.split('/');
|
|
22326
22415
|
}
|
|
22327
|
-
else if (this.isWindows && /^\/\/[
|
|
22416
|
+
else if (this.isWindows && /^\/\/[^/]+/.test(p)) {
|
|
22328
22417
|
// add an extra '' for the one we lose
|
|
22329
22418
|
return ['', ...p.split(/\/+/)];
|
|
22330
22419
|
}
|
|
@@ -22366,8 +22455,7 @@ class Minimatch {
|
|
|
22366
22455
|
filename = ff[i];
|
|
22367
22456
|
}
|
|
22368
22457
|
}
|
|
22369
|
-
for (
|
|
22370
|
-
const pattern = set[i];
|
|
22458
|
+
for (const pattern of set) {
|
|
22371
22459
|
let file = ff;
|
|
22372
22460
|
if (options.matchBase && pattern.length === 1) {
|
|
22373
22461
|
file = [filename];
|
|
@@ -22411,9 +22499,20 @@ class TypeScope {
|
|
|
22411
22499
|
this.exportedDeclares = /* @__PURE__ */ Object.create(null);
|
|
22412
22500
|
}
|
|
22413
22501
|
}
|
|
22502
|
+
function recordScopeDep(ctx, scope) {
|
|
22503
|
+
if (scope && scope.filename !== ctx.filename) {
|
|
22504
|
+
(ctx.deps || (ctx.deps = /* @__PURE__ */ new Set())).add(scope.filename);
|
|
22505
|
+
}
|
|
22506
|
+
}
|
|
22507
|
+
function recordResolvedElementDeps(ctx, { props }) {
|
|
22508
|
+
for (const key in props) {
|
|
22509
|
+
recordScopeDep(ctx, props[key]._ownerScope);
|
|
22510
|
+
}
|
|
22511
|
+
}
|
|
22414
22512
|
function resolveTypeElements(ctx, node, scope, typeParameters) {
|
|
22415
22513
|
const canCache = !typeParameters;
|
|
22416
22514
|
if (canCache && node._resolvedElements) {
|
|
22515
|
+
recordResolvedElementDeps(ctx, node._resolvedElements);
|
|
22417
22516
|
return node._resolvedElements;
|
|
22418
22517
|
}
|
|
22419
22518
|
const resolved = innerResolveTypeElements(
|
|
@@ -22887,6 +22986,7 @@ function resolveBuiltin(ctx, node, name, scope, typeParameters) {
|
|
|
22887
22986
|
function resolveTypeReference(ctx, node, scope, name, onlyExported = false) {
|
|
22888
22987
|
const canCache = !(scope == null ? void 0 : scope.isGenericScope);
|
|
22889
22988
|
if (canCache && node._resolvedReference) {
|
|
22989
|
+
recordScopeDep(ctx, node._resolvedReference._ownerScope);
|
|
22890
22990
|
return node._resolvedReference;
|
|
22891
22991
|
}
|
|
22892
22992
|
const resolved = innerResolveTypeReference(
|
|
@@ -22913,7 +23013,11 @@ function innerResolveTypeReference(ctx, scope, name, node, onlyExported) {
|
|
|
22913
23013
|
const src = node.type === "TSTypeQuery" ? s.declares : s.types;
|
|
22914
23014
|
if (src[name]) {
|
|
22915
23015
|
(ctx.deps || (ctx.deps = /* @__PURE__ */ new Set())).add(s.filename);
|
|
22916
|
-
|
|
23016
|
+
const resolved = src[name];
|
|
23017
|
+
if (resolved._ownerScope && resolved._ownerScope !== s) {
|
|
23018
|
+
ctx.deps.add(resolved._ownerScope.filename);
|
|
23019
|
+
}
|
|
23020
|
+
return resolved;
|
|
22917
23021
|
}
|
|
22918
23022
|
}
|
|
22919
23023
|
}
|
|
@@ -23017,7 +23121,7 @@ function resolveTypeFromImport(ctx, node, name, scope) {
|
|
|
23017
23121
|
const sourceScope = importSourceToScope(ctx, node, scope, source);
|
|
23018
23122
|
return resolveTypeReference(ctx, node, sourceScope, imported, true);
|
|
23019
23123
|
}
|
|
23020
|
-
function importSourceToScope(ctx, node, scope, source) {
|
|
23124
|
+
function importSourceToScope(ctx, node, scope, source, trackDep = true) {
|
|
23021
23125
|
let fs;
|
|
23022
23126
|
try {
|
|
23023
23127
|
fs = resolveFS(ctx);
|
|
@@ -23053,12 +23157,22 @@ function importSourceToScope(ctx, node, scope, source) {
|
|
|
23053
23157
|
}
|
|
23054
23158
|
resolved = resolveWithTS(scope.filename, source, ts, fs);
|
|
23055
23159
|
}
|
|
23160
|
+
if (!resolved && source[0] === "." && true) {
|
|
23161
|
+
if (!ts) {
|
|
23162
|
+
if (loadTS) ts = loadTS();
|
|
23163
|
+
}
|
|
23164
|
+
if (ts) {
|
|
23165
|
+
resolved = resolveWithTS(scope.filename, source, ts, fs);
|
|
23166
|
+
}
|
|
23167
|
+
}
|
|
23056
23168
|
if (resolved) {
|
|
23057
23169
|
resolved = scope.resolvedImportSources[source] = normalizePath(resolved);
|
|
23058
23170
|
}
|
|
23059
23171
|
}
|
|
23060
23172
|
if (resolved) {
|
|
23061
|
-
|
|
23173
|
+
if (trackDep) {
|
|
23174
|
+
(ctx.deps || (ctx.deps = /* @__PURE__ */ new Set())).add(resolved);
|
|
23175
|
+
}
|
|
23062
23176
|
return fileToScope(ctx, resolved);
|
|
23063
23177
|
} else {
|
|
23064
23178
|
return ctx.error(
|
|
@@ -23292,8 +23406,40 @@ function recordTypes(ctx, body, scope, asGlobal = false) {
|
|
|
23292
23406
|
}
|
|
23293
23407
|
} else if (stmt.type === "TSModuleDeclaration" && stmt.global) {
|
|
23294
23408
|
for (const s of stmt.body.body) {
|
|
23295
|
-
if (s.type === "ExportNamedDeclaration"
|
|
23296
|
-
|
|
23409
|
+
if (s.type === "ExportNamedDeclaration") {
|
|
23410
|
+
if (s.declaration) {
|
|
23411
|
+
recordType(s.declaration, types, declares);
|
|
23412
|
+
} else if (s.source) {
|
|
23413
|
+
const sourceScope = importSourceToScope(
|
|
23414
|
+
ctx,
|
|
23415
|
+
s.source,
|
|
23416
|
+
scope,
|
|
23417
|
+
s.source.value,
|
|
23418
|
+
false
|
|
23419
|
+
);
|
|
23420
|
+
for (const spec of s.specifiers) {
|
|
23421
|
+
if (spec.type === "ExportSpecifier") {
|
|
23422
|
+
const exported = getId(spec.exported);
|
|
23423
|
+
const local = spec.local.name;
|
|
23424
|
+
if (sourceScope.exportedTypes[local]) {
|
|
23425
|
+
types[exported] = sourceScope.exportedTypes[local];
|
|
23426
|
+
}
|
|
23427
|
+
if (sourceScope.exportedDeclares[local]) {
|
|
23428
|
+
declares[exported] = sourceScope.exportedDeclares[local];
|
|
23429
|
+
}
|
|
23430
|
+
}
|
|
23431
|
+
}
|
|
23432
|
+
}
|
|
23433
|
+
} else if (s.type === "ExportAllDeclaration" && s.source) {
|
|
23434
|
+
const sourceScope = importSourceToScope(
|
|
23435
|
+
ctx,
|
|
23436
|
+
s.source,
|
|
23437
|
+
scope,
|
|
23438
|
+
s.source.value,
|
|
23439
|
+
false
|
|
23440
|
+
);
|
|
23441
|
+
Object.assign(types, sourceScope.exportedTypes);
|
|
23442
|
+
Object.assign(declares, sourceScope.exportedDeclares);
|
|
23297
23443
|
} else {
|
|
23298
23444
|
recordType(s, types, declares);
|
|
23299
23445
|
}
|
|
@@ -23358,11 +23504,11 @@ function recordTypes(ctx, body, scope, asGlobal = false) {
|
|
|
23358
23504
|
}
|
|
23359
23505
|
for (const key of Object.keys(types)) {
|
|
23360
23506
|
const node = types[key];
|
|
23361
|
-
node._ownerScope = scope;
|
|
23362
|
-
if (node._ns) node._ns._ownerScope = scope;
|
|
23507
|
+
if (!node._ownerScope) node._ownerScope = scope;
|
|
23508
|
+
if (node._ns && !node._ns._ownerScope) node._ns._ownerScope = scope;
|
|
23363
23509
|
}
|
|
23364
23510
|
for (const key of Object.keys(declares)) {
|
|
23365
|
-
declares[key]._ownerScope = scope;
|
|
23511
|
+
if (!declares[key]._ownerScope) declares[key]._ownerScope = scope;
|
|
23366
23512
|
}
|
|
23367
23513
|
}
|
|
23368
23514
|
function recordType(node, types, declares, overwriteId) {
|
|
@@ -23557,7 +23703,11 @@ function inferRuntimeType(ctx, node, scope = node._ownerScope || ctxToScope(ctx)
|
|
|
23557
23703
|
return [UNKNOWN_TYPE];
|
|
23558
23704
|
}
|
|
23559
23705
|
case "TSTypeReference": {
|
|
23560
|
-
|
|
23706
|
+
let resolved;
|
|
23707
|
+
try {
|
|
23708
|
+
resolved = resolveTypeReference(ctx, node, scope);
|
|
23709
|
+
} catch {
|
|
23710
|
+
}
|
|
23561
23711
|
if (resolved) {
|
|
23562
23712
|
if (resolved.type === "TSTypeAliasDeclaration") {
|
|
23563
23713
|
if (resolved.typeAnnotation.type === "TSFunctionType") {
|
|
@@ -23677,6 +23827,33 @@ function inferRuntimeType(ctx, node, scope = node._ownerScope || ctxToScope(ctx)
|
|
|
23677
23827
|
return ["Map"];
|
|
23678
23828
|
case "ReadonlySet":
|
|
23679
23829
|
return ["Set"];
|
|
23830
|
+
// Vue ref wrapper types — handled here so that runtime type
|
|
23831
|
+
// inference still works when `vue` types cannot be resolved
|
|
23832
|
+
// (e.g. consumed as built artifacts in another package). #14729
|
|
23833
|
+
case "Ref":
|
|
23834
|
+
case "ShallowRef":
|
|
23835
|
+
case "ComputedRef":
|
|
23836
|
+
case "WritableComputedRef":
|
|
23837
|
+
return ["Object"];
|
|
23838
|
+
case "MaybeRef":
|
|
23839
|
+
case "MaybeRefOrGetter": {
|
|
23840
|
+
const types = /* @__PURE__ */ new Set(["Object"]);
|
|
23841
|
+
if (node.typeName.name === "MaybeRefOrGetter") {
|
|
23842
|
+
types.add("Function");
|
|
23843
|
+
}
|
|
23844
|
+
if (node.typeParameters && node.typeParameters.params[0]) {
|
|
23845
|
+
for (const t of inferRuntimeType(
|
|
23846
|
+
ctx,
|
|
23847
|
+
node.typeParameters.params[0],
|
|
23848
|
+
scope,
|
|
23849
|
+
false,
|
|
23850
|
+
typeParameters
|
|
23851
|
+
)) {
|
|
23852
|
+
types.add(t);
|
|
23853
|
+
}
|
|
23854
|
+
}
|
|
23855
|
+
return Array.from(types);
|
|
23856
|
+
}
|
|
23680
23857
|
case "NonNullable":
|
|
23681
23858
|
if (node.typeParameters && node.typeParameters.params[0]) {
|
|
23682
23859
|
return inferRuntimeType(
|
|
@@ -25583,7 +25760,7 @@ function mergeSourceMaps(scriptMap, templateMap, templateLineOffset) {
|
|
|
25583
25760
|
return generator.toJSON();
|
|
25584
25761
|
}
|
|
25585
25762
|
|
|
25586
|
-
const version = "3.5.
|
|
25763
|
+
const version = "3.5.34";
|
|
25587
25764
|
const parseCache = parseCache$1;
|
|
25588
25765
|
const errorMessages = {
|
|
25589
25766
|
...CompilerDOM.errorMessages,
|