@tamagui/helpers 1.13.2 → 1.13.4
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/cjs/clamp.js +1 -30
- package/dist/cjs/clamp.js.map +2 -2
- package/dist/cjs/composeEventHandlers.js +1 -39
- package/dist/cjs/composeEventHandlers.js.map +2 -2
- package/dist/cjs/concatClassName.js +1 -89
- package/dist/cjs/concatClassName.js.map +2 -2
- package/dist/cjs/index.js +1 -23
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs/types.js +1 -16
- package/dist/cjs/types.js.map +2 -2
- package/dist/cjs/validStyleProps.js +1 -214
- package/dist/cjs/validStyleProps.js.map +2 -2
- package/dist/esm/clamp.js +1 -6
- package/dist/esm/clamp.js.map +2 -2
- package/dist/esm/clamp.mjs +1 -6
- package/dist/esm/clamp.mjs.map +2 -2
- package/dist/esm/composeEventHandlers.js +1 -15
- package/dist/esm/composeEventHandlers.js.map +2 -2
- package/dist/esm/composeEventHandlers.mjs +1 -15
- package/dist/esm/composeEventHandlers.mjs.map +2 -2
- package/dist/esm/concatClassName.js +1 -65
- package/dist/esm/concatClassName.js.map +2 -2
- package/dist/esm/concatClassName.mjs +1 -65
- package/dist/esm/concatClassName.mjs.map +2 -2
- package/dist/esm/index.js +1 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.mjs +1 -6
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/validStyleProps.js +1 -182
- package/dist/esm/validStyleProps.js.map +2 -2
- package/dist/esm/validStyleProps.mjs +1 -182
- package/dist/esm/validStyleProps.mjs.map +2 -2
- package/package.json +3 -3
|
@@ -1,16 +1,2 @@
|
|
|
1
|
-
function
|
|
2
|
-
if (!og || !next) {
|
|
3
|
-
return next || og;
|
|
4
|
-
}
|
|
5
|
-
return function composedEventHandler(event) {
|
|
6
|
-
og == null ? void 0 : og(event);
|
|
7
|
-
if (!event || !(checkDefaultPrevented && "defaultPrevented" in event) || // @ts-ignore
|
|
8
|
-
"defaultPrevented" in event && !event.defaultPrevented) {
|
|
9
|
-
return next == null ? void 0 : next(event);
|
|
10
|
-
}
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
export {
|
|
14
|
-
composeEventHandlers
|
|
15
|
-
};
|
|
1
|
+
function E(n,r,{checkDefaultPrevented:t=!0}={}){return!n||!r?r||n:function(e){if(n==null||n(e),!e||!(t&&"defaultPrevented"in e)||"defaultPrevented"in e&&!e.defaultPrevented)return r==null?void 0:r(e)}}export{E as composeEventHandlers};
|
|
16
2
|
//# sourceMappingURL=composeEventHandlers.mjs.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/composeEventHandlers.ts"],
|
|
4
4
|
"sourcesContent": ["type Events = Object\n\nexport type EventHandler<E extends Events> = (event: E) => void\n\nexport function composeEventHandlers<E extends Events>(\n og?: EventHandler<E>,\n next?: EventHandler<E>,\n { checkDefaultPrevented = true } = {}\n) {\n if (!og || !next) {\n return next || og\n }\n return function composedEventHandler(event: E) {\n og?.(event)\n if (\n !event ||\n !(checkDefaultPrevented && 'defaultPrevented' in event) ||\n // @ts-ignore\n ('defaultPrevented' in event && !event.defaultPrevented)\n ) {\n return next?.(event)\n }\n }\n}\n"],
|
|
5
|
-
"mappings": "AAIO,
|
|
6
|
-
"names": []
|
|
5
|
+
"mappings": "AAIO,SAASA,EACdC,EACAC,EACA,CAAE,sBAAAC,EAAwB,EAAK,EAAI,CAAC,EACpC,CACA,MAAI,CAACF,GAAM,CAACC,EACHA,GAAQD,EAEV,SAA8BG,EAAU,CAE7C,GADAH,GAAA,MAAAA,EAAKG,GAEH,CAACA,GACD,EAAED,GAAyB,qBAAsBC,IAEhD,qBAAsBA,GAAS,CAACA,EAAM,iBAEvC,OAAOF,GAAA,YAAAA,EAAOE,EAElB,CACF",
|
|
6
|
+
"names": ["composeEventHandlers", "og", "next", "checkDefaultPrevented", "event"]
|
|
7
7
|
}
|
|
@@ -1,66 +1,2 @@
|
|
|
1
|
-
function
|
|
2
|
-
const args = arguments;
|
|
3
|
-
const usedPrefixes = [];
|
|
4
|
-
let final = "";
|
|
5
|
-
const len = args.length;
|
|
6
|
-
let propObjects = null;
|
|
7
|
-
for (let x = len; x >= 0; x--) {
|
|
8
|
-
const cns = args[x];
|
|
9
|
-
if (!cns)
|
|
10
|
-
continue;
|
|
11
|
-
if (!Array.isArray(cns) && typeof cns !== "string") {
|
|
12
|
-
propObjects = propObjects || [];
|
|
13
|
-
propObjects.push(cns);
|
|
14
|
-
continue;
|
|
15
|
-
}
|
|
16
|
-
const names = Array.isArray(cns) ? cns : cns.split(" ");
|
|
17
|
-
const numNames = names.length;
|
|
18
|
-
for (let i = numNames - 1; i >= 0; i--) {
|
|
19
|
-
const name = names[i];
|
|
20
|
-
if (!name || name === " ")
|
|
21
|
-
continue;
|
|
22
|
-
if (name[0] !== "_") {
|
|
23
|
-
final = name + " " + final;
|
|
24
|
-
continue;
|
|
25
|
-
}
|
|
26
|
-
const splitIndex = name.indexOf("-");
|
|
27
|
-
if (splitIndex < 1) {
|
|
28
|
-
final = name + " " + final;
|
|
29
|
-
continue;
|
|
30
|
-
}
|
|
31
|
-
const nextChar = name[splitIndex + 1];
|
|
32
|
-
const isMediaQuery = nextChar === "_";
|
|
33
|
-
const styleKey = name.slice(1, name.lastIndexOf("-"));
|
|
34
|
-
const mediaKey = isMediaQuery ? name.slice(splitIndex + 2, splitIndex + 7) : null;
|
|
35
|
-
const uid = mediaKey ? styleKey + mediaKey : styleKey;
|
|
36
|
-
if (usedPrefixes.indexOf(uid) > -1) {
|
|
37
|
-
continue;
|
|
38
|
-
}
|
|
39
|
-
usedPrefixes.push(uid);
|
|
40
|
-
const propName = styleKey;
|
|
41
|
-
if (propName && propObjects) {
|
|
42
|
-
if (propObjects.some((po) => {
|
|
43
|
-
if (mediaKey) {
|
|
44
|
-
const propKey = pseudoInvert[mediaKey];
|
|
45
|
-
return po && po[propKey] && propName in po[propKey] && po[propKey] !== null;
|
|
46
|
-
}
|
|
47
|
-
const res = po && propName in po && po[propName] !== null;
|
|
48
|
-
return res;
|
|
49
|
-
})) {
|
|
50
|
-
continue;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
final = name + " " + final;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
return final;
|
|
57
|
-
}
|
|
58
|
-
const pseudoInvert = {
|
|
59
|
-
hover: "hoverStyle",
|
|
60
|
-
focus: "focusStyle",
|
|
61
|
-
press: "pressStyle"
|
|
62
|
-
};
|
|
63
|
-
export {
|
|
64
|
-
concatClassName
|
|
65
|
-
};
|
|
1
|
+
function v(C){const y=arguments,d=[];let e="";const x=y.length;let i=null;for(let l=x;l>=0;l--){const t=y[l];if(!t)continue;if(!Array.isArray(t)&&typeof t!="string"){i=i||[],i.push(t);continue}const m=Array.isArray(t)?t:t.split(" "),g=m.length;for(let u=g-1;u>=0;u--){const n=m[u];if(!n||n===" ")continue;if(n[0]!=="_"){e=n+" "+e;continue}const r=n.indexOf("-");if(r<1){e=n+" "+e;continue}const h=n[r+1]==="_",a=n.slice(1,n.lastIndexOf("-")),c=h?n.slice(r+2,r+7):null,p=c?a+c:a;if(d.indexOf(p)>-1)continue;d.push(p);const o=a;o&&i&&i.some(s=>{if(c){const f=A[c];return s&&s[f]&&o in s[f]&&s[f]!==null}return s&&o in s&&s[o]!==null})||(e=n+" "+e)}}return e}const A={hover:"hoverStyle",focus:"focusStyle",press:"pressStyle"};export{v as concatClassName};
|
|
66
2
|
//# sourceMappingURL=concatClassName.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/concatClassName.ts"],
|
|
4
4
|
"sourcesContent": ["// perf sensitive so doing some weird stuff\n\n/**\n * next - take objects:\n *\n * { _shorthand: 'postfix' }\n *\n */\n\nexport function concatClassName(...args: any[]): any\nexport function concatClassName(_cn: Record<string, any> | null | undefined): string {\n const args = arguments\n const usedPrefixes: string[] = []\n let final = ''\n\n const len = args.length\n let propObjects: any = null\n for (let x = len; x >= 0; x--) {\n const cns = args[x]\n\n if (!cns) continue\n if (!Array.isArray(cns) && typeof cns !== 'string') {\n // is prop object\n propObjects = propObjects || []\n propObjects.push(cns)\n continue\n }\n\n const names = Array.isArray(cns) ? cns : cns.split(' ')\n const numNames = names.length\n for (let i = numNames - 1; i >= 0; i--) {\n const name = names[i]\n\n if (!name || name === ' ') continue\n if (name[0] !== '_') {\n // not snack style (todo slightly stronger heuristic)\n final = name + ' ' + final\n continue\n }\n\n const splitIndex = name.indexOf('-')\n if (splitIndex < 1) {\n final = name + ' ' + final\n // if (shouldDebug) console.log('debug exclude:', name, final)\n continue\n }\n\n const nextChar = name[splitIndex + 1]\n // synced to static-ui constants\n // MEDIA_SEP\n const isMediaQuery = nextChar === '_'\n // PSEUDO_SEP\n // commenting out three things to make pseudos override properly\n // (leave in for a bit to see if other bugs pop up later):\n // 1. const isPseudoQuery = nextChar === '0'\n const styleKey = name.slice(1, name.lastIndexOf('-'))\n // 2. isMediaQuery || isPseudoQuery\n const mediaKey = isMediaQuery ? name.slice(splitIndex + 2, splitIndex + 7) : null\n const uid = mediaKey ? styleKey + mediaKey : styleKey\n // 3. && !isPseudoQuery\n\n if (usedPrefixes.indexOf(uid) > -1) {\n // if (shouldDebug) console.log('debug exclude:', usedPrefixes, name)\n continue\n }\n usedPrefixes.push(uid)\n\n // overrides for full safety\n const propName = styleKey\n if (propName && propObjects) {\n if (\n propObjects.some((po) => {\n if (mediaKey) {\n const propKey = pseudoInvert[mediaKey]\n return po && po[propKey] && propName in po[propKey] && po[propKey] !== null\n }\n const res = po && propName in po && po[propName] !== null\n return res\n })\n ) {\n // if (shouldDebug) console.log('debug exclude:', name)\n continue\n }\n }\n\n final = name + ' ' + final\n }\n }\n\n return final\n}\n\nconst pseudoInvert = {\n hover: 'hoverStyle',\n focus: 'focusStyle',\n press: 'pressStyle',\n}\n"],
|
|
5
|
-
"mappings": "AAUO,
|
|
6
|
-
"names": []
|
|
5
|
+
"mappings": "AAUO,SAASA,EAAgBC,EAAqD,CACnF,MAAMC,EAAO,UACPC,EAAyB,CAAC,EAChC,IAAIC,EAAQ,GAEZ,MAAMC,EAAMH,EAAK,OACjB,IAAII,EAAmB,KACvB,QAASC,EAAIF,EAAKE,GAAK,EAAGA,IAAK,CAC7B,MAAMC,EAAMN,EAAKK,CAAC,EAElB,GAAI,CAACC,EAAK,SACV,GAAI,CAAC,MAAM,QAAQA,CAAG,GAAK,OAAOA,GAAQ,SAAU,CAElDF,EAAcA,GAAe,CAAC,EAC9BA,EAAY,KAAKE,CAAG,EACpB,QACF,CAEA,MAAMC,EAAQ,MAAM,QAAQD,CAAG,EAAIA,EAAMA,EAAI,MAAM,GAAG,EAChDE,EAAWD,EAAM,OACvB,QAASE,EAAID,EAAW,EAAGC,GAAK,EAAGA,IAAK,CACtC,MAAMC,EAAOH,EAAME,CAAC,EAEpB,GAAI,CAACC,GAAQA,IAAS,IAAK,SAC3B,GAAIA,EAAK,CAAC,IAAM,IAAK,CAEnBR,EAAQQ,EAAO,IAAMR,EACrB,QACF,CAEA,MAAMS,EAAaD,EAAK,QAAQ,GAAG,EACnC,GAAIC,EAAa,EAAG,CAClBT,EAAQQ,EAAO,IAAMR,EAErB,QACF,CAKA,MAAMU,EAHWF,EAAKC,EAAa,CAAC,IAGF,IAK5BE,EAAWH,EAAK,MAAM,EAAGA,EAAK,YAAY,GAAG,CAAC,EAE9CI,EAAWF,EAAeF,EAAK,MAAMC,EAAa,EAAGA,EAAa,CAAC,EAAI,KACvEI,EAAMD,EAAWD,EAAWC,EAAWD,EAG7C,GAAIZ,EAAa,QAAQc,CAAG,EAAI,GAE9B,SAEFd,EAAa,KAAKc,CAAG,EAGrB,MAAMC,EAAWH,EACbG,GAAYZ,GAEZA,EAAY,KAAMa,GAAO,CACvB,GAAIH,EAAU,CACZ,MAAMI,EAAUC,EAAaL,CAAQ,EACrC,OAAOG,GAAMA,EAAGC,CAAO,GAAKF,KAAYC,EAAGC,CAAO,GAAKD,EAAGC,CAAO,IAAM,IACzE,CAEA,OADYD,GAAMD,KAAYC,GAAMA,EAAGD,CAAQ,IAAM,IAEvD,CAAC,IAOLd,EAAQQ,EAAO,IAAMR,EACvB,CACF,CAEA,OAAOA,CACT,CAEA,MAAMiB,EAAe,CACnB,MAAO,aACP,MAAO,aACP,MAAO,YACT",
|
|
6
|
+
"names": ["concatClassName", "_cn", "args", "usedPrefixes", "final", "len", "propObjects", "x", "cns", "names", "numNames", "i", "name", "splitIndex", "isMediaQuery", "styleKey", "mediaKey", "uid", "propName", "po", "propKey", "pseudoInvert"]
|
|
7
7
|
}
|
|
@@ -1,66 +1,2 @@
|
|
|
1
|
-
function
|
|
2
|
-
const args = arguments;
|
|
3
|
-
const usedPrefixes = [];
|
|
4
|
-
let final = "";
|
|
5
|
-
const len = args.length;
|
|
6
|
-
let propObjects = null;
|
|
7
|
-
for (let x = len; x >= 0; x--) {
|
|
8
|
-
const cns = args[x];
|
|
9
|
-
if (!cns)
|
|
10
|
-
continue;
|
|
11
|
-
if (!Array.isArray(cns) && typeof cns !== "string") {
|
|
12
|
-
propObjects = propObjects || [];
|
|
13
|
-
propObjects.push(cns);
|
|
14
|
-
continue;
|
|
15
|
-
}
|
|
16
|
-
const names = Array.isArray(cns) ? cns : cns.split(" ");
|
|
17
|
-
const numNames = names.length;
|
|
18
|
-
for (let i = numNames - 1; i >= 0; i--) {
|
|
19
|
-
const name = names[i];
|
|
20
|
-
if (!name || name === " ")
|
|
21
|
-
continue;
|
|
22
|
-
if (name[0] !== "_") {
|
|
23
|
-
final = name + " " + final;
|
|
24
|
-
continue;
|
|
25
|
-
}
|
|
26
|
-
const splitIndex = name.indexOf("-");
|
|
27
|
-
if (splitIndex < 1) {
|
|
28
|
-
final = name + " " + final;
|
|
29
|
-
continue;
|
|
30
|
-
}
|
|
31
|
-
const nextChar = name[splitIndex + 1];
|
|
32
|
-
const isMediaQuery = nextChar === "_";
|
|
33
|
-
const styleKey = name.slice(1, name.lastIndexOf("-"));
|
|
34
|
-
const mediaKey = isMediaQuery ? name.slice(splitIndex + 2, splitIndex + 7) : null;
|
|
35
|
-
const uid = mediaKey ? styleKey + mediaKey : styleKey;
|
|
36
|
-
if (usedPrefixes.indexOf(uid) > -1) {
|
|
37
|
-
continue;
|
|
38
|
-
}
|
|
39
|
-
usedPrefixes.push(uid);
|
|
40
|
-
const propName = styleKey;
|
|
41
|
-
if (propName && propObjects) {
|
|
42
|
-
if (propObjects.some((po) => {
|
|
43
|
-
if (mediaKey) {
|
|
44
|
-
const propKey = pseudoInvert[mediaKey];
|
|
45
|
-
return po && po[propKey] && propName in po[propKey] && po[propKey] !== null;
|
|
46
|
-
}
|
|
47
|
-
const res = po && propName in po && po[propName] !== null;
|
|
48
|
-
return res;
|
|
49
|
-
})) {
|
|
50
|
-
continue;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
final = name + " " + final;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
return final;
|
|
57
|
-
}
|
|
58
|
-
const pseudoInvert = {
|
|
59
|
-
hover: "hoverStyle",
|
|
60
|
-
focus: "focusStyle",
|
|
61
|
-
press: "pressStyle"
|
|
62
|
-
};
|
|
63
|
-
export {
|
|
64
|
-
concatClassName
|
|
65
|
-
};
|
|
1
|
+
function v(C){const y=arguments,d=[];let e="";const x=y.length;let i=null;for(let l=x;l>=0;l--){const t=y[l];if(!t)continue;if(!Array.isArray(t)&&typeof t!="string"){i=i||[],i.push(t);continue}const m=Array.isArray(t)?t:t.split(" "),g=m.length;for(let u=g-1;u>=0;u--){const n=m[u];if(!n||n===" ")continue;if(n[0]!=="_"){e=n+" "+e;continue}const r=n.indexOf("-");if(r<1){e=n+" "+e;continue}const h=n[r+1]==="_",a=n.slice(1,n.lastIndexOf("-")),c=h?n.slice(r+2,r+7):null,p=c?a+c:a;if(d.indexOf(p)>-1)continue;d.push(p);const o=a;o&&i&&i.some(s=>{if(c){const f=A[c];return s&&s[f]&&o in s[f]&&s[f]!==null}return s&&o in s&&s[o]!==null})||(e=n+" "+e)}}return e}const A={hover:"hoverStyle",focus:"focusStyle",press:"pressStyle"};export{v as concatClassName};
|
|
66
2
|
//# sourceMappingURL=concatClassName.mjs.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/concatClassName.ts"],
|
|
4
4
|
"sourcesContent": ["// perf sensitive so doing some weird stuff\n\n/**\n * next - take objects:\n *\n * { _shorthand: 'postfix' }\n *\n */\n\nexport function concatClassName(...args: any[]): any\nexport function concatClassName(_cn: Record<string, any> | null | undefined): string {\n const args = arguments\n const usedPrefixes: string[] = []\n let final = ''\n\n const len = args.length\n let propObjects: any = null\n for (let x = len; x >= 0; x--) {\n const cns = args[x]\n\n if (!cns) continue\n if (!Array.isArray(cns) && typeof cns !== 'string') {\n // is prop object\n propObjects = propObjects || []\n propObjects.push(cns)\n continue\n }\n\n const names = Array.isArray(cns) ? cns : cns.split(' ')\n const numNames = names.length\n for (let i = numNames - 1; i >= 0; i--) {\n const name = names[i]\n\n if (!name || name === ' ') continue\n if (name[0] !== '_') {\n // not snack style (todo slightly stronger heuristic)\n final = name + ' ' + final\n continue\n }\n\n const splitIndex = name.indexOf('-')\n if (splitIndex < 1) {\n final = name + ' ' + final\n // if (shouldDebug) console.log('debug exclude:', name, final)\n continue\n }\n\n const nextChar = name[splitIndex + 1]\n // synced to static-ui constants\n // MEDIA_SEP\n const isMediaQuery = nextChar === '_'\n // PSEUDO_SEP\n // commenting out three things to make pseudos override properly\n // (leave in for a bit to see if other bugs pop up later):\n // 1. const isPseudoQuery = nextChar === '0'\n const styleKey = name.slice(1, name.lastIndexOf('-'))\n // 2. isMediaQuery || isPseudoQuery\n const mediaKey = isMediaQuery ? name.slice(splitIndex + 2, splitIndex + 7) : null\n const uid = mediaKey ? styleKey + mediaKey : styleKey\n // 3. && !isPseudoQuery\n\n if (usedPrefixes.indexOf(uid) > -1) {\n // if (shouldDebug) console.log('debug exclude:', usedPrefixes, name)\n continue\n }\n usedPrefixes.push(uid)\n\n // overrides for full safety\n const propName = styleKey\n if (propName && propObjects) {\n if (\n propObjects.some((po) => {\n if (mediaKey) {\n const propKey = pseudoInvert[mediaKey]\n return po && po[propKey] && propName in po[propKey] && po[propKey] !== null\n }\n const res = po && propName in po && po[propName] !== null\n return res\n })\n ) {\n // if (shouldDebug) console.log('debug exclude:', name)\n continue\n }\n }\n\n final = name + ' ' + final\n }\n }\n\n return final\n}\n\nconst pseudoInvert = {\n hover: 'hoverStyle',\n focus: 'focusStyle',\n press: 'pressStyle',\n}\n"],
|
|
5
|
-
"mappings": "AAUO,
|
|
6
|
-
"names": []
|
|
5
|
+
"mappings": "AAUO,SAASA,EAAgBC,EAAqD,CACnF,MAAMC,EAAO,UACPC,EAAyB,CAAC,EAChC,IAAIC,EAAQ,GAEZ,MAAMC,EAAMH,EAAK,OACjB,IAAII,EAAmB,KACvB,QAASC,EAAIF,EAAKE,GAAK,EAAGA,IAAK,CAC7B,MAAMC,EAAMN,EAAKK,CAAC,EAElB,GAAI,CAACC,EAAK,SACV,GAAI,CAAC,MAAM,QAAQA,CAAG,GAAK,OAAOA,GAAQ,SAAU,CAElDF,EAAcA,GAAe,CAAC,EAC9BA,EAAY,KAAKE,CAAG,EACpB,QACF,CAEA,MAAMC,EAAQ,MAAM,QAAQD,CAAG,EAAIA,EAAMA,EAAI,MAAM,GAAG,EAChDE,EAAWD,EAAM,OACvB,QAASE,EAAID,EAAW,EAAGC,GAAK,EAAGA,IAAK,CACtC,MAAMC,EAAOH,EAAME,CAAC,EAEpB,GAAI,CAACC,GAAQA,IAAS,IAAK,SAC3B,GAAIA,EAAK,CAAC,IAAM,IAAK,CAEnBR,EAAQQ,EAAO,IAAMR,EACrB,QACF,CAEA,MAAMS,EAAaD,EAAK,QAAQ,GAAG,EACnC,GAAIC,EAAa,EAAG,CAClBT,EAAQQ,EAAO,IAAMR,EAErB,QACF,CAKA,MAAMU,EAHWF,EAAKC,EAAa,CAAC,IAGF,IAK5BE,EAAWH,EAAK,MAAM,EAAGA,EAAK,YAAY,GAAG,CAAC,EAE9CI,EAAWF,EAAeF,EAAK,MAAMC,EAAa,EAAGA,EAAa,CAAC,EAAI,KACvEI,EAAMD,EAAWD,EAAWC,EAAWD,EAG7C,GAAIZ,EAAa,QAAQc,CAAG,EAAI,GAE9B,SAEFd,EAAa,KAAKc,CAAG,EAGrB,MAAMC,EAAWH,EACbG,GAAYZ,GAEZA,EAAY,KAAMa,GAAO,CACvB,GAAIH,EAAU,CACZ,MAAMI,EAAUC,EAAaL,CAAQ,EACrC,OAAOG,GAAMA,EAAGC,CAAO,GAAKF,KAAYC,EAAGC,CAAO,GAAKD,EAAGC,CAAO,IAAM,IACzE,CAEA,OADYD,GAAMD,KAAYC,GAAMA,EAAGD,CAAQ,IAAM,IAEvD,CAAC,IAOLd,EAAQQ,EAAO,IAAMR,EACvB,CACF,CAEA,OAAOA,CACT,CAEA,MAAMiB,EAAe,CACnB,MAAO,aACP,MAAO,aACP,MAAO,YACT",
|
|
6
|
+
"names": ["concatClassName", "_cn", "args", "usedPrefixes", "final", "len", "propObjects", "x", "cns", "names", "numNames", "i", "name", "splitIndex", "isMediaQuery", "styleKey", "mediaKey", "uid", "propName", "po", "propKey", "pseudoInvert"]
|
|
7
7
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from "./composeEventHandlers";
|
|
3
|
-
export * from "./concatClassName";
|
|
4
|
-
export * from "./validStyleProps";
|
|
5
|
-
export * from "./types";
|
|
6
|
-
export * from "@tamagui/simple-hash";
|
|
1
|
+
export*from"./clamp";export*from"./composeEventHandlers";export*from"./concatClassName";export*from"./validStyleProps";export*from"./types";export*from"@tamagui/simple-hash";
|
|
7
2
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
4
|
"sourcesContent": ["export * from './clamp'\nexport * from './composeEventHandlers'\nexport * from './concatClassName'\nexport * from './validStyleProps'\nexport * from './types'\nexport * from '@tamagui/simple-hash'\n"],
|
|
5
|
-
"mappings": "AAAA,
|
|
5
|
+
"mappings": "AAAA,WAAc,UACd,WAAc,yBACd,WAAc,oBACd,WAAc,oBACd,WAAc,UACd,WAAc",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from "./composeEventHandlers";
|
|
3
|
-
export * from "./concatClassName";
|
|
4
|
-
export * from "./validStyleProps";
|
|
5
|
-
export * from "./types";
|
|
6
|
-
export * from "@tamagui/simple-hash";
|
|
1
|
+
export*from"./clamp";export*from"./composeEventHandlers";export*from"./concatClassName";export*from"./validStyleProps";export*from"./types";export*from"@tamagui/simple-hash";
|
|
7
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
4
|
"sourcesContent": ["export * from './clamp'\nexport * from './composeEventHandlers'\nexport * from './concatClassName'\nexport * from './validStyleProps'\nexport * from './types'\nexport * from '@tamagui/simple-hash'\n"],
|
|
5
|
-
"mappings": "AAAA,
|
|
5
|
+
"mappings": "AAAA,WAAc,UACd,WAAc,yBACd,WAAc,oBACd,WAAc,oBACd,WAAc,UACd,WAAc",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,183 +1,2 @@
|
|
|
1
|
-
const
|
|
2
|
-
x: true,
|
|
3
|
-
y: true,
|
|
4
|
-
scale: true,
|
|
5
|
-
perspective: true,
|
|
6
|
-
scaleX: true,
|
|
7
|
-
scaleY: true,
|
|
8
|
-
skewX: true,
|
|
9
|
-
skewY: true,
|
|
10
|
-
matrix: true,
|
|
11
|
-
rotate: true,
|
|
12
|
-
rotateY: true,
|
|
13
|
-
rotateX: true,
|
|
14
|
-
rotateZ: true
|
|
15
|
-
});
|
|
16
|
-
const validStylesOnBaseProps = Object.freeze({
|
|
17
|
-
placeholderTextColor: true
|
|
18
|
-
});
|
|
19
|
-
const stylePropsView = Object.freeze({
|
|
20
|
-
backfaceVisibility: true,
|
|
21
|
-
backgroundColor: true,
|
|
22
|
-
borderBottomColor: true,
|
|
23
|
-
borderBottomEndRadius: true,
|
|
24
|
-
borderBottomLeftRadius: true,
|
|
25
|
-
borderBottomRightRadius: true,
|
|
26
|
-
borderBottomStartRadius: true,
|
|
27
|
-
borderBottomWidth: true,
|
|
28
|
-
borderColor: true,
|
|
29
|
-
borderEndColor: true,
|
|
30
|
-
borderLeftColor: true,
|
|
31
|
-
borderLeftWidth: true,
|
|
32
|
-
borderRadius: true,
|
|
33
|
-
borderRightColor: true,
|
|
34
|
-
borderRightWidth: true,
|
|
35
|
-
borderStartColor: true,
|
|
36
|
-
borderStyle: true,
|
|
37
|
-
borderTopColor: true,
|
|
38
|
-
borderTopEndRadius: true,
|
|
39
|
-
borderTopLeftRadius: true,
|
|
40
|
-
borderTopRightRadius: true,
|
|
41
|
-
borderTopStartRadius: true,
|
|
42
|
-
borderTopWidth: true,
|
|
43
|
-
borderWidth: true,
|
|
44
|
-
opacity: true,
|
|
45
|
-
transform: true,
|
|
46
|
-
alignContent: true,
|
|
47
|
-
alignItems: true,
|
|
48
|
-
alignSelf: true,
|
|
49
|
-
aspectRatio: true,
|
|
50
|
-
borderEndWidth: true,
|
|
51
|
-
borderStartWidth: true,
|
|
52
|
-
bottom: true,
|
|
53
|
-
display: true,
|
|
54
|
-
end: true,
|
|
55
|
-
flex: true,
|
|
56
|
-
flexBasis: true,
|
|
57
|
-
flexDirection: true,
|
|
58
|
-
flexGrow: true,
|
|
59
|
-
flexShrink: true,
|
|
60
|
-
flexWrap: true,
|
|
61
|
-
gap: true,
|
|
62
|
-
columnGap: true,
|
|
63
|
-
rowGap: true,
|
|
64
|
-
height: true,
|
|
65
|
-
justifyContent: true,
|
|
66
|
-
left: true,
|
|
67
|
-
margin: true,
|
|
68
|
-
marginBottom: true,
|
|
69
|
-
marginEnd: true,
|
|
70
|
-
marginHorizontal: true,
|
|
71
|
-
marginLeft: true,
|
|
72
|
-
marginRight: true,
|
|
73
|
-
marginStart: true,
|
|
74
|
-
marginTop: true,
|
|
75
|
-
marginVertical: true,
|
|
76
|
-
maxHeight: true,
|
|
77
|
-
maxWidth: true,
|
|
78
|
-
minHeight: true,
|
|
79
|
-
minWidth: true,
|
|
80
|
-
overflow: true,
|
|
81
|
-
padding: true,
|
|
82
|
-
paddingBottom: true,
|
|
83
|
-
paddingEnd: true,
|
|
84
|
-
paddingHorizontal: true,
|
|
85
|
-
paddingLeft: true,
|
|
86
|
-
paddingRight: true,
|
|
87
|
-
paddingStart: true,
|
|
88
|
-
paddingTop: true,
|
|
89
|
-
paddingVertical: true,
|
|
90
|
-
position: true,
|
|
91
|
-
right: true,
|
|
92
|
-
start: true,
|
|
93
|
-
top: true,
|
|
94
|
-
width: true,
|
|
95
|
-
zIndex: true,
|
|
96
|
-
direction: true,
|
|
97
|
-
shadowColor: true,
|
|
98
|
-
shadowOffset: true,
|
|
99
|
-
shadowOpacity: true,
|
|
100
|
-
shadowRadius: true,
|
|
101
|
-
...validStylesOnBaseProps,
|
|
102
|
-
...stylePropsTransform,
|
|
103
|
-
// allow a few web only ones
|
|
104
|
-
...process.env.TAMAGUI_TARGET === "web" && {
|
|
105
|
-
// RN doesn't support specific border styles per-edge
|
|
106
|
-
borderBottomStyle: true,
|
|
107
|
-
borderTopStyle: true,
|
|
108
|
-
borderLeftStyle: true,
|
|
109
|
-
borderRightStyle: true,
|
|
110
|
-
overflowX: true,
|
|
111
|
-
overflowY: true,
|
|
112
|
-
userSelect: true,
|
|
113
|
-
cursor: true,
|
|
114
|
-
contain: true,
|
|
115
|
-
pointerEvents: true,
|
|
116
|
-
boxSizing: true,
|
|
117
|
-
boxShadow: true,
|
|
118
|
-
outlineColor: true,
|
|
119
|
-
outlineStyle: true,
|
|
120
|
-
outlineOffset: true,
|
|
121
|
-
outlineWidth: true
|
|
122
|
-
}
|
|
123
|
-
});
|
|
124
|
-
const stylePropsFont = Object.freeze({
|
|
125
|
-
fontFamily: true,
|
|
126
|
-
fontSize: true,
|
|
127
|
-
fontStyle: true,
|
|
128
|
-
fontWeight: true,
|
|
129
|
-
letterSpacing: true,
|
|
130
|
-
lineHeight: true,
|
|
131
|
-
textTransform: true
|
|
132
|
-
});
|
|
133
|
-
const stylePropsTextOnly = Object.freeze({
|
|
134
|
-
color: true,
|
|
135
|
-
...stylePropsFont,
|
|
136
|
-
textAlign: true,
|
|
137
|
-
textDecorationLine: true,
|
|
138
|
-
textDecorationStyle: true,
|
|
139
|
-
textDecorationColor: true,
|
|
140
|
-
textShadowColor: true,
|
|
141
|
-
textShadowOffset: true,
|
|
142
|
-
textShadowRadius: true,
|
|
143
|
-
// allow some web only ones
|
|
144
|
-
...process.env.TAMAGUI_TARGET === "web" && {
|
|
145
|
-
whiteSpace: true,
|
|
146
|
-
wordWrap: true,
|
|
147
|
-
textOverflow: true,
|
|
148
|
-
textDecorationDistance: true,
|
|
149
|
-
userSelect: true,
|
|
150
|
-
selectable: true,
|
|
151
|
-
cursor: true,
|
|
152
|
-
WebkitLineClamp: true,
|
|
153
|
-
WebkitBoxOrient: true
|
|
154
|
-
}
|
|
155
|
-
});
|
|
156
|
-
const stylePropsText = Object.freeze({
|
|
157
|
-
...stylePropsView,
|
|
158
|
-
...stylePropsTextOnly
|
|
159
|
-
});
|
|
160
|
-
const stylePropsAll = stylePropsText;
|
|
161
|
-
const validPseudoKeys = Object.freeze({
|
|
162
|
-
enterStyle: true,
|
|
163
|
-
exitStyle: true,
|
|
164
|
-
hoverStyle: true,
|
|
165
|
-
pressStyle: true,
|
|
166
|
-
focusStyle: true
|
|
167
|
-
});
|
|
168
|
-
const validStyles = Object.freeze({
|
|
169
|
-
...validPseudoKeys,
|
|
170
|
-
...stylePropsView
|
|
171
|
-
});
|
|
172
|
-
export {
|
|
173
|
-
stylePropsAll,
|
|
174
|
-
stylePropsFont,
|
|
175
|
-
stylePropsText,
|
|
176
|
-
stylePropsTextOnly,
|
|
177
|
-
stylePropsTransform,
|
|
178
|
-
stylePropsView,
|
|
179
|
-
validPseudoKeys,
|
|
180
|
-
validStyles,
|
|
181
|
-
validStylesOnBaseProps
|
|
182
|
-
};
|
|
1
|
+
const t=Object.freeze({x:!0,y:!0,scale:!0,perspective:!0,scaleX:!0,scaleY:!0,skewX:!0,skewY:!0,matrix:!0,rotate:!0,rotateY:!0,rotateX:!0,rotateZ:!0}),r=Object.freeze({placeholderTextColor:!0}),e=Object.freeze({backfaceVisibility:!0,backgroundColor:!0,borderBottomColor:!0,borderBottomEndRadius:!0,borderBottomLeftRadius:!0,borderBottomRightRadius:!0,borderBottomStartRadius:!0,borderBottomWidth:!0,borderColor:!0,borderEndColor:!0,borderLeftColor:!0,borderLeftWidth:!0,borderRadius:!0,borderRightColor:!0,borderRightWidth:!0,borderStartColor:!0,borderStyle:!0,borderTopColor:!0,borderTopEndRadius:!0,borderTopLeftRadius:!0,borderTopRightRadius:!0,borderTopStartRadius:!0,borderTopWidth:!0,borderWidth:!0,opacity:!0,transform:!0,alignContent:!0,alignItems:!0,alignSelf:!0,aspectRatio:!0,borderEndWidth:!0,borderStartWidth:!0,bottom:!0,display:!0,end:!0,flex:!0,flexBasis:!0,flexDirection:!0,flexGrow:!0,flexShrink:!0,flexWrap:!0,gap:!0,columnGap:!0,rowGap:!0,height:!0,justifyContent:!0,left:!0,margin:!0,marginBottom:!0,marginEnd:!0,marginHorizontal:!0,marginLeft:!0,marginRight:!0,marginStart:!0,marginTop:!0,marginVertical:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,overflow:!0,padding:!0,paddingBottom:!0,paddingEnd:!0,paddingHorizontal:!0,paddingLeft:!0,paddingRight:!0,paddingStart:!0,paddingTop:!0,paddingVertical:!0,position:!0,right:!0,start:!0,top:!0,width:!0,zIndex:!0,direction:!0,shadowColor:!0,shadowOffset:!0,shadowOpacity:!0,shadowRadius:!0,...r,...t,...process.env.TAMAGUI_TARGET==="web"&&{borderBottomStyle:!0,borderTopStyle:!0,borderLeftStyle:!0,borderRightStyle:!0,overflowX:!0,overflowY:!0,userSelect:!0,cursor:!0,contain:!0,pointerEvents:!0,boxSizing:!0,boxShadow:!0,outlineColor:!0,outlineStyle:!0,outlineOffset:!0,outlineWidth:!0}}),o=Object.freeze({fontFamily:!0,fontSize:!0,fontStyle:!0,fontWeight:!0,letterSpacing:!0,lineHeight:!0,textTransform:!0}),u=Object.freeze({color:!0,...o,textAlign:!0,textDecorationLine:!0,textDecorationStyle:!0,textDecorationColor:!0,textShadowColor:!0,textShadowOffset:!0,textShadowRadius:!0,...process.env.TAMAGUI_TARGET==="web"&&{whiteSpace:!0,wordWrap:!0,textOverflow:!0,textDecorationDistance:!0,userSelect:!0,selectable:!0,cursor:!0,WebkitLineClamp:!0,WebkitBoxOrient:!0}}),i=Object.freeze({...e,...u}),d=i,a=Object.freeze({enterStyle:!0,exitStyle:!0,hoverStyle:!0,pressStyle:!0,focusStyle:!0}),n=Object.freeze({...a,...e});export{d as stylePropsAll,o as stylePropsFont,i as stylePropsText,u as stylePropsTextOnly,t as stylePropsTransform,e as stylePropsView,a as validPseudoKeys,n as validStyles,r as validStylesOnBaseProps};
|
|
183
2
|
//# sourceMappingURL=validStyleProps.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/validStyleProps.ts"],
|
|
4
4
|
"sourcesContent": ["// flat transform props\nexport const stylePropsTransform = Object.freeze({\n x: true,\n y: true,\n scale: true,\n perspective: true,\n scaleX: true,\n scaleY: true,\n skewX: true,\n skewY: true,\n matrix: true,\n rotate: true,\n rotateY: true,\n rotateX: true,\n rotateZ: true,\n})\n\nexport const validStylesOnBaseProps = Object.freeze({\n placeholderTextColor: true,\n})\n\nexport const stylePropsView = Object.freeze({\n backfaceVisibility: true,\n backgroundColor: true,\n borderBottomColor: true,\n borderBottomEndRadius: true,\n borderBottomLeftRadius: true,\n borderBottomRightRadius: true,\n borderBottomStartRadius: true,\n borderBottomWidth: true,\n borderColor: true,\n borderEndColor: true,\n borderLeftColor: true,\n borderLeftWidth: true,\n borderRadius: true,\n borderRightColor: true,\n borderRightWidth: true,\n borderStartColor: true,\n borderStyle: true,\n borderTopColor: true,\n borderTopEndRadius: true,\n borderTopLeftRadius: true,\n borderTopRightRadius: true,\n borderTopStartRadius: true,\n borderTopWidth: true,\n borderWidth: true,\n opacity: true,\n transform: true,\n alignContent: true,\n alignItems: true,\n alignSelf: true,\n aspectRatio: true,\n borderEndWidth: true,\n borderStartWidth: true,\n bottom: true,\n display: true,\n end: true,\n flex: true,\n flexBasis: true,\n flexDirection: true,\n flexGrow: true,\n flexShrink: true,\n flexWrap: true,\n gap: true,\n columnGap: true,\n rowGap: true,\n height: true,\n justifyContent: true,\n left: true,\n margin: true,\n marginBottom: true,\n marginEnd: true,\n marginHorizontal: true,\n marginLeft: true,\n marginRight: true,\n marginStart: true,\n marginTop: true,\n marginVertical: true,\n maxHeight: true,\n maxWidth: true,\n minHeight: true,\n minWidth: true,\n overflow: true,\n padding: true,\n paddingBottom: true,\n paddingEnd: true,\n paddingHorizontal: true,\n paddingLeft: true,\n paddingRight: true,\n paddingStart: true,\n paddingTop: true,\n paddingVertical: true,\n position: true,\n right: true,\n start: true,\n top: true,\n width: true,\n zIndex: true,\n direction: true,\n shadowColor: true,\n shadowOffset: true,\n shadowOpacity: true,\n shadowRadius: true,\n ...validStylesOnBaseProps,\n ...stylePropsTransform,\n\n // allow a few web only ones\n\n ...(process.env.TAMAGUI_TARGET === 'web' && {\n // RN doesn't support specific border styles per-edge\n borderBottomStyle: true,\n borderTopStyle: true,\n borderLeftStyle: true,\n borderRightStyle: true,\n\n overflowX: true,\n overflowY: true,\n userSelect: true,\n cursor: true,\n contain: true,\n pointerEvents: true,\n boxSizing: true,\n boxShadow: true,\n outlineColor: true,\n outlineStyle: true,\n outlineOffset: true,\n outlineWidth: true,\n }),\n})\n\nexport const stylePropsFont = Object.freeze({\n fontFamily: true,\n fontSize: true,\n fontStyle: true,\n fontWeight: true,\n letterSpacing: true,\n lineHeight: true,\n textTransform: true,\n})\n\nexport const stylePropsTextOnly = Object.freeze({\n color: true,\n ...stylePropsFont,\n textAlign: true,\n textDecorationLine: true,\n textDecorationStyle: true,\n textDecorationColor: true,\n textShadowColor: true,\n textShadowOffset: true,\n textShadowRadius: true,\n\n // allow some web only ones\n ...(process.env.TAMAGUI_TARGET === 'web' && {\n whiteSpace: true,\n wordWrap: true,\n textOverflow: true,\n textDecorationDistance: true,\n userSelect: true,\n selectable: true,\n cursor: true,\n WebkitLineClamp: true,\n WebkitBoxOrient: true,\n }),\n})\n\nexport const stylePropsText = Object.freeze({\n ...stylePropsView,\n ...stylePropsTextOnly,\n})\n\nexport const stylePropsAll = stylePropsText\n\nexport const validPseudoKeys = Object.freeze({\n enterStyle: true,\n exitStyle: true,\n hoverStyle: true,\n pressStyle: true,\n focusStyle: true,\n})\n\nexport const validStyles = Object.freeze({\n ...validPseudoKeys,\n ...stylePropsView,\n})\n"],
|
|
5
|
-
"mappings": "AACO,
|
|
6
|
-
"names": []
|
|
5
|
+
"mappings": "AACO,MAAMA,EAAsB,OAAO,OAAO,CAC/C,EAAG,GACH,EAAG,GACH,MAAO,GACP,YAAa,GACb,OAAQ,GACR,OAAQ,GACR,MAAO,GACP,MAAO,GACP,OAAQ,GACR,OAAQ,GACR,QAAS,GACT,QAAS,GACT,QAAS,EACX,CAAC,EAEYC,EAAyB,OAAO,OAAO,CAClD,qBAAsB,EACxB,CAAC,EAEYC,EAAiB,OAAO,OAAO,CAC1C,mBAAoB,GACpB,gBAAiB,GACjB,kBAAmB,GACnB,sBAAuB,GACvB,uBAAwB,GACxB,wBAAyB,GACzB,wBAAyB,GACzB,kBAAmB,GACnB,YAAa,GACb,eAAgB,GAChB,gBAAiB,GACjB,gBAAiB,GACjB,aAAc,GACd,iBAAkB,GAClB,iBAAkB,GAClB,iBAAkB,GAClB,YAAa,GACb,eAAgB,GAChB,mBAAoB,GACpB,oBAAqB,GACrB,qBAAsB,GACtB,qBAAsB,GACtB,eAAgB,GAChB,YAAa,GACb,QAAS,GACT,UAAW,GACX,aAAc,GACd,WAAY,GACZ,UAAW,GACX,YAAa,GACb,eAAgB,GAChB,iBAAkB,GAClB,OAAQ,GACR,QAAS,GACT,IAAK,GACL,KAAM,GACN,UAAW,GACX,cAAe,GACf,SAAU,GACV,WAAY,GACZ,SAAU,GACV,IAAK,GACL,UAAW,GACX,OAAQ,GACR,OAAQ,GACR,eAAgB,GAChB,KAAM,GACN,OAAQ,GACR,aAAc,GACd,UAAW,GACX,iBAAkB,GAClB,WAAY,GACZ,YAAa,GACb,YAAa,GACb,UAAW,GACX,eAAgB,GAChB,UAAW,GACX,SAAU,GACV,UAAW,GACX,SAAU,GACV,SAAU,GACV,QAAS,GACT,cAAe,GACf,WAAY,GACZ,kBAAmB,GACnB,YAAa,GACb,aAAc,GACd,aAAc,GACd,WAAY,GACZ,gBAAiB,GACjB,SAAU,GACV,MAAO,GACP,MAAO,GACP,IAAK,GACL,MAAO,GACP,OAAQ,GACR,UAAW,GACX,YAAa,GACb,aAAc,GACd,cAAe,GACf,aAAc,GACd,GAAGD,EACH,GAAGD,EAIH,GAAI,QAAQ,IAAI,iBAAmB,OAAS,CAE1C,kBAAmB,GACnB,eAAgB,GAChB,gBAAiB,GACjB,iBAAkB,GAElB,UAAW,GACX,UAAW,GACX,WAAY,GACZ,OAAQ,GACR,QAAS,GACT,cAAe,GACf,UAAW,GACX,UAAW,GACX,aAAc,GACd,aAAc,GACd,cAAe,GACf,aAAc,EAChB,CACF,CAAC,EAEYG,EAAiB,OAAO,OAAO,CAC1C,WAAY,GACZ,SAAU,GACV,UAAW,GACX,WAAY,GACZ,cAAe,GACf,WAAY,GACZ,cAAe,EACjB,CAAC,EAEYC,EAAqB,OAAO,OAAO,CAC9C,MAAO,GACP,GAAGD,EACH,UAAW,GACX,mBAAoB,GACpB,oBAAqB,GACrB,oBAAqB,GACrB,gBAAiB,GACjB,iBAAkB,GAClB,iBAAkB,GAGlB,GAAI,QAAQ,IAAI,iBAAmB,OAAS,CAC1C,WAAY,GACZ,SAAU,GACV,aAAc,GACd,uBAAwB,GACxB,WAAY,GACZ,WAAY,GACZ,OAAQ,GACR,gBAAiB,GACjB,gBAAiB,EACnB,CACF,CAAC,EAEYE,EAAiB,OAAO,OAAO,CAC1C,GAAGH,EACH,GAAGE,CACL,CAAC,EAEYE,EAAgBD,EAEhBE,EAAkB,OAAO,OAAO,CAC3C,WAAY,GACZ,UAAW,GACX,WAAY,GACZ,WAAY,GACZ,WAAY,EACd,CAAC,EAEYC,EAAc,OAAO,OAAO,CACvC,GAAGD,EACH,GAAGL,CACL,CAAC",
|
|
6
|
+
"names": ["stylePropsTransform", "validStylesOnBaseProps", "stylePropsView", "stylePropsFont", "stylePropsTextOnly", "stylePropsText", "stylePropsAll", "validPseudoKeys", "validStyles"]
|
|
7
7
|
}
|