flinker-dom 1.1.15 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/processor.js
CHANGED
|
@@ -71,7 +71,7 @@ const abbreviations = {
|
|
|
71
71
|
'user-select': 'U',
|
|
72
72
|
'z-index': 'Z'
|
|
73
73
|
};
|
|
74
|
-
const pseudoClasses = ['none', ':hover', ':focus', '
|
|
74
|
+
const pseudoClasses = ['none', ':hover', ':focus', '::placeholder', '::before'];
|
|
75
75
|
export class StyleSheetProcessor {
|
|
76
76
|
constructor(styleSheet) {
|
|
77
77
|
this.hash = new Map();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type RulePriority } from './core';
|
|
2
|
-
declare const pseudoClasses: readonly ["none", ":hover", ":focus", "
|
|
2
|
+
declare const pseudoClasses: readonly ["none", ":hover", ":focus", "::placeholder", "::before"];
|
|
3
3
|
export type PseudoClassType = typeof pseudoClasses[number];
|
|
4
4
|
export declare class StyleSheetProcessor {
|
|
5
5
|
private readonly hash;
|