@unocss/core 0.37.3 → 0.38.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -393,7 +393,7 @@ function resolveShortcuts(shortcuts) {
|
|
|
393
393
|
}
|
|
394
394
|
const defaultLayers = {
|
|
395
395
|
preflights: -100,
|
|
396
|
-
shortcuts: -
|
|
396
|
+
shortcuts: -10,
|
|
397
397
|
default: 0
|
|
398
398
|
};
|
|
399
399
|
function resolveConfig(userConfig = {}, defaults = {}) {
|
|
@@ -458,7 +458,7 @@ function resolveConfig(userConfig = {}, defaults = {}) {
|
|
|
458
458
|
};
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
-
const version = "0.
|
|
461
|
+
const version = "0.38.1";
|
|
462
462
|
|
|
463
463
|
class UnoGenerator {
|
|
464
464
|
constructor(userConfig = {}, defaults = {}) {
|
package/dist/index.d.ts
CHANGED
|
@@ -640,6 +640,7 @@ interface UserConfig<Theme extends {} = {}> extends ConfigBase<Theme>, UserOnlyO
|
|
|
640
640
|
interface UserConfigDefaults<Theme extends {} = {}> extends ConfigBase<Theme>, UserOnlyOptions<Theme> {
|
|
641
641
|
}
|
|
642
642
|
interface ResolvedConfig extends Omit<RequiredByKey<UserConfig, 'mergeSelectors' | 'theme' | 'rules' | 'variants' | 'layers' | 'extractors' | 'blocklist' | 'safelist' | 'preflights' | 'sortLayers'>, 'rules' | 'shortcuts' | 'autocomplete'> {
|
|
643
|
+
presets: Preset[];
|
|
643
644
|
shortcuts: Shortcut[];
|
|
644
645
|
variants: VariantObject[];
|
|
645
646
|
preprocess: Preprocessor[];
|
package/dist/index.mjs
CHANGED
|
@@ -389,7 +389,7 @@ function resolveShortcuts(shortcuts) {
|
|
|
389
389
|
}
|
|
390
390
|
const defaultLayers = {
|
|
391
391
|
preflights: -100,
|
|
392
|
-
shortcuts: -
|
|
392
|
+
shortcuts: -10,
|
|
393
393
|
default: 0
|
|
394
394
|
};
|
|
395
395
|
function resolveConfig(userConfig = {}, defaults = {}) {
|
|
@@ -454,7 +454,7 @@ function resolveConfig(userConfig = {}, defaults = {}) {
|
|
|
454
454
|
};
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
-
const version = "0.
|
|
457
|
+
const version = "0.38.1";
|
|
458
458
|
|
|
459
459
|
class UnoGenerator {
|
|
460
460
|
constructor(userConfig = {}, defaults = {}) {
|