@briklab/lib 1.0.10 → 1.1.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/cli-john/index.d.ts +4 -4
- package/dist/cli-john/index.js +31 -39
- package/dist/cli-john/index.js.map +3 -3
- package/dist/jstc/index.d.ts +27 -0
- package/dist/jstc/index.js +3 -5
- package/dist/jstc/index.js.map +2 -2
- package/dist/stylesheet/index.js +11 -13
- package/dist/stylesheet/index.js.map +3 -3
- package/package.json +1 -1
package/dist/jstc/index.d.ts
CHANGED
|
@@ -4,19 +4,46 @@
|
|
|
4
4
|
* Runtime JS Type Checker
|
|
5
5
|
* @module JSTC
|
|
6
6
|
*/
|
|
7
|
+
/**
|
|
8
|
+
* # Primitive Type
|
|
9
|
+
*/
|
|
7
10
|
type PrimitiveType = "string" | "number" | "boolean" | "object" | "function" | "undefined" | "symbol" | "bigint";
|
|
11
|
+
/**
|
|
12
|
+
* JS constructor type
|
|
13
|
+
*/
|
|
8
14
|
type ConstructorType = Function;
|
|
15
|
+
/**
|
|
16
|
+
* # JSType
|
|
17
|
+
* A Valid Javascript Type
|
|
18
|
+
*/
|
|
9
19
|
export type JSType = PrimitiveType | ConstructorType | string;
|
|
20
|
+
/**
|
|
21
|
+
* # JSType
|
|
22
|
+
* A Valid JavaScript Type or a Valid JavaScript Type Array
|
|
23
|
+
*/
|
|
10
24
|
export type JSTypeOrArray = JSType | JSType[];
|
|
25
|
+
/**
|
|
26
|
+
* # JSTypeChecker
|
|
27
|
+
* A JS Type Checker. Add type checking to your javascript files as well
|
|
28
|
+
*/
|
|
11
29
|
export declare class JSTypeChecker {
|
|
12
30
|
#private;
|
|
13
31
|
/**
|
|
32
|
+
* ### JSTypeChecker.for
|
|
14
33
|
* check if specific arguments are of a specific type, class, etc.
|
|
15
34
|
* @param {unknown[]} args
|
|
16
35
|
*/
|
|
17
36
|
for(args: unknown[]): {
|
|
37
|
+
/**
|
|
38
|
+
* ### JSTypeChecker.for().check
|
|
39
|
+
* Check the given arguments with corresponding given types
|
|
40
|
+
*/
|
|
18
41
|
check: (types: JSTypeOrArray[]) => boolean;
|
|
19
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* ### JSTypeChecker.addCustomHandler
|
|
45
|
+
* Create a custom handler for checking types.
|
|
46
|
+
*/
|
|
20
47
|
addCustomHandler(name: string, handler: (value: unknown) => boolean): void;
|
|
21
48
|
}
|
|
22
49
|
declare const JSTC: JSTypeChecker;
|
package/dist/jstc/index.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
var c=function(n,t,r
|
|
1
|
+
var c=function(n,t,e,r){if(e==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?n!==t||!r:!t.has(n))throw new TypeError("Cannot read private member from an object whose class did not declare it");return e==="m"?r:e==="a"?r.call(n):r?r.value:t.get(n)},i,u=class{constructor(){i.set(this,{Array:t=>Array.isArray(t),"string[]":t=>Array.isArray(t)&&t.every(e=>typeof e=="string")})}for(t){return Array.isArray(t)||(console.warn(`[JSTC.for] @briklab/lib/jstc: Invalid first argument!
|
|
2
2
|
Hint: The first argument must be a array.
|
|
3
|
-
Using [givenValue] as fallback`),t=[t]),{check:
|
|
4
|
-
Hint: The first argument must be a valid array!
|
|
5
|
-
Using [givenValue] as fallback`),r=[r]),t.length<r.length)return!1;for(let e=0;e<r.length;e++){let o=t[e],f=r[e],b=Array.isArray(f)?f:[f],i=!1;for(let l of b){let d=typeof l=="string"?l.split("|"):[l];for(let a of d)if(typeof a=="function"){if(o instanceof a){i=!0;break}}else if(typeof a=="string"&&c(this,s,"f")[a]){if(c(this,s,"f")[a](o)){i=!0;break}}else if(typeof o===a){i=!0;break}if(i)break}if(!i)return!1}return!0}}}addCustomHandler(t,r){typeof t=="string"&&typeof r=="function"||(console.warn(`[JSTC.addCustomHandler] @briklab/lib/jstc: Invalid Arguments!
|
|
3
|
+
Using [givenValue] as fallback`),t=[t]),{check:e=>{if(t.length<e.length)return!1;for(let r=0;r<e.length;r++){let o=t[r],f=e[r],y=Array.isArray(f)?f:[f],s=!1;for(let l of y){let d=typeof l=="string"?l.split("|"):[l];for(let a of d)if(typeof a=="function"){if(o instanceof a){s=!0;break}}else if(typeof a=="string"&&c(this,i,"f")[a]){if(c(this,i,"f")[a](o)){s=!0;break}}else if(typeof o===a){s=!0;break}if(s)break}if(!s)return!1}return!0}}}addCustomHandler(t,e){typeof t=="string"&&typeof e=="function"||(console.warn(`[JSTC.addCustomHandler] @briklab/lib/jstc: Invalid Arguments!
|
|
6
4
|
Hint: The first argument must be a string, and the second argument must be a function
|
|
7
|
-
Using String(argument1) and ()=>false as fallbacks`),t=String(t),
|
|
5
|
+
Using String(argument1) and ()=>false as fallbacks`),t=String(t),e=()=>!1),c(this,i,"f")[t]=e}};i=new WeakMap;var g=new u,b=g;export{u as JSTypeChecker,b as default};
|
|
8
6
|
//# sourceMappingURL=index.js.map
|
package/dist/jstc/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["index.js"],
|
|
4
|
-
"sourcesContent": ["/**\n * # JSTC\n * @packageDocumentation\n * Runtime JS Type Checker\n * @module JSTC\n */\nvar __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _JSTypeChecker___CustomHandler;\nexport class JSTypeChecker {\n constructor() {\n _JSTypeChecker___CustomHandler.set(this, {\n Array: (value) => Array.isArray(value),\n \"string[]\": (value) => Array.isArray(value) && value.every((v) => typeof v === \"string\"),\n });\n }\n /**\n * check if specific arguments are of a specific type, class, etc.\n * @param {unknown[]} args\n */\n for(args) {\n if (!Array.isArray(args)) {\n console.warn(`[JSTC.for] @briklab/lib/jstc: Invalid first argument!\r\n Hint: The first argument must be a array.\r\n Using [givenValue] as fallback`);\n args = [args];\n }\n return {\n
|
|
5
|
-
"mappings": "AAMA,IAAIA,EAAkE,SAAUC,EAAUC,EAAOC,EAAMC,EAAG,CACtG,GAAID,IAAS,KAAO,CAACC,EAAG,MAAM,IAAI,UAAU,+CAA+C,EAC3F,GAAI,OAAOF,GAAU,WAAaD,IAAaC,GAAS,CAACE,EAAI,CAACF,EAAM,IAAID,CAAQ,EAAG,MAAM,IAAI,UAAU,0EAA0E,EACjL,OAAOE,IAAS,IAAMC,EAAID,IAAS,IAAMC,EAAE,KAAKH,CAAQ,EAAIG,EAAIA,EAAE,MAAQF,EAAM,IAAID,CAAQ,CAChG,EACII,
|
|
4
|
+
"sourcesContent": ["/**\n * # JSTC\n * @packageDocumentation\n * Runtime JS Type Checker\n * @module JSTC\n */\nvar __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n};\nvar _JSTypeChecker___CustomHandler;\n/**\n * # JSTypeChecker\n * A JS Type Checker. Add type checking to your javascript files as well\n */\nexport class JSTypeChecker {\n constructor() {\n _JSTypeChecker___CustomHandler.set(this, {\n Array: (value) => Array.isArray(value),\n \"string[]\": (value) => Array.isArray(value) && value.every((v) => typeof v === \"string\"),\n });\n }\n /**\n * ### JSTypeChecker.for\n * check if specific arguments are of a specific type, class, etc.\n * @param {unknown[]} args\n */\n for(args) {\n if (!Array.isArray(args)) {\n console.warn(`[JSTC.for] @briklab/lib/jstc: Invalid first argument!\r\n Hint: The first argument must be a array.\r\n Using [givenValue] as fallback`);\n args = [args];\n }\n return {\n /**\n * ### JSTypeChecker.for().check\n * Check the given arguments with corresponding given types\n */\n check: (types) => {\n if (args.length < types.length)\n return false;\n for (let i = 0; i < types.length; i++) {\n const value = args[i];\n const expected = types[i];\n const expectedTypes = Array.isArray(expected) ? expected : [expected];\n let matched = false;\n for (const tRaw of expectedTypes) {\n const unionTypes = typeof tRaw === \"string\" ? tRaw.split(\"|\") : [tRaw];\n for (const t of unionTypes) {\n if (typeof t === \"function\") {\n if (value instanceof t) {\n matched = true;\n break;\n }\n }\n else if (typeof t === \"string\" && __classPrivateFieldGet(this, _JSTypeChecker___CustomHandler, \"f\")[t]) {\n if (__classPrivateFieldGet(this, _JSTypeChecker___CustomHandler, \"f\")[t](value)) {\n matched = true;\n break;\n }\n }\n else if (typeof value === t) {\n matched = true;\n break;\n }\n }\n if (matched)\n break;\n }\n if (!matched)\n return false;\n }\n return true;\n },\n };\n }\n /**\n * ### JSTypeChecker.addCustomHandler\n * Create a custom handler for checking types.\n */\n addCustomHandler(name, handler) {\n if (!(typeof name === \"string\" && typeof handler === \"function\")) {\n console.warn(`[JSTC.addCustomHandler] @briklab/lib/jstc: Invalid Arguments!\r\n Hint: The first argument must be a string, and the second argument must be a function\r\n Using String(argument1) and ()=>false as fallbacks`);\n name = String(name);\n handler = () => false;\n }\n __classPrivateFieldGet(this, _JSTypeChecker___CustomHandler, \"f\")[name] = handler;\n }\n}\n_JSTypeChecker___CustomHandler = new WeakMap();\nconst JSTC = new JSTypeChecker();\nexport default JSTC;\n"],
|
|
5
|
+
"mappings": "AAMA,IAAIA,EAAkE,SAAUC,EAAUC,EAAOC,EAAMC,EAAG,CACtG,GAAID,IAAS,KAAO,CAACC,EAAG,MAAM,IAAI,UAAU,+CAA+C,EAC3F,GAAI,OAAOF,GAAU,WAAaD,IAAaC,GAAS,CAACE,EAAI,CAACF,EAAM,IAAID,CAAQ,EAAG,MAAM,IAAI,UAAU,0EAA0E,EACjL,OAAOE,IAAS,IAAMC,EAAID,IAAS,IAAMC,EAAE,KAAKH,CAAQ,EAAIG,EAAIA,EAAE,MAAQF,EAAM,IAAID,CAAQ,CAChG,EACII,EAKSC,EAAN,KAAoB,CACvB,aAAc,CACVD,EAA+B,IAAI,KAAM,CACrC,MAAQE,GAAU,MAAM,QAAQA,CAAK,EACrC,WAAaA,GAAU,MAAM,QAAQA,CAAK,GAAKA,EAAM,MAAOC,GAAM,OAAOA,GAAM,QAAQ,CAC3F,CAAC,CACL,CAMA,IAAIC,EAAM,CACN,OAAK,MAAM,QAAQA,CAAI,IACnB,QAAQ,KAAK;AAAA;AAAA,uCAEc,EAC3BA,EAAO,CAACA,CAAI,GAET,CAKH,MAAQC,GAAU,CACd,GAAID,EAAK,OAASC,EAAM,OACpB,MAAO,GACX,QAASC,EAAI,EAAGA,EAAID,EAAM,OAAQC,IAAK,CACnC,IAAMJ,EAAQE,EAAKE,CAAC,EACdC,EAAWF,EAAMC,CAAC,EAClBE,EAAgB,MAAM,QAAQD,CAAQ,EAAIA,EAAW,CAACA,CAAQ,EAChEE,EAAU,GACd,QAAWC,KAAQF,EAAe,CAC9B,IAAMG,EAAa,OAAOD,GAAS,SAAWA,EAAK,MAAM,GAAG,EAAI,CAACA,CAAI,EACrE,QAAWE,KAAKD,EACZ,GAAI,OAAOC,GAAM,YACb,GAAIV,aAAiBU,EAAG,CACpBH,EAAU,GACV,KACJ,UAEK,OAAOG,GAAM,UAAYjB,EAAuB,KAAMK,EAAgC,GAAG,EAAEY,CAAC,GACjG,GAAIjB,EAAuB,KAAMK,EAAgC,GAAG,EAAEY,CAAC,EAAEV,CAAK,EAAG,CAC7EO,EAAU,GACV,KACJ,UAEK,OAAOP,IAAUU,EAAG,CACzBH,EAAU,GACV,KACJ,CAEJ,GAAIA,EACA,KACR,CACA,GAAI,CAACA,EACD,MAAO,EACf,CACA,MAAO,EACX,CACJ,CACJ,CAKA,iBAAiBI,EAAMC,EAAS,CACtB,OAAOD,GAAS,UAAY,OAAOC,GAAY,aACjD,QAAQ,KAAK;AAAA;AAAA,2DAEkC,EAC/CD,EAAO,OAAOA,CAAI,EAClBC,EAAU,IAAM,IAEpBnB,EAAuB,KAAMK,EAAgC,GAAG,EAAEa,CAAI,EAAIC,CAC9E,CACJ,EACAd,EAAiC,IAAI,QACrC,IAAMe,EAAO,IAAId,EACVe,EAAQD",
|
|
6
6
|
"names": ["__classPrivateFieldGet", "receiver", "state", "kind", "f", "_JSTypeChecker___CustomHandler", "JSTypeChecker", "value", "v", "args", "types", "i", "expected", "expectedTypes", "matched", "tRaw", "unionTypes", "t", "name", "handler", "JSTC", "index_default"]
|
|
7
7
|
}
|
package/dist/stylesheet/index.js
CHANGED
|
@@ -1,27 +1,25 @@
|
|
|
1
|
-
var dt=Object.create;var Ue=Object.defineProperty;var gt=Object.getOwnPropertyDescriptor;var mt=Object.getOwnPropertyNames;var bt=Object.getPrototypeOf,vt=Object.prototype.hasOwnProperty;var h=(i,e)=>()=>(e||i((e={exports:{}}).exports,e),e.exports);var xt=(i,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let l of mt(e))!vt.call(i,l)&&l!==t&&Ue(i,l,{get:()=>e[l],enumerable:!(r=gt(e,l))||r.enumerable});return i};var wt=(i,e,t)=>(t=i!=null?dt(bt(i)):{},xt(e||!i||!i.__esModule?Ue(t,"default",{value:i,enumerable:!0}):t,i));var we=h(Ne=>{var Ke={};Ke.StyleSheet=function(){this.parentStyleSheet=null};Ne.StyleSheet=Ke.StyleSheet});var d=h(
|
|
1
|
+
var dt=Object.create;var Ue=Object.defineProperty;var gt=Object.getOwnPropertyDescriptor;var mt=Object.getOwnPropertyNames;var bt=Object.getPrototypeOf,vt=Object.prototype.hasOwnProperty;var h=(i,e)=>()=>(e||i((e={exports:{}}).exports,e),e.exports);var xt=(i,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let l of mt(e))!vt.call(i,l)&&l!==t&&Ue(i,l,{get:()=>e[l],enumerable:!(r=gt(e,l))||r.enumerable});return i};var wt=(i,e,t)=>(t=i!=null?dt(bt(i)):{},xt(e||!i||!i.__esModule?Ue(t,"default",{value:i,enumerable:!0}):t,i));var we=h(Ne=>{var Ke={};Ke.StyleSheet=function(){this.parentStyleSheet=null};Ne.StyleSheet=Ke.StyleSheet});var d=h(Ge=>{var f={};f.CSSRule=function(){this.parentRule=null,this.parentStyleSheet=null};f.CSSRule.UNKNOWN_RULE=0;f.CSSRule.STYLE_RULE=1;f.CSSRule.CHARSET_RULE=2;f.CSSRule.IMPORT_RULE=3;f.CSSRule.MEDIA_RULE=4;f.CSSRule.FONT_FACE_RULE=5;f.CSSRule.PAGE_RULE=6;f.CSSRule.KEYFRAMES_RULE=7;f.CSSRule.KEYFRAME_RULE=8;f.CSSRule.MARGIN_RULE=9;f.CSSRule.NAMESPACE_RULE=10;f.CSSRule.COUNTER_STYLE_RULE=11;f.CSSRule.SUPPORTS_RULE=12;f.CSSRule.DOCUMENT_RULE=13;f.CSSRule.FONT_FEATURE_VALUES_RULE=14;f.CSSRule.VIEWPORT_RULE=15;f.CSSRule.REGION_STYLE_RULE=16;f.CSSRule.prototype={constructor:f.CSSRule};Ge.CSSRule=f.CSSRule});var Q=h(je=>{var g={CSSStyleDeclaration:V().CSSStyleDeclaration,CSSRule:d().CSSRule};g.CSSStyleRule=function(){g.CSSRule.call(this),this.selectorText="",this.style=new g.CSSStyleDeclaration,this.style.parentRule=this};g.CSSStyleRule.prototype=new g.CSSRule;g.CSSStyleRule.prototype.constructor=g.CSSStyleRule;g.CSSStyleRule.prototype.type=1;Object.defineProperty(g.CSSStyleRule.prototype,"cssText",{get:function(){var i;return this.selectorText?i=this.selectorText+" {"+this.style.cssText+"}":i="",i},set:function(i){var e=g.CSSStyleRule.parse(i);this.style=e.style,this.selectorText=e.selectorText}});g.CSSStyleRule.parse=function(i){for(var e=0,t="selector",r,l=e,s="",n={selector:!0,value:!0},o=new g.CSSStyleRule,S,u="",a;a=i.charAt(e);e++)switch(a){case" ":case" ":case"\r":case`
|
|
2
2
|
`:case"\f":if(n[t])switch(i.charAt(e-1)){case" ":case" ":case"\r":case`
|
|
3
|
-
`:case"\f":break;default:s+=" ";break}break;case'"':if(l=e+1,r=i.indexOf('"',l)+1,!r)throw'" is missing';s+=i.slice(e,r),e=r-1;break;case"'":if(l=e+1,r=i.indexOf("'",l)+1,!r)throw"' is missing";s+=i.slice(e,r),e=r-1;break;case"/":if(i.charAt(e+1)==="*"){if(e+=2,r=i.indexOf("*/",e),r===-1)throw new SyntaxError("Missing */");e=r+1}else s+=a;break;case"{":t==="selector"&&(o.selectorText=s.trim(),s="",t="name");break;case":":t==="name"?(S=s.trim(),s="",t="value"):s+=a;break;case"!":t==="value"&&i.indexOf("!important",e)===e?(u="important",e+=9):s+=a;break;case";":t==="value"?(o.style.setProperty(S,s.trim(),u),u="",s="",t="name"):s+=a;break;case"}":if(t==="value")o.style.setProperty(S,s.trim(),u),u="",s="";else{if(t==="name")break;s+=a}t="selector";break;default:s+=a;break}return o};
|
|
4
|
-
`;return i};We.CSSStyleSheet=b.CSSStyleSheet;b.parse=ne().parse});var ae=h(Be=>{var oe={};oe.MediaList=function(){this.length=0};oe.MediaList.prototype={constructor:oe.MediaList,get mediaText(){return Array.prototype.join.call(this,", ")},set mediaText(i){for(var e=i.split(","),t=this.length=e.length,r=0;r<t;r++)this[r]=e[r].trim()},appendMedium:function(i){Array.prototype.indexOf.call(this,i)===-1&&(this[this.length]=i,this.length++)},deleteMedium:function(i){var e=Array.prototype.indexOf.call(this,i);e!==-1&&Array.prototype.splice.call(this,e,1)}};Be.MediaList=oe.MediaList});var
|
|
5
|
-
`:case"\f":t==="after-import"?t="url":r+=s;break;case"@":!t&&i.indexOf("@import",e)===e&&(t="after-import",e+=6,r="");break;case"u":if(t==="url"&&i.indexOf("url(",e)===e){if(l=i.indexOf(")",e+1),l===-1)throw e+': ")" not found';e+=4;var n=i.slice(e,l);n[0]===n[n.length-1]&&(n[0]==='"'||n[0]==="'")&&(n=n.slice(1,-1)),this.href=n,e=l,t="media"}break;case'"':if(t==="url"){if(l=i.indexOf('"',e+1),!l)throw e+`: '"' not found`;this.href=i.slice(e+1,l),e=l,t="media"}break;case"'":if(t==="url"){if(l=i.indexOf("'",e+1),!l)throw e+`: "'" not found`;this.href=i.slice(e+1,l),e=l,t="media"}break;case";":t==="media"&&r&&(this.media.mediaText=r.trim());break;default:t==="media"&&(r+=s);break}}});Je.CSSImportRule=w.CSSImportRule});var U=h(Ye=>{var
|
|
3
|
+
`:case"\f":break;default:s+=" ";break}break;case'"':if(l=e+1,r=i.indexOf('"',l)+1,!r)throw'" is missing';s+=i.slice(e,r),e=r-1;break;case"'":if(l=e+1,r=i.indexOf("'",l)+1,!r)throw"' is missing";s+=i.slice(e,r),e=r-1;break;case"/":if(i.charAt(e+1)==="*"){if(e+=2,r=i.indexOf("*/",e),r===-1)throw new SyntaxError("Missing */");e=r+1}else s+=a;break;case"{":t==="selector"&&(o.selectorText=s.trim(),s="",t="name");break;case":":t==="name"?(S=s.trim(),s="",t="value"):s+=a;break;case"!":t==="value"&&i.indexOf("!important",e)===e?(u="important",e+=9):s+=a;break;case";":t==="value"?(o.style.setProperty(S,s.trim(),u),u="",s="",t="name"):s+=a;break;case"}":if(t==="value")o.style.setProperty(S,s.trim(),u),u="",s="";else{if(t==="name")break;s+=a}t="selector";break;default:s+=a;break}return o};je.CSSStyleRule=g.CSSStyleRule});var ee=h(We=>{var b={StyleSheet:we().StyleSheet,CSSStyleRule:Q().CSSStyleRule};b.CSSStyleSheet=function(){b.StyleSheet.call(this),this.cssRules=[]};b.CSSStyleSheet.prototype=new b.StyleSheet;b.CSSStyleSheet.prototype.constructor=b.CSSStyleSheet;b.CSSStyleSheet.prototype.insertRule=function(i,e){if(e<0||e>this.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");var t=b.parse(i).cssRules[0];return t.parentStyleSheet=this,this.cssRules.splice(e,0,t),e};b.CSSStyleSheet.prototype.deleteRule=function(i){if(i<0||i>=this.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");this.cssRules.splice(i,1)};b.CSSStyleSheet.prototype.toString=function(){for(var i="",e=this.cssRules,t=0;t<e.length;t++)i+=e[t].cssText+`
|
|
4
|
+
`;return i};We.CSSStyleSheet=b.CSSStyleSheet;b.parse=ne().parse});var ae=h(Be=>{var oe={};oe.MediaList=function(){this.length=0};oe.MediaList.prototype={constructor:oe.MediaList,get mediaText(){return Array.prototype.join.call(this,", ")},set mediaText(i){for(var e=i.split(","),t=this.length=e.length,r=0;r<t;r++)this[r]=e[r].trim()},appendMedium:function(i){Array.prototype.indexOf.call(this,i)===-1&&(this[this.length]=i,this.length++)},deleteMedium:function(i){var e=Array.prototype.indexOf.call(this,i);e!==-1&&Array.prototype.splice.call(this,e,1)}};Be.MediaList=oe.MediaList});var _e=h(Je=>{var w={CSSRule:d().CSSRule,CSSStyleSheet:ee().CSSStyleSheet,MediaList:ae().MediaList};w.CSSImportRule=function(){w.CSSRule.call(this),this.href="",this.media=new w.MediaList,this.styleSheet=new w.CSSStyleSheet};w.CSSImportRule.prototype=new w.CSSRule;w.CSSImportRule.prototype.constructor=w.CSSImportRule;w.CSSImportRule.prototype.type=3;Object.defineProperty(w.CSSImportRule.prototype,"cssText",{get:function(){var i=this.media.mediaText;return"@import url("+this.href+")"+(i?" "+i:"")+";"},set:function(i){for(var e=0,t="",r="",l,s;s=i.charAt(e);e++)switch(s){case" ":case" ":case"\r":case`
|
|
5
|
+
`:case"\f":t==="after-import"?t="url":r+=s;break;case"@":!t&&i.indexOf("@import",e)===e&&(t="after-import",e+=6,r="");break;case"u":if(t==="url"&&i.indexOf("url(",e)===e){if(l=i.indexOf(")",e+1),l===-1)throw e+': ")" not found';e+=4;var n=i.slice(e,l);n[0]===n[n.length-1]&&(n[0]==='"'||n[0]==="'")&&(n=n.slice(1,-1)),this.href=n,e=l,t="media"}break;case'"':if(t==="url"){if(l=i.indexOf('"',e+1),!l)throw e+`: '"' not found`;this.href=i.slice(e+1,l),e=l,t="media"}break;case"'":if(t==="url"){if(l=i.indexOf("'",e+1),!l)throw e+`: "'" not found`;this.href=i.slice(e+1,l),e=l,t="media"}break;case";":t==="media"&&r&&(this.media.mediaText=r.trim());break;default:t==="media"&&(r+=s);break}}});Je.CSSImportRule=w.CSSImportRule});var U=h(Ye=>{var k={CSSRule:d().CSSRule};k.CSSGroupingRule=function(){k.CSSRule.call(this),this.cssRules=[]};k.CSSGroupingRule.prototype=new k.CSSRule;k.CSSGroupingRule.prototype.constructor=k.CSSGroupingRule;k.CSSGroupingRule.prototype.insertRule=function(e,t){if(t<0||t>this.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");var r=k.parse(e).cssRules[0];return r.parentRule=this,this.cssRules.splice(t,0,r),t};k.CSSGroupingRule.prototype.deleteRule=function(e){if(e<0||e>=this.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");this.cssRules.splice(e,1)[0].parentRule=null};Ye.CSSGroupingRule=k.CSSGroupingRule});var N=h(Ze=>{var $={CSSRule:d().CSSRule,CSSGroupingRule:U().CSSGroupingRule};$.CSSConditionRule=function(){$.CSSGroupingRule.call(this),this.cssRules=[]};$.CSSConditionRule.prototype=new $.CSSGroupingRule;$.CSSConditionRule.prototype.constructor=$.CSSConditionRule;$.CSSConditionRule.prototype.conditionText="";$.CSSConditionRule.prototype.cssText="";Ze.CSSConditionRule=$.CSSConditionRule});var Se=h(Xe=>{var T={CSSRule:d().CSSRule,CSSGroupingRule:U().CSSGroupingRule,CSSConditionRule:N().CSSConditionRule,MediaList:ae().MediaList};T.CSSMediaRule=function(){T.CSSConditionRule.call(this),this.media=new T.MediaList};T.CSSMediaRule.prototype=new T.CSSConditionRule;T.CSSMediaRule.prototype.constructor=T.CSSMediaRule;T.CSSMediaRule.prototype.type=4;Object.defineProperties(T.CSSMediaRule.prototype,{conditionText:{get:function(){return this.media.mediaText},set:function(i){this.media.mediaText=i},configurable:!0,enumerable:!0},cssText:{get:function(){for(var i=[],e=0,t=this.cssRules.length;e<t;e++)i.push(this.cssRules[e].cssText);return"@media "+this.media.mediaText+" {"+i.join("")+"}"},configurable:!0,enumerable:!0}});Xe.CSSMediaRule=T.CSSMediaRule});var ue=h(ze=>{var q={CSSRule:d().CSSRule,CSSGroupingRule:U().CSSGroupingRule,CSSConditionRule:N().CSSConditionRule};q.CSSSupportsRule=function(){q.CSSConditionRule.call(this)};q.CSSSupportsRule.prototype=new q.CSSConditionRule;q.CSSSupportsRule.prototype.constructor=q.CSSSupportsRule;q.CSSSupportsRule.prototype.type=12;Object.defineProperty(q.CSSSupportsRule.prototype,"cssText",{get:function(){for(var i=[],e=0,t=this.cssRules.length;e<t;e++)i.push(this.cssRules[e].cssText);return"@supports "+this.conditionText+" {"+i.join("")+"}"}});ze.CSSSupportsRule=q.CSSSupportsRule});var ke=h(Qe=>{var M={CSSStyleDeclaration:V().CSSStyleDeclaration,CSSRule:d().CSSRule};M.CSSFontFaceRule=function(){M.CSSRule.call(this),this.style=new M.CSSStyleDeclaration,this.style.parentRule=this};M.CSSFontFaceRule.prototype=new M.CSSRule;M.CSSFontFaceRule.prototype.constructor=M.CSSFontFaceRule;M.CSSFontFaceRule.prototype.type=5;Object.defineProperty(M.CSSFontFaceRule.prototype,"cssText",{get:function(){return"@font-face {"+this.style.cssText+"}"}});Qe.CSSFontFaceRule=M.CSSFontFaceRule});var Te=h(et=>{var P={CSSRule:d().CSSRule};P.CSSHostRule=function(){P.CSSRule.call(this),this.cssRules=[]};P.CSSHostRule.prototype=new P.CSSRule;P.CSSHostRule.prototype.constructor=P.CSSHostRule;P.CSSHostRule.prototype.type=1001;Object.defineProperty(P.CSSHostRule.prototype,"cssText",{get:function(){for(var i=[],e=0,t=this.cssRules.length;e<t;e++)i.push(this.cssRules[e].cssText);return"@host {"+i.join("")+"}"}});et.CSSHostRule=P.CSSHostRule});var ce=h(tt=>{var E={CSSRule:d().CSSRule,CSSStyleDeclaration:V().CSSStyleDeclaration};E.CSSKeyframeRule=function(){E.CSSRule.call(this),this.keyText="",this.style=new E.CSSStyleDeclaration,this.style.parentRule=this};E.CSSKeyframeRule.prototype=new E.CSSRule;E.CSSKeyframeRule.prototype.constructor=E.CSSKeyframeRule;E.CSSKeyframeRule.prototype.type=8;Object.defineProperty(E.CSSKeyframeRule.prototype,"cssText",{get:function(){return this.keyText+" {"+this.style.cssText+"} "}});tt.CSSKeyframeRule=E.CSSKeyframeRule});var he=h(rt=>{var L={CSSRule:d().CSSRule};L.CSSKeyframesRule=function(){L.CSSRule.call(this),this.name="",this.cssRules=[]};L.CSSKeyframesRule.prototype=new L.CSSRule;L.CSSKeyframesRule.prototype.constructor=L.CSSKeyframesRule;L.CSSKeyframesRule.prototype.type=7;Object.defineProperty(L.CSSKeyframesRule.prototype,"cssText",{get:function(){for(var i=[],e=0,t=this.cssRules.length;e<t;e++)i.push(" "+this.cssRules[e].cssText);return"@"+(this._vendorPrefix||"")+"keyframes "+this.name+` {
|
|
6
6
|
`+i.join(`
|
|
7
7
|
`)+`
|
|
8
|
-
}`}});rt.CSSKeyframesRule=L.CSSKeyframesRule});var Me=h(it=>{var pe={};pe.CSSValue=function(){};pe.CSSValue.prototype={constructor:pe.CSSValue,set cssText(i){var e=this._getConstructorName();throw new Error('DOMException: property "cssText" of "'+e+'" is readonly and can not be replaced with "'+i+'"!')},get cssText(){var i=this._getConstructorName();throw new Error('getter "cssText" of "'+i+'" is not implemented!')},_getConstructorName:function(){var i=this.constructor.toString(),e=i.match(/function\s([^\(]+)/),t=e[1];return t}};it.CSSValue=pe.CSSValue});var Ee=h(st=>{var
|
|
9
|
-
`:t==="*"&&(n="*/"),s=i.indexOf(n,l+1+1),s!==-1)return s=s+n.length-1,r=i.substring(e,s+1),{idx:s,text:r};var o="css expression error: unfinished comment in expression!";return{error:o}}else return!1};
|
|
10
|
-
`,e+1);return S<l&&(l=s),l};st.CSSValueExpression=
|
|
8
|
+
}`}});rt.CSSKeyframesRule=L.CSSKeyframesRule});var Me=h(it=>{var pe={};pe.CSSValue=function(){};pe.CSSValue.prototype={constructor:pe.CSSValue,set cssText(i){var e=this._getConstructorName();throw new Error('DOMException: property "cssText" of "'+e+'" is readonly and can not be replaced with "'+i+'"!')},get cssText(){var i=this._getConstructorName();throw new Error('getter "cssText" of "'+i+'" is not implemented!')},_getConstructorName:function(){var i=this.constructor.toString(),e=i.match(/function\s([^\(]+)/),t=e[1];return t}};it.CSSValue=pe.CSSValue});var Ee=h(st=>{var _={CSSValue:Me().CSSValue};_.CSSValueExpression=function(e,t){this._token=e,this._idx=t};_.CSSValueExpression.prototype=new _.CSSValue;_.CSSValueExpression.prototype.constructor=_.CSSValueExpression;_.CSSValueExpression.prototype.parse=function(){for(var i=this._token,e=this._idx,t="",r="",l="",s,n=[];;++e){if(t=i.charAt(e),t===""){l="css expression error: unfinished expression!";break}switch(t){case"(":n.push(t),r+=t;break;case")":n.pop(t),r+=t;break;case"/":(s=this._parseJSComment(i,e))?s.error?l="css expression error: unfinished comment in expression!":e=s.idx:(s=this._parseJSRexExp(i,e))?(e=s.idx,r+=s.text):r+=t;break;case"'":case'"':s=this._parseJSString(i,e,t),s?(e=s.idx,r+=s.text):r+=t;break;default:r+=t;break}if(l||n.length===0)break}var o;return l?o={error:l}:o={idx:e,expression:r},o};_.CSSValueExpression.prototype._parseJSComment=function(i,e){var t=i.charAt(e+1),r;if(t==="/"||t==="*"){var l=e,s,n;if(t==="/"?n=`
|
|
9
|
+
`:t==="*"&&(n="*/"),s=i.indexOf(n,l+1+1),s!==-1)return s=s+n.length-1,r=i.substring(e,s+1),{idx:s,text:r};var o="css expression error: unfinished comment in expression!";return{error:o}}else return!1};_.CSSValueExpression.prototype._parseJSString=function(i,e,t){var r=this._findMatchedIdx(i,e,t),l;return r===-1?!1:(l=i.substring(e,r+t.length),{idx:r,text:l})};_.CSSValueExpression.prototype._parseJSRexExp=function(i,e){var t=i.substring(0,e).replace(/\s+$/,""),r=[/^$/,/\($/,/\[$/,/\!$/,/\+$/,/\-$/,/\*$/,/\/\s+/,/\%$/,/\=$/,/\>$/,/<$/,/\&$/,/\|$/,/\^$/,/\~$/,/\?$/,/\,$/,/delete$/,/in$/,/instanceof$/,/new$/,/typeof$/,/void$/],l=r.some(function(n){return n.test(t)});if(l){var s="/";return this._parseJSString(i,e,s)}else return!1};_.CSSValueExpression.prototype._findMatchedIdx=function(i,e,t){for(var r=e,l,s=-1;;)if(l=i.indexOf(t,r+1),l===-1){l=s;break}else{var n=i.substring(e+1,l),o=n.match(/\\+$/);if(!o||o[0]%2===0)break;r=l}var S=i.indexOf(`
|
|
10
|
+
`,e+1);return S<l&&(l=s),l};st.CSSValueExpression=_.CSSValueExpression});var Ie=h(lt=>{var fe={};fe.MatcherList=function(){this.length=0};fe.MatcherList.prototype={constructor:fe.MatcherList,get matcherText(){return Array.prototype.join.call(this,", ")},set matcherText(i){for(var e=i.split(","),t=this.length=e.length,r=0;r<t;r++)this[r]=e[r].trim()},appendMatcher:function(i){Array.prototype.indexOf.call(this,i)===-1&&(this[this.length]=i,this.length++)},deleteMatcher:function(i){var e=Array.prototype.indexOf.call(this,i);e!==-1&&Array.prototype.splice.call(this,e,1)}};lt.MatcherList=fe.MatcherList});var Oe=h(nt=>{var I={CSSRule:d().CSSRule,MatcherList:Ie().MatcherList};I.CSSDocumentRule=function(){I.CSSRule.call(this),this.matcher=new I.MatcherList,this.cssRules=[]};I.CSSDocumentRule.prototype=new I.CSSRule;I.CSSDocumentRule.prototype.constructor=I.CSSDocumentRule;I.CSSDocumentRule.prototype.type=10;Object.defineProperty(I.CSSDocumentRule.prototype,"cssText",{get:function(){for(var i=[],e=0,t=this.cssRules.length;e<t;e++)i.push(this.cssRules[e].cssText);return"@-moz-document "+this.matcher.matcherText+" {"+i.join("")+"}"}});nt.CSSDocumentRule=I.CSSDocumentRule});var ne=h(ot=>{var c={};c.parse=function(e){for(var t=0,r="before-selector",l,s="",n=0,o={selector:!0,value:!0,"value-parenthesis":!0,atRule:!0,"importRule-begin":!0,importRule:!0,atBlock:!0,conditionBlock:!0,"documentRule-begin":!0},S=new c.CSSStyleSheet,u=S,a,x=[],D=!1,De,ve,W="",R,B,J,Y,Z,H,K,re,Ae=/@(-(?:\w+-)+)?keyframes/g,X=function(yt){var Fe=e.substring(0,t).split(`
|
|
11
11
|
`),He=Fe.length,Ve=Fe.pop().length+1,le=new Error(yt+" (line "+He+", char "+Ve+")");throw le.line=He,le.char=Ve,le.styleSheet=S,le},y;y=e.charAt(t);t++)switch(y){case" ":case" ":case"\r":case`
|
|
12
|
-
`:case"\f":o[r]&&(s+=y);break;case'"':l=t+1;do l=e.indexOf('"',l)+1,l||X('Unmatched "');while(e[l-2]==="\\");switch(s+=e.slice(t,l),t=l-1,r){case"before-value":r="value";break;case"importRule-begin":r="importRule";break}break;case"'":l=t+1;do l=e.indexOf("'",l)+1,l||X("Unmatched '");while(e[l-2]==="\\");switch(s+=e.slice(t,l),t=l-1,r){case"before-value":r="value";break;case"importRule-begin":r="importRule";break}break;case"/":e.charAt(t+1)==="*"?(t+=2,l=e.indexOf("*/",t),l===-1?X("Missing */"):t=l+1):s+=y,r==="importRule-begin"&&(s+=" ",r="importRule");break;case"@":if(e.indexOf("@-moz-document",t)===t){r="documentRule-begin",K=new c.CSSDocumentRule,K.__starts=t,t+=13,s="";break}else if(e.indexOf("@media",t)===t){r="atBlock",B=new c.CSSMediaRule,B.__starts=t,t+=5,s="";break}else if(e.indexOf("@supports",t)===t){r="conditionBlock",J=new c.CSSSupportsRule,J.__starts=t,t+=8,s="";break}else if(e.indexOf("@host",t)===t){r="hostRule-begin",t+=4,re=new c.CSSHostRule,re.__starts=t,s="";break}else if(e.indexOf("@import",t)===t){r="importRule-begin",t+=6,s+="@import";break}else if(e.indexOf("@font-face",t)===t){r="fontFaceRule-begin",t+=9,Z=new c.CSSFontFaceRule,Z.__starts=t,s="";break}else{Ae.lastIndex=t;var ie=Ae.exec(e);if(ie&&ie.index===t){r="keyframesRule-begin",H=new c.CSSKeyframesRule,H.__starts=t,H._vendorPrefix=ie[1],t+=ie[0].length-1,s="";break}else r==="selector"&&(r="atRule")}s+=y;break;case"{":r==="selector"||r==="atRule"?(R.selectorText=s.trim(),R.style.__starts=t,s="",r="before-name"):r==="atBlock"?(B.media.mediaText=s.trim(),a&&x.push(a),u=a=B,B.parentStyleSheet=S,s="",r="before-selector"):r==="conditionBlock"?(J.conditionText=s.trim(),a&&x.push(a),u=a=J,J.parentStyleSheet=S,s="",r="before-selector"):r==="hostRule-begin"?(a&&x.push(a),u=a=re,re.parentStyleSheet=S,s="",r="before-selector"):r==="fontFaceRule-begin"?(a&&(Z.parentRule=a),Z.parentStyleSheet=S,R=Z,s="",r="before-name"):r==="keyframesRule-begin"?(H.name=s.trim(),a&&(x.push(a),H.parentRule=a),H.parentStyleSheet=S,u=a=H,s="",r="keyframeRule-begin"):r==="keyframeRule-begin"?(R=new c.CSSKeyframeRule,R.keyText=s.trim(),R.__starts=t,s="",r="before-name"):r==="documentRule-begin"&&(K.matcher.matcherText=s.trim(),a&&(x.push(a),K.parentRule=a),u=a=K,K.parentStyleSheet=S,s="",r="before-selector");break;case":":r==="name"?(ve=s.trim(),s="",r="before-value"):s+=y;break;case"(":if(r==="value")if(s.trim()==="expression"){var se=new c.CSSValueExpression(e,t).parse();se.error?X(se.error):(s+=se.expression,t=se.idx)}else r="value-parenthesis",n=1,s+=y;else r==="value-parenthesis"&&n++,s+=y;break;case")":r==="value-parenthesis"&&(n--,n===0&&(r="value")),s+=y;break;case"!":r==="value"&&e.indexOf("!important",t)===t?(W="important",t+=9):s+=y;break;case";":switch(r){case"value":R.style.setProperty(ve,s.trim(),W),W="",s="",r="before-name";break;case"atRule":s="",r="before-selector";break;case"importRule":Y=new c.CSSImportRule,Y.parentStyleSheet=Y.styleSheet.parentStyleSheet=S,Y.cssText=s+y,S.cssRules.push(Y),s="",r="before-selector";break;default:s+=y;break}break;case"}":switch(r){case"value":R.style.setProperty(ve,s.trim(),W),W="";case"before-name":case"name":R.__ends=t+1,a&&(R.parentRule=a),R.parentStyleSheet=S,u.cssRules.push(R),s="",u.constructor===c.CSSKeyframesRule?r="keyframeRule-begin":r="before-selector";break;case"keyframeRule-begin":case"before-selector":case"selector":for(a||X("Unexpected }"),D=x.length>0;x.length>0;){if(a=x.pop(),a.constructor.name==="CSSMediaRule"||a.constructor.name==="CSSSupportsRule"){De=u,u=a,u.cssRules.push(De);break}x.length===0&&(D=!1)}D||(u.__ends=t+1,S.cssRules.push(u),u=S,a=null),s="",r="before-selector";break}break;default:switch(r){case"before-selector":r="selector",R=new c.CSSStyleRule,R.__starts=t;break;case"before-name":r="name";break;case"before-value":r="value";break;case"importRule-begin":r="importRule";break}s+=y;break}return S};ot.parse=c.parse;c.CSSStyleSheet=ee().CSSStyleSheet;c.CSSStyleRule=Q().CSSStyleRule;c.CSSImportRule=
|
|
12
|
+
`:case"\f":o[r]&&(s+=y);break;case'"':l=t+1;do l=e.indexOf('"',l)+1,l||X('Unmatched "');while(e[l-2]==="\\");switch(s+=e.slice(t,l),t=l-1,r){case"before-value":r="value";break;case"importRule-begin":r="importRule";break}break;case"'":l=t+1;do l=e.indexOf("'",l)+1,l||X("Unmatched '");while(e[l-2]==="\\");switch(s+=e.slice(t,l),t=l-1,r){case"before-value":r="value";break;case"importRule-begin":r="importRule";break}break;case"/":e.charAt(t+1)==="*"?(t+=2,l=e.indexOf("*/",t),l===-1?X("Missing */"):t=l+1):s+=y,r==="importRule-begin"&&(s+=" ",r="importRule");break;case"@":if(e.indexOf("@-moz-document",t)===t){r="documentRule-begin",K=new c.CSSDocumentRule,K.__starts=t,t+=13,s="";break}else if(e.indexOf("@media",t)===t){r="atBlock",B=new c.CSSMediaRule,B.__starts=t,t+=5,s="";break}else if(e.indexOf("@supports",t)===t){r="conditionBlock",J=new c.CSSSupportsRule,J.__starts=t,t+=8,s="";break}else if(e.indexOf("@host",t)===t){r="hostRule-begin",t+=4,re=new c.CSSHostRule,re.__starts=t,s="";break}else if(e.indexOf("@import",t)===t){r="importRule-begin",t+=6,s+="@import";break}else if(e.indexOf("@font-face",t)===t){r="fontFaceRule-begin",t+=9,Z=new c.CSSFontFaceRule,Z.__starts=t,s="";break}else{Ae.lastIndex=t;var ie=Ae.exec(e);if(ie&&ie.index===t){r="keyframesRule-begin",H=new c.CSSKeyframesRule,H.__starts=t,H._vendorPrefix=ie[1],t+=ie[0].length-1,s="";break}else r==="selector"&&(r="atRule")}s+=y;break;case"{":r==="selector"||r==="atRule"?(R.selectorText=s.trim(),R.style.__starts=t,s="",r="before-name"):r==="atBlock"?(B.media.mediaText=s.trim(),a&&x.push(a),u=a=B,B.parentStyleSheet=S,s="",r="before-selector"):r==="conditionBlock"?(J.conditionText=s.trim(),a&&x.push(a),u=a=J,J.parentStyleSheet=S,s="",r="before-selector"):r==="hostRule-begin"?(a&&x.push(a),u=a=re,re.parentStyleSheet=S,s="",r="before-selector"):r==="fontFaceRule-begin"?(a&&(Z.parentRule=a),Z.parentStyleSheet=S,R=Z,s="",r="before-name"):r==="keyframesRule-begin"?(H.name=s.trim(),a&&(x.push(a),H.parentRule=a),H.parentStyleSheet=S,u=a=H,s="",r="keyframeRule-begin"):r==="keyframeRule-begin"?(R=new c.CSSKeyframeRule,R.keyText=s.trim(),R.__starts=t,s="",r="before-name"):r==="documentRule-begin"&&(K.matcher.matcherText=s.trim(),a&&(x.push(a),K.parentRule=a),u=a=K,K.parentStyleSheet=S,s="",r="before-selector");break;case":":r==="name"?(ve=s.trim(),s="",r="before-value"):s+=y;break;case"(":if(r==="value")if(s.trim()==="expression"){var se=new c.CSSValueExpression(e,t).parse();se.error?X(se.error):(s+=se.expression,t=se.idx)}else r="value-parenthesis",n=1,s+=y;else r==="value-parenthesis"&&n++,s+=y;break;case")":r==="value-parenthesis"&&(n--,n===0&&(r="value")),s+=y;break;case"!":r==="value"&&e.indexOf("!important",t)===t?(W="important",t+=9):s+=y;break;case";":switch(r){case"value":R.style.setProperty(ve,s.trim(),W),W="",s="",r="before-name";break;case"atRule":s="",r="before-selector";break;case"importRule":Y=new c.CSSImportRule,Y.parentStyleSheet=Y.styleSheet.parentStyleSheet=S,Y.cssText=s+y,S.cssRules.push(Y),s="",r="before-selector";break;default:s+=y;break}break;case"}":switch(r){case"value":R.style.setProperty(ve,s.trim(),W),W="";case"before-name":case"name":R.__ends=t+1,a&&(R.parentRule=a),R.parentStyleSheet=S,u.cssRules.push(R),s="",u.constructor===c.CSSKeyframesRule?r="keyframeRule-begin":r="before-selector";break;case"keyframeRule-begin":case"before-selector":case"selector":for(a||X("Unexpected }"),D=x.length>0;x.length>0;){if(a=x.pop(),a.constructor.name==="CSSMediaRule"||a.constructor.name==="CSSSupportsRule"){De=u,u=a,u.cssRules.push(De);break}x.length===0&&(D=!1)}D||(u.__ends=t+1,S.cssRules.push(u),u=S,a=null),s="",r="before-selector";break}break;default:switch(r){case"before-selector":r="selector",R=new c.CSSStyleRule,R.__starts=t;break;case"before-name":r="name";break;case"before-value":r="value";break;case"importRule-begin":r="importRule";break}s+=y;break}return S};ot.parse=c.parse;c.CSSStyleSheet=ee().CSSStyleSheet;c.CSSStyleRule=Q().CSSStyleRule;c.CSSImportRule=_e().CSSImportRule;c.CSSGroupingRule=U().CSSGroupingRule;c.CSSMediaRule=Se().CSSMediaRule;c.CSSConditionRule=N().CSSConditionRule;c.CSSSupportsRule=ue().CSSSupportsRule;c.CSSFontFaceRule=ke().CSSFontFaceRule;c.CSSHostRule=Te().CSSHostRule;c.CSSStyleDeclaration=V().CSSStyleDeclaration;c.CSSKeyframeRule=ce().CSSKeyframeRule;c.CSSKeyframesRule=he().CSSKeyframesRule;c.CSSValueExpression=Ee().CSSValueExpression;c.CSSDocumentRule=Oe().CSSDocumentRule});var V=h(at=>{var G={};G.CSSStyleDeclaration=function(){this.length=0,this.parentRule=null,this._importants={}};G.CSSStyleDeclaration.prototype={constructor:G.CSSStyleDeclaration,getPropertyValue:function(i){return this[i]||""},setProperty:function(i,e,t){if(this[i]){var r=Array.prototype.indexOf.call(this,i);r<0&&(this[this.length]=i,this.length++)}else this[this.length]=i,this.length++;this[i]=e+"",this._importants[i]=t},removeProperty:function(i){if(!(i in this))return"";var e=Array.prototype.indexOf.call(this,i);if(e<0)return"";var t=this[i];return this[i]="",Array.prototype.splice.call(this,e,1),t},getPropertyCSSValue:function(){},getPropertyPriority:function(i){return this._importants[i]||""},getPropertyShorthand:function(){},isPropertyImplicit:function(){},get cssText(){for(var i=[],e=0,t=this.length;e<t;++e){var r=this[e],l=this.getPropertyValue(r),s=this.getPropertyPriority(r);s&&(s=" !"+s),i[e]=r+": "+l+s+";"}return i.join(" ")},set cssText(i){var e,t;for(e=this.length;e--;)t=this[e],this[t]="";Array.prototype.splice.call(this,0,this.length),this._importants={};var r=G.parse("#bogus{"+i+"}").cssRules[0].style,l=r.length;for(e=0;e<l;++e)t=r[e],this.setProperty(r[e],r.getPropertyValue(t),r.getPropertyPriority(t))}};at.CSSStyleDeclaration=G.CSSStyleDeclaration;G.parse=ne().parse});var ut=h(St=>{var Ce={CSSStyleSheet:ee().CSSStyleSheet,CSSRule:d().CSSRule,CSSStyleRule:Q().CSSStyleRule,CSSGroupingRule:U().CSSGroupingRule,CSSConditionRule:N().CSSConditionRule,CSSMediaRule:Se().CSSMediaRule,CSSSupportsRule:ue().CSSSupportsRule,CSSStyleDeclaration:V().CSSStyleDeclaration,CSSKeyframeRule:ce().CSSKeyframeRule,CSSKeyframesRule:he().CSSKeyframesRule};Ce.clone=function i(e){var t=new Ce.CSSStyleSheet,r=e.cssRules;if(!r)return t;for(var l=0,s=r.length;l<s;l++){var n=r[l],o=t.cssRules[l]=new n.constructor,S=n.style;if(S){for(var u=o.style=new Ce.CSSStyleDeclaration,a=0,x=S.length;a<x;a++){var D=u[a]=S[a];u[D]=S[D],u._importants[D]=S.getPropertyPriority(D)}u.length=S.length}n.hasOwnProperty("keyText")&&(o.keyText=n.keyText),n.hasOwnProperty("selectorText")&&(o.selectorText=n.selectorText),n.hasOwnProperty("mediaText")&&(o.mediaText=n.mediaText),n.hasOwnProperty("conditionText")&&(o.conditionText=n.conditionText),n.hasOwnProperty("cssRules")&&(o.cssRules=i(n).cssRules)}return t};St.clone=Ce.clone});var ct=h(p=>{"use strict";p.CSSStyleDeclaration=V().CSSStyleDeclaration;p.CSSRule=d().CSSRule;p.CSSGroupingRule=U().CSSGroupingRule;p.CSSConditionRule=N().CSSConditionRule;p.CSSStyleRule=Q().CSSStyleRule;p.MediaList=ae().MediaList;p.CSSMediaRule=Se().CSSMediaRule;p.CSSSupportsRule=ue().CSSSupportsRule;p.CSSImportRule=_e().CSSImportRule;p.CSSFontFaceRule=ke().CSSFontFaceRule;p.CSSHostRule=Te().CSSHostRule;p.StyleSheet=we().StyleSheet;p.CSSStyleSheet=ee().CSSStyleSheet;p.CSSKeyframesRule=he().CSSKeyframesRule;p.CSSKeyframeRule=ce().CSSKeyframeRule;p.MatcherList=Ie().MatcherList;p.CSSDocumentRule=Oe().CSSDocumentRule;p.CSSValue=Me().CSSValue;p.CSSValueExpression=Ee().CSSValueExpression;p.parse=ne().parse;p.clone=ut().clone});var xe=function(i,e,t,r){if(t==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?i!==e||!r:!e.has(i))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?r:t==="a"?r.call(i):r?r.value:e.get(i)},z,_t=class{constructor(){z.set(this,{Array:i=>Array.isArray(i),"string[]":i=>Array.isArray(i)&&i.every(e=>typeof e=="string")})}for(i){return Array.isArray(i)||(console.warn(`[JSTC.for] @briklab/lib/jstc: Invalid first argument!
|
|
13
13
|
Hint: The first argument must be a array.
|
|
14
|
-
Using [givenValue] as fallback`),i=[i]),{check:e=>{if(Array.isArray(e)||(console.warn(`[JSTC.
|
|
15
|
-
Hint: The first argument must be a valid array!
|
|
16
|
-
Using [givenValue] as fallback`),e=[e]),i.length<e.length)return!1;for(let t=0;t<e.length;t++){let r=i[t],l=e[t],s=Array.isArray(l)?l:[l],n=!1;for(let o of s){let S=typeof o=="string"?o.split("|"):[o];for(let u of S)if(typeof u=="function"){if(r instanceof u){n=!0;break}}else if(typeof u=="string"&&xe(this,z,"f")[u]){if(xe(this,z,"f")[u](r)){n=!0;break}}else if(typeof r===u){n=!0;break}if(n)break}if(!n)return!1}return!0}}}addCustomHandler(i,e){typeof i=="string"&&typeof e=="function"||(console.warn(`[JSTC.addCustomHandler] @briklab/lib/jstc: Invalid Arguments!
|
|
14
|
+
Using [givenValue] as fallback`),i=[i]),{check:e=>{if(i.length<e.length)return!1;for(let t=0;t<e.length;t++){let r=i[t],l=e[t],s=Array.isArray(l)?l:[l],n=!1;for(let o of s){let S=typeof o=="string"?o.split("|"):[o];for(let u of S)if(typeof u=="function"){if(r instanceof u){n=!0;break}}else if(typeof u=="string"&&xe(this,z,"f")[u]){if(xe(this,z,"f")[u](r)){n=!0;break}}else if(typeof r===u){n=!0;break}if(n)break}if(!n)return!1}return!0}}}addCustomHandler(i,e){typeof i=="string"&&typeof e=="function"||(console.warn(`[JSTC.addCustomHandler] @briklab/lib/jstc: Invalid Arguments!
|
|
17
15
|
Hint: The first argument must be a string, and the second argument must be a function
|
|
18
|
-
Using String(argument1) and ()=>false as fallbacks`),i=String(i),e=()=>!1),xe(this,z,"f")[i]=e}};z=new WeakMap;var
|
|
16
|
+
Using String(argument1) and ()=>false as fallbacks`),i=String(i),e=()=>!1),xe(this,z,"f")[i]=e}};z=new WeakMap;var kt=new _t,O=kt;var Le=wt(ct(),1);var m=function(i,e,t,r){if(t==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?i!==e||!r:!e.has(i))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?r:t==="a"?r.call(i):r?r.value:e.get(i)},C,$e,Re,ye,pt,qe,Pe,ht={red:"#ff0000",blue:"#0000ff",green:"#00ff00",yellow:"#ffff00",orange:"#ffa500",black:"#000000",white:"#ffffff",gray:"#808080"},j=class i{constructor(e){if(C.add(this),this.r=0,this.g=0,this.b=0,this.a=1,typeof e=="string")m(this,C,"m",pt).call(this,e);else if("r"in e&&"g"in e&&"b"in e)this.r=m(this,C,"m",Re).call(this,e.r),this.g=m(this,C,"m",Re).call(this,e.g),this.b=m(this,C,"m",Re).call(this,e.b),this.a=e.a??1;else if("h"in e&&"s"in e&&"l"in e){let{r:t,g:r,b:l}=m(this,C,"m",qe).call(this,e.h,e.s,e.l);this.r=t,this.g=r,this.b=l,this.a=e.a??1}else console.warn(`[Color.constructor] Invalid first argument!
|
|
19
17
|
Hint: The first argument must be a valid color array
|
|
20
18
|
Using black as fallback.`)}hex(){return`#${m(this,C,"m",ye).call(this,this.r)}${m(this,C,"m",ye).call(this,this.g)}${m(this,C,"m",ye).call(this,this.b)}`}rgb(){return`rgb(${this.r}, ${this.g}, ${this.b})`}rgba(){return`rgba(${this.r}, ${this.g}, ${this.b}, ${this.a})`}hsl(){let{h:e,s:t,l:r}=m(this,C,"m",Pe).call(this,this.r,this.g,this.b);return`hsl(${e}, ${t}%, ${r}%)`}hsla(){let{h:e,s:t,l:r}=m(this,C,"m",Pe).call(this,this.r,this.g,this.b);return`hsla(${e}, ${t}%, ${r}%, ${this.a})`}css(){return this.a===1?this.hex():this.rgba()}ansiTruecolor(){return`\x1B[38;2;${this.r};${this.g};${this.b}m`}ansiTruecolorBg(){return`\x1B[48;2;${this.r};${this.g};${this.b}m`}ansi256(){return`\x1B[38;5;${m(this,C,"m",$e).call(this,this.r,this.g,this.b)}m`}ansi256Bg(){return`\x1B[48;5;${m(this,C,"m",$e).call(this,this.r,this.g,this.b)}m`}wrapAnsi(e,t={}){let r=!!t.use256,l=t.background?r?this.ansi256Bg():this.ansiTruecolorBg():r?this.ansi256():this.ansiTruecolor();return`${`${t.bold?i.BOLD:""}${t.underline?i.UNDERLINE:""}`}${l}${e}${i.RESET}`}};C=new WeakSet,$e=function(e,t,r){if(e===t&&t===r)return e<8?16:e>248?231:Math.round((e-8)/247*24)+232;let l=S=>Math.round(S/255*5),s=l(e),n=l(t),o=l(r);return 16+36*s+6*n+o},Re=function(e){return Math.max(0,Math.min(255,e))},ye=function(e){return e.toString(16).padStart(2,"0")},pt=function(e){if(e=e.trim().toLowerCase(),ht[e]&&(e=ht[e]),e.startsWith("#")){let t=e.slice(1);t.length===3?(this.r=parseInt(t[0]+t[0],16),this.g=parseInt(t[1]+t[1],16),this.b=parseInt(t[2]+t[2],16)):t.length===6?(this.r=parseInt(t.slice(0,2),16),this.g=parseInt(t.slice(2,4),16),this.b=parseInt(t.slice(4,6),16)):console.warn(`[Color class] @briklab/lib/color: Invalid hex!
|
|
21
19
|
Hint: You must pass a valid hex color string!
|
|
22
20
|
Using black as fallback.`)}else if(e.startsWith("rgb")){let t=e.match(/[\d.]+/g)?.map(Number);t&&t.length>=3&&([this.r,this.g,this.b]=t,this.a=t[3]??1)}else if(e.startsWith("hsl")){let t=e.match(/[\d.]+/g)?.map(Number);if(t&&t.length>=3){let{r,g:l,b:s}=m(this,C,"m",qe).call(this,t[0],t[1],t[2]);this.r=r,this.g=l,this.b=s,this.a=t[3]??1}}else console.warn(`[Color class] @briklab/lib/color: Unknown color string "${e}"!
|
|
23
21
|
Hint: The argument must be a valid color string!
|
|
24
|
-
Using black as fallback.`)},qe=function(e,t,r){t/=100,r/=100;let l=o=>(o+e/30)%12,s=t*Math.min(r,1-r),n=o=>r-s*Math.max(-1,Math.min(l(o)-3,Math.min(9-l(o),1)));return{r:Math.round(n(0)*255),g:Math.round(n(8)*255),b:Math.round(n(4)*255)}},Pe=function(e,t,r){e/=255,t/=255,r/=255;let l=Math.max(e,t,r),s=Math.min(e,t,r),n=0,o=0,S=(l+s)/2;if(l!==s){let u=l-s;switch(o=S>.5?u/(2-l-s):u/(l+s),l){case e:n=(t-r)/u+(t<r?6:0);break;case t:n=(r-e)/u+2;break;case r:n=(e-t)/u+4;break}n*=60}return{h:Math.round(n),s:Math.round(o*100),l:Math.round(S*100)}};
|
|
22
|
+
Using black as fallback.`)},qe=function(e,t,r){t/=100,r/=100;let l=o=>(o+e/30)%12,s=t*Math.min(r,1-r),n=o=>r-s*Math.max(-1,Math.min(l(o)-3,Math.min(9-l(o),1)));return{r:Math.round(n(0)*255),g:Math.round(n(8)*255),b:Math.round(n(4)*255)}},Pe=function(e,t,r){e/=255,t/=255,r/=255;let l=Math.max(e,t,r),s=Math.min(e,t,r),n=0,o=0,S=(l+s)/2;if(l!==s){let u=l-s;switch(o=S>.5?u/(2-l-s):u/(l+s),l){case e:n=(t-r)/u+(t<r?6:0);break;case t:n=(r-e)/u+2;break;case r:n=(e-t)/u+4;break}n*=60}return{h:Math.round(n),s:Math.round(o*100),l:Math.round(S*100)}};j.RESET="\x1B[0m";j.BOLD="\x1B[1m";j.UNDERLINE="\x1B[4m";var te=j;var de=function(i,e,t,r,l){if(r==="m")throw new TypeError("Private method is not writable");if(r==="a"&&!l)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?i!==e||!l:!e.has(i))throw new TypeError("Cannot write private member to an object whose class did not declare it");return r==="a"?l.call(i,t):l?l.value=t:e.set(i,t),t},v=function(i,e,t,r){if(t==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?i!==e||!r:!e.has(i))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?r:t==="a"?r.call(i):r?r.value:e.get(i)},me,ge,ft,Rt,A,F,be=class{constructor(e){me.add(this),ge.set(this,void 0),A.set(this,void 0),O.for([e]).check(["object|undefined"])||(console.warn(`[InlineStyle class] @briklab/lib/stylesheet: Invalid first argument!
|
|
25
23
|
Hint: The first argument must be a valid style object or not be given!
|
|
26
24
|
Using {"imeMode":givenValue} as fallback`),e={imeMode:`${e}`}),de(this,A,e,"f"),de(this,ge,new Le.CSSStyleDeclaration,"f")}generate(){let e=v(this,ge,"f"),t=v(this,A,"f"),r=Object.keys(t),l=Object.values(t);for(let s=0;s<r.length;s++){let n=r[s],o=l[s];if(o==null){console.warn(`[InlineStyle.generate] @briklab/lib/stylesheet: Skipping property "${n}" with ${String(o)} value. Hint: avoid null/undefined style values.`);continue}typeof o!="string"&&(console.warn(`[InlineStyle.generate] @briklab/lib/stylesheet: Non-string style value for "${n}" (type=${typeof o}). Coercing to string.`),o=String(o)),e.setProperty(n,o)}return e.cssText}get text(){return this.generate()}get ansi(){let e=v(this,A,"f")||{},t=[];(e["font-weight"]==="bold"||e.fontWeight==="bold")&&t.push(te.BOLD),(e["text-decoration"]||e.textDecoration||"").includes("underline")&&t.push(te.UNDERLINE);let r=e.color||e.color;if(r)try{let s=new te(String(r));t.push(s.ansiTruecolor())}catch{console.warn(`[InlineStyle.ansi] @briklab/lib/stylesheet: Invalid color value "${String(r)}" \u2014 ignoring. Hint: use a valid hex, rgb(), hsl() or named color.`)}let l=e["background-color"]||e.backgroundColor;if(l)try{let s=new te(String(l));t.push(s.ansiTruecolorBg())}catch{console.warn(`[InlineStyle.ansi] @briklab/lib/stylesheet: Invalid background-color value "${String(l)}" \u2014 ignoring. Hint: use a valid hex, rgb(), hsl() or named color.`)}return t.join("")}addStyleWithObject(e){return O.for([e]).check(["object"])?(de(this,A,{...v(this,A,"f"),...e},"f"),this.generate(),this):(console.warn(`[InlineStyle.addStyleWithObject] @briklab/lib/stylesheet: Invalid first argument!
|
|
27
25
|
Hint: expected a plain object with CSS properties. Received: ${String(e)}
|