@bigbinary/neeto-molecules 1.0.16 → 1.0.18
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/README.md +2 -0
- package/dist/DynamicVariables.cjs.js +30 -31
- package/dist/DynamicVariables.cjs.js.map +1 -1
- package/dist/DynamicVariables.js +30 -31
- package/dist/DynamicVariables.js.map +1 -1
- package/dist/EmailPreview.cjs.js +88 -77
- package/dist/EmailPreview.cjs.js.map +1 -1
- package/dist/EmailPreview.js +88 -77
- package/dist/EmailPreview.js.map +1 -1
- package/dist/NeetoWidget.cjs.js +218 -218
- package/dist/NeetoWidget.cjs.js.map +1 -1
- package/dist/NeetoWidget.js +218 -218
- package/dist/NeetoWidget.js.map +1 -1
- package/dist/PhoneNumber.cjs.js +8560 -0
- package/dist/PhoneNumber.cjs.js.map +1 -0
- package/dist/PhoneNumber.js +8528 -0
- package/dist/PhoneNumber.js.map +1 -0
- package/dist/ShareViaEmail.cjs.js +217 -125
- package/dist/ShareViaEmail.cjs.js.map +1 -1
- package/dist/ShareViaEmail.js +217 -125
- package/dist/ShareViaEmail.js.map +1 -1
- package/dist/TableWrapper.cjs.js +235 -0
- package/dist/TableWrapper.cjs.js.map +1 -0
- package/dist/TableWrapper.js +229 -0
- package/dist/TableWrapper.js.map +1 -0
- package/package.json +5 -2
- package/src/translations/en.json +6 -0
- package/types/Header.d.ts +25 -12
- package/types/PhoneNumber.d.ts +110 -0
- package/types/SubHeader.d.ts +31 -6
- package/types/TableWrapper.d.ts +34 -0
package/dist/NeetoWidget.js
CHANGED
|
@@ -50320,7 +50320,7 @@ var languageLoaders = {
|
|
|
50320
50320
|
return Promise.resolve().then(function () { return agda$1; });
|
|
50321
50321
|
}),
|
|
50322
50322
|
al: createLanguageAsyncLoader("al", function () {
|
|
50323
|
-
return Promise.resolve().then(function () { return al
|
|
50323
|
+
return Promise.resolve().then(function () { return al; });
|
|
50324
50324
|
}),
|
|
50325
50325
|
antlr4: createLanguageAsyncLoader("antlr4", function () {
|
|
50326
50326
|
return Promise.resolve().then(function () { return antlr4$1; });
|
|
@@ -50365,7 +50365,7 @@ var languageLoaders = {
|
|
|
50365
50365
|
return Promise.resolve().then(function () { return autoit$2; });
|
|
50366
50366
|
}),
|
|
50367
50367
|
avisynth: createLanguageAsyncLoader("avisynth", function () {
|
|
50368
|
-
return Promise.resolve().then(function () { return avisynth; });
|
|
50368
|
+
return Promise.resolve().then(function () { return avisynth$1; });
|
|
50369
50369
|
}),
|
|
50370
50370
|
avroIdl: createLanguageAsyncLoader("avroIdl", function () {
|
|
50371
50371
|
return Promise.resolve().then(function () { return avroIdl; });
|
|
@@ -59840,42 +59840,46 @@ var agda$1 = /*#__PURE__*/_mergeNamespaces({
|
|
|
59840
59840
|
'default': agda_1
|
|
59841
59841
|
}, [agda_1]);
|
|
59842
59842
|
|
|
59843
|
-
var al_1
|
|
59844
|
-
|
|
59845
|
-
al.aliases = [];
|
|
59846
|
-
function al(Prism) {
|
|
59847
|
-
// based on https://github.com/microsoft/AL/blob/master/grammar/alsyntax.tmlanguage
|
|
59848
|
-
Prism.languages.al = {
|
|
59849
|
-
comment: /\/\/.*|\/\*[\s\S]*?\*\//,
|
|
59850
|
-
string: {
|
|
59851
|
-
pattern: /'(?:''|[^'\r\n])*'(?!')|"(?:""|[^"\r\n])*"(?!")/,
|
|
59852
|
-
greedy: true
|
|
59853
|
-
},
|
|
59854
|
-
function: {
|
|
59855
|
-
pattern:
|
|
59856
|
-
/(\b(?:event|procedure|trigger)\s+|(?:^|[^.])\.\s*)[a-z_]\w*(?=\s*\()/i,
|
|
59857
|
-
lookbehind: true
|
|
59858
|
-
},
|
|
59859
|
-
keyword: [
|
|
59860
|
-
// keywords
|
|
59861
|
-
/\b(?:array|asserterror|begin|break|case|do|downto|else|end|event|exit|for|foreach|function|if|implements|in|indataset|interface|internal|local|of|procedure|program|protected|repeat|runonclient|securityfiltering|suppressdispose|temporary|then|to|trigger|until|var|while|with|withevents)\b/i, // objects and metadata that are used like keywords
|
|
59862
|
-
/\b(?:action|actions|addafter|addbefore|addfirst|addlast|area|assembly|chartpart|codeunit|column|controladdin|cuegroup|customizes|dataitem|dataset|dotnet|elements|enum|enumextension|extends|field|fieldattribute|fieldelement|fieldgroup|fieldgroups|fields|filter|fixed|grid|group|key|keys|label|labels|layout|modify|moveafter|movebefore|movefirst|movelast|page|pagecustomization|pageextension|part|profile|query|repeater|report|requestpage|schema|separator|systempart|table|tableelement|tableextension|textattribute|textelement|type|usercontrol|value|xmlport)\b/i
|
|
59863
|
-
],
|
|
59864
|
-
number:
|
|
59865
|
-
/\b(?:0x[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)(?:F|LL?|U(?:LL?)?)?\b/i,
|
|
59866
|
-
boolean: /\b(?:false|true)\b/i,
|
|
59867
|
-
variable: /\b(?:Curr(?:FieldNo|Page|Report)|x?Rec|RequestOptionsPage)\b/,
|
|
59868
|
-
'class-name':
|
|
59869
|
-
/\b(?:automation|biginteger|bigtext|blob|boolean|byte|char|clienttype|code|completiontriggererrorlevel|connectiontype|database|dataclassification|datascope|date|dateformula|datetime|decimal|defaultlayout|dialog|dictionary|dotnetassembly|dotnettypedeclaration|duration|errorinfo|errortype|executioncontext|executionmode|fieldclass|fieldref|fieldtype|file|filterpagebuilder|guid|httpclient|httpcontent|httpheaders|httprequestmessage|httpresponsemessage|instream|integer|joker|jsonarray|jsonobject|jsontoken|jsonvalue|keyref|list|moduledependencyinfo|moduleinfo|none|notification|notificationscope|objecttype|option|outstream|pageresult|record|recordid|recordref|reportformat|securityfilter|sessionsettings|tableconnectiontype|tablefilter|testaction|testfield|testfilterfield|testpage|testpermissions|testrequestpage|text|textbuilder|textconst|textencoding|time|transactionmodel|transactiontype|variant|verbosity|version|view|views|webserviceactioncontext|webserviceactionresultcode|xmlattribute|xmlattributecollection|xmlcdata|xmlcomment|xmldeclaration|xmldocument|xmldocumenttype|xmlelement|xmlnamespacemanager|xmlnametable|xmlnode|xmlnodelist|xmlprocessinginstruction|xmlreadoptions|xmltext|xmlwriteoptions)\b/i,
|
|
59870
|
-
operator: /\.\.|:[=:]|[-+*/]=?|<>|[<>]=?|=|\b(?:and|div|mod|not|or|xor)\b/i,
|
|
59871
|
-
punctuation: /[()\[\]{}:.;,]/
|
|
59872
|
-
};
|
|
59873
|
-
}
|
|
59843
|
+
var al_1;
|
|
59844
|
+
var hasRequiredAl;
|
|
59874
59845
|
|
|
59875
|
-
|
|
59876
|
-
|
|
59877
|
-
|
|
59878
|
-
|
|
59846
|
+
function requireAl () {
|
|
59847
|
+
if (hasRequiredAl) return al_1;
|
|
59848
|
+
hasRequiredAl = 1;
|
|
59849
|
+
|
|
59850
|
+
al_1 = al;
|
|
59851
|
+
al.displayName = 'al';
|
|
59852
|
+
al.aliases = [];
|
|
59853
|
+
function al(Prism) {
|
|
59854
|
+
// based on https://github.com/microsoft/AL/blob/master/grammar/alsyntax.tmlanguage
|
|
59855
|
+
Prism.languages.al = {
|
|
59856
|
+
comment: /\/\/.*|\/\*[\s\S]*?\*\//,
|
|
59857
|
+
string: {
|
|
59858
|
+
pattern: /'(?:''|[^'\r\n])*'(?!')|"(?:""|[^"\r\n])*"(?!")/,
|
|
59859
|
+
greedy: true
|
|
59860
|
+
},
|
|
59861
|
+
function: {
|
|
59862
|
+
pattern:
|
|
59863
|
+
/(\b(?:event|procedure|trigger)\s+|(?:^|[^.])\.\s*)[a-z_]\w*(?=\s*\()/i,
|
|
59864
|
+
lookbehind: true
|
|
59865
|
+
},
|
|
59866
|
+
keyword: [
|
|
59867
|
+
// keywords
|
|
59868
|
+
/\b(?:array|asserterror|begin|break|case|do|downto|else|end|event|exit|for|foreach|function|if|implements|in|indataset|interface|internal|local|of|procedure|program|protected|repeat|runonclient|securityfiltering|suppressdispose|temporary|then|to|trigger|until|var|while|with|withevents)\b/i, // objects and metadata that are used like keywords
|
|
59869
|
+
/\b(?:action|actions|addafter|addbefore|addfirst|addlast|area|assembly|chartpart|codeunit|column|controladdin|cuegroup|customizes|dataitem|dataset|dotnet|elements|enum|enumextension|extends|field|fieldattribute|fieldelement|fieldgroup|fieldgroups|fields|filter|fixed|grid|group|key|keys|label|labels|layout|modify|moveafter|movebefore|movefirst|movelast|page|pagecustomization|pageextension|part|profile|query|repeater|report|requestpage|schema|separator|systempart|table|tableelement|tableextension|textattribute|textelement|type|usercontrol|value|xmlport)\b/i
|
|
59870
|
+
],
|
|
59871
|
+
number:
|
|
59872
|
+
/\b(?:0x[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)(?:F|LL?|U(?:LL?)?)?\b/i,
|
|
59873
|
+
boolean: /\b(?:false|true)\b/i,
|
|
59874
|
+
variable: /\b(?:Curr(?:FieldNo|Page|Report)|x?Rec|RequestOptionsPage)\b/,
|
|
59875
|
+
'class-name':
|
|
59876
|
+
/\b(?:automation|biginteger|bigtext|blob|boolean|byte|char|clienttype|code|completiontriggererrorlevel|connectiontype|database|dataclassification|datascope|date|dateformula|datetime|decimal|defaultlayout|dialog|dictionary|dotnetassembly|dotnettypedeclaration|duration|errorinfo|errortype|executioncontext|executionmode|fieldclass|fieldref|fieldtype|file|filterpagebuilder|guid|httpclient|httpcontent|httpheaders|httprequestmessage|httpresponsemessage|instream|integer|joker|jsonarray|jsonobject|jsontoken|jsonvalue|keyref|list|moduledependencyinfo|moduleinfo|none|notification|notificationscope|objecttype|option|outstream|pageresult|record|recordid|recordref|reportformat|securityfilter|sessionsettings|tableconnectiontype|tablefilter|testaction|testfield|testfilterfield|testpage|testpermissions|testrequestpage|text|textbuilder|textconst|textencoding|time|transactionmodel|transactiontype|variant|verbosity|version|view|views|webserviceactioncontext|webserviceactionresultcode|xmlattribute|xmlattributecollection|xmlcdata|xmlcomment|xmldeclaration|xmldocument|xmldocumenttype|xmlelement|xmlnamespacemanager|xmlnametable|xmlnode|xmlnodelist|xmlprocessinginstruction|xmlreadoptions|xmltext|xmlwriteoptions)\b/i,
|
|
59877
|
+
operator: /\.\.|:[=:]|[-+*/]=?|<>|[<>]=?|=|\b(?:and|div|mod|not|or|xor)\b/i,
|
|
59878
|
+
punctuation: /[()\[\]{}:.;,]/
|
|
59879
|
+
};
|
|
59880
|
+
}
|
|
59881
|
+
return al_1;
|
|
59882
|
+
}
|
|
59879
59883
|
|
|
59880
59884
|
var antlr4_1 = antlr4;
|
|
59881
59885
|
antlr4.displayName = 'antlr4';
|
|
@@ -61513,183 +61517,179 @@ var autoit$2 = /*#__PURE__*/_mergeNamespaces({
|
|
|
61513
61517
|
'default': autoit_1
|
|
61514
61518
|
}, [autoit_1]);
|
|
61515
61519
|
|
|
61516
|
-
var avisynth_1;
|
|
61517
|
-
|
|
61518
|
-
|
|
61519
|
-
function
|
|
61520
|
-
if (hasRequiredAvisynth) return avisynth_1;
|
|
61521
|
-
hasRequiredAvisynth = 1;
|
|
61522
|
-
|
|
61523
|
-
avisynth_1 = avisynth;
|
|
61524
|
-
avisynth.displayName = 'avisynth';
|
|
61525
|
-
avisynth.aliases = ['avs'];
|
|
61526
|
-
function avisynth(Prism) {
|
|
61520
|
+
var avisynth_1 = avisynth;
|
|
61521
|
+
avisynth.displayName = 'avisynth';
|
|
61522
|
+
avisynth.aliases = ['avs'];
|
|
61523
|
+
function avisynth(Prism) {
|
|
61527
61524
|
(function (Prism) {
|
|
61528
|
-
|
|
61529
|
-
|
|
61530
|
-
|
|
61531
|
-
|
|
61532
|
-
|
|
61533
|
-
|
|
61534
|
-
|
|
61535
|
-
|
|
61536
|
-
|
|
61537
|
-
|
|
61538
|
-
|
|
61539
|
-
|
|
61540
|
-
|
|
61541
|
-
|
|
61542
|
-
|
|
61543
|
-
|
|
61544
|
-
|
|
61545
|
-
|
|
61546
|
-
|
|
61547
|
-
|
|
61548
|
-
|
|
61549
|
-
|
|
61550
|
-
|
|
61551
|
-
|
|
61552
|
-
|
|
61553
|
-
|
|
61554
|
-
|
|
61555
|
-
|
|
61556
|
-
|
|
61557
|
-
|
|
61558
|
-
|
|
61559
|
-
|
|
61560
|
-
|
|
61561
|
-
|
|
61562
|
-
|
|
61563
|
-
|
|
61564
|
-
|
|
61565
|
-
|
|
61566
|
-
|
|
61567
|
-
|
|
61568
|
-
|
|
61569
|
-
|
|
61570
|
-
|
|
61571
|
-
|
|
61572
|
-
|
|
61573
|
-
|
|
61574
|
-
|
|
61575
|
-
|
|
61576
|
-
|
|
61577
|
-
|
|
61578
|
-
|
|
61579
|
-
|
|
61580
|
-
|
|
61581
|
-
|
|
61582
|
-
|
|
61583
|
-
|
|
61584
|
-
|
|
61585
|
-
|
|
61586
|
-
|
|
61587
|
-
|
|
61588
|
-
|
|
61589
|
-
|
|
61590
|
-
|
|
61591
|
-
|
|
61592
|
-
|
|
61593
|
-
|
|
61594
|
-
|
|
61595
|
-
|
|
61596
|
-
|
|
61597
|
-
|
|
61598
|
-
|
|
61599
|
-
|
|
61600
|
-
|
|
61601
|
-
|
|
61602
|
-
|
|
61603
|
-
|
|
61604
|
-
|
|
61605
|
-
|
|
61606
|
-
|
|
61607
|
-
|
|
61608
|
-
|
|
61609
|
-
|
|
61610
|
-
|
|
61611
|
-
|
|
61612
|
-
|
|
61613
|
-
|
|
61614
|
-
|
|
61615
|
-
|
|
61616
|
-
|
|
61617
|
-
|
|
61618
|
-
|
|
61619
|
-
|
|
61620
|
-
|
|
61621
|
-
|
|
61622
|
-
|
|
61623
|
-
|
|
61624
|
-
|
|
61625
|
-
|
|
61626
|
-
|
|
61627
|
-
|
|
61628
|
-
|
|
61629
|
-
|
|
61630
|
-
|
|
61631
|
-
|
|
61632
|
-
|
|
61633
|
-
|
|
61634
|
-
|
|
61635
|
-
|
|
61636
|
-
|
|
61637
|
-
|
|
61638
|
-
|
|
61639
|
-
|
|
61640
|
-
|
|
61641
|
-
|
|
61642
|
-
|
|
61643
|
-
|
|
61644
|
-
|
|
61645
|
-
|
|
61646
|
-
|
|
61647
|
-
|
|
61648
|
-
|
|
61649
|
-
|
|
61650
|
-
|
|
61651
|
-
|
|
61652
|
-
|
|
61653
|
-
|
|
61654
|
-
|
|
61655
|
-
|
|
61656
|
-
|
|
61657
|
-
|
|
61658
|
-
|
|
61659
|
-
|
|
61660
|
-
|
|
61661
|
-
|
|
61662
|
-
|
|
61663
|
-
|
|
61664
|
-
|
|
61665
|
-
|
|
61666
|
-
|
|
61667
|
-
|
|
61668
|
-
|
|
61669
|
-
|
|
61670
|
-
|
|
61671
|
-
|
|
61672
|
-
|
|
61673
|
-
|
|
61674
|
-
|
|
61675
|
-
|
|
61676
|
-
|
|
61677
|
-
|
|
61678
|
-
|
|
61679
|
-
|
|
61680
|
-
|
|
61681
|
-
|
|
61682
|
-
|
|
61683
|
-
|
|
61684
|
-
|
|
61685
|
-
|
|
61686
|
-
|
|
61687
|
-
|
|
61688
|
-
|
|
61689
|
-
}
|
|
61690
|
-
return avisynth_1;
|
|
61525
|
+
function replace(pattern, replacements) {
|
|
61526
|
+
return pattern.replace(/<<(\d+)>>/g, function (m, index) {
|
|
61527
|
+
return replacements[+index]
|
|
61528
|
+
})
|
|
61529
|
+
}
|
|
61530
|
+
function re(pattern, replacements, flags) {
|
|
61531
|
+
return RegExp(replace(pattern, replacements), flags || '')
|
|
61532
|
+
}
|
|
61533
|
+
var types = /bool|clip|float|int|string|val/.source;
|
|
61534
|
+
var internals = [
|
|
61535
|
+
// bools
|
|
61536
|
+
/is(?:bool|clip|float|int|string)|defined|(?:(?:internal)?function|var)?exists?/
|
|
61537
|
+
.source, // control
|
|
61538
|
+
/apply|assert|default|eval|import|nop|select|undefined/.source, // global
|
|
61539
|
+
/opt_(?:allowfloataudio|avipadscanlines|dwchannelmask|enable_(?:b64a|planartopackedrgb|v210|y3_10_10|y3_10_16)|usewaveextensible|vdubplanarhack)|set(?:cachemode|maxcpu|memorymax|planarlegacyalignment|workingdir)/
|
|
61540
|
+
.source, // conv
|
|
61541
|
+
/hex(?:value)?|value/.source, // numeric
|
|
61542
|
+
/abs|ceil|continued(?:denominator|numerator)?|exp|floor|fmod|frac|log(?:10)?|max|min|muldiv|pi|pow|rand|round|sign|spline|sqrt/
|
|
61543
|
+
.source, // trig
|
|
61544
|
+
/a?sinh?|a?cosh?|a?tan[2h]?/.source, // bit
|
|
61545
|
+
/(?:bit(?:and|not|x?or|[lr]?shift[aslu]?|sh[lr]|sa[lr]|[lr]rotatel?|ro[rl]|te?st|set(?:count)?|cl(?:ea)?r|ch(?:an)?ge?))/
|
|
61546
|
+
.source, // runtime
|
|
61547
|
+
/average(?:[bgr]|chroma[uv]|luma)|(?:[rgb]|chroma[uv]|luma|rgb|[yuv](?=difference(?:fromprevious|tonext)))difference(?:fromprevious|tonext)?|[yuvrgb]plane(?:median|min|max|minmaxdifference)/
|
|
61548
|
+
.source, // script
|
|
61549
|
+
/getprocessinfo|logmsg|script(?:dir(?:utf8)?|file(?:utf8)?|name(?:utf8)?)|setlogparams/
|
|
61550
|
+
.source, // string
|
|
61551
|
+
/chr|(?:fill|find|left|mid|replace|rev|right)str|format|[lu]case|ord|str(?:cmpi?|fromutf8|len|toutf8)|time|trim(?:all|left|right)/
|
|
61552
|
+
.source, // version
|
|
61553
|
+
/isversionorgreater|version(?:number|string)/.source, // helper
|
|
61554
|
+
/buildpixeltype|colorspacenametopixeltype/.source, // avsplus
|
|
61555
|
+
/addautoloaddir|on(?:cpu|cuda)|prefetch|setfiltermtmode/.source
|
|
61556
|
+
].join('|');
|
|
61557
|
+
var properties = [
|
|
61558
|
+
// content
|
|
61559
|
+
/has(?:audio|video)/.source, // resolution
|
|
61560
|
+
/height|width/.source, // framerate
|
|
61561
|
+
/frame(?:count|rate)|framerate(?:denominator|numerator)/.source, // interlacing
|
|
61562
|
+
/getparity|is(?:field|frame)based/.source, // color format
|
|
61563
|
+
/bitspercomponent|componentsize|hasalpha|is(?:planar(?:rgba?)?|interleaved|rgb(?:24|32|48|64)?|y(?:8|u(?:va?|y2))?|yv(?:12|16|24|411)|420|422|444|packedrgb)|numcomponents|pixeltype/
|
|
61564
|
+
.source, // audio
|
|
61565
|
+
/audio(?:bits|channels|duration|length(?:[fs]|hi|lo)?|rate)|isaudio(?:float|int)/
|
|
61566
|
+
.source
|
|
61567
|
+
].join('|');
|
|
61568
|
+
var filters = [
|
|
61569
|
+
// source
|
|
61570
|
+
/avi(?:file)?source|directshowsource|image(?:reader|source|sourceanim)|opendmlsource|segmented(?:avisource|directshowsource)|wavsource/
|
|
61571
|
+
.source, // color
|
|
61572
|
+
/coloryuv|convertbacktoyuy2|convertto(?:RGB(?:24|32|48|64)|(?:planar)?RGBA?|Y8?|YV(?:12|16|24|411)|YUVA?(?:411|420|422|444)|YUY2)|fixluminance|gr[ae]yscale|invert|levels|limiter|mergea?rgb|merge(?:chroma|luma)|rgbadjust|show(?:alpha|blue|green|red)|swapuv|tweak|[uv]toy8?|ytouv/
|
|
61573
|
+
.source, // overlay
|
|
61574
|
+
/(?:colorkey|reset)mask|layer|mask(?:hs)?|merge|overlay|subtract/.source, // geometry
|
|
61575
|
+
/addborders|(?:bicubic|bilinear|blackman|gauss|lanczos4|lanczos|point|sinc|spline(?:16|36|64))resize|crop(?:bottom)?|flip(?:horizontal|vertical)|(?:horizontal|vertical)?reduceby2|letterbox|skewrows|turn(?:180|left|right)/
|
|
61576
|
+
.source, // pixel
|
|
61577
|
+
/blur|fixbrokenchromaupsampling|generalconvolution|(?:spatial|temporal)soften|sharpen/
|
|
61578
|
+
.source, // timeline
|
|
61579
|
+
/trim|(?:un)?alignedsplice|(?:assume|assumescaled|change|convert)FPS|(?:delete|duplicate)frame|dissolve|fade(?:in|io|out)[02]?|freezeframe|interleave|loop|reverse|select(?:even|odd|(?:range)?every)/
|
|
61580
|
+
.source, // interlace
|
|
61581
|
+
/assume[bt]ff|assume(?:field|frame)based|bob|complementparity|doubleweave|peculiarblend|pulldown|separate(?:columns|fields|rows)|swapfields|weave(?:columns|rows)?/
|
|
61582
|
+
.source, // audio
|
|
61583
|
+
/amplify(?:db)?|assumesamplerate|audiodub(?:ex)?|audiotrim|convertaudioto(?:(?:8|16|24|32)bit|float)|converttomono|delayaudio|ensurevbrmp3sync|get(?:left|right)?channel|kill(?:audio|video)|mergechannels|mixaudio|monotostereo|normalize|resampleaudio|ssrc|supereq|timestretch/
|
|
61584
|
+
.source, // conditional
|
|
61585
|
+
/animate|applyrange|conditional(?:filter|reader|select)|frameevaluate|scriptclip|tcp(?:server|source)|writefile(?:end|if|start)?/
|
|
61586
|
+
.source, // export
|
|
61587
|
+
/imagewriter/.source, // debug
|
|
61588
|
+
/blackness|blankclip|colorbars(?:hd)?|compare|dumpfiltergraph|echo|histogram|info|messageclip|preroll|setgraphanalysis|show(?:framenumber|smpte|time)|showfiveversions|stack(?:horizontal|vertical)|subtitle|tone|version/
|
|
61589
|
+
.source
|
|
61590
|
+
].join('|');
|
|
61591
|
+
var allinternals = [internals, properties, filters].join('|');
|
|
61592
|
+
Prism.languages.avisynth = {
|
|
61593
|
+
comment: [
|
|
61594
|
+
{
|
|
61595
|
+
// Matches [* *] nestable block comments, but only supports 1 level of nested comments
|
|
61596
|
+
// /\[\*(?:[^\[*]|\[(?!\*)|\*(?!\])|<self>)*\*\]/
|
|
61597
|
+
pattern:
|
|
61598
|
+
/(^|[^\\])\[\*(?:[^\[*]|\[(?!\*)|\*(?!\])|\[\*(?:[^\[*]|\[(?!\*)|\*(?!\]))*\*\])*\*\]/,
|
|
61599
|
+
lookbehind: true,
|
|
61600
|
+
greedy: true
|
|
61601
|
+
},
|
|
61602
|
+
{
|
|
61603
|
+
// Matches /* */ block comments
|
|
61604
|
+
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
|
|
61605
|
+
lookbehind: true,
|
|
61606
|
+
greedy: true
|
|
61607
|
+
},
|
|
61608
|
+
{
|
|
61609
|
+
// Matches # comments
|
|
61610
|
+
pattern: /(^|[^\\$])#.*/,
|
|
61611
|
+
lookbehind: true,
|
|
61612
|
+
greedy: true
|
|
61613
|
+
}
|
|
61614
|
+
],
|
|
61615
|
+
// Handle before strings because optional arguments are surrounded by double quotes
|
|
61616
|
+
argument: {
|
|
61617
|
+
pattern: re(/\b(?:<<0>>)\s+("?)\w+\1/.source, [types], 'i'),
|
|
61618
|
+
inside: {
|
|
61619
|
+
keyword: /^\w+/
|
|
61620
|
+
}
|
|
61621
|
+
},
|
|
61622
|
+
// Optional argument assignment
|
|
61623
|
+
'argument-label': {
|
|
61624
|
+
pattern: /([,(][\s\\]*)\w+\s*=(?!=)/,
|
|
61625
|
+
lookbehind: true,
|
|
61626
|
+
inside: {
|
|
61627
|
+
'argument-name': {
|
|
61628
|
+
pattern: /^\w+/,
|
|
61629
|
+
alias: 'punctuation'
|
|
61630
|
+
},
|
|
61631
|
+
punctuation: /=$/
|
|
61632
|
+
}
|
|
61633
|
+
},
|
|
61634
|
+
string: [
|
|
61635
|
+
{
|
|
61636
|
+
// triple double-quoted
|
|
61637
|
+
pattern: /"""[\s\S]*?"""/,
|
|
61638
|
+
greedy: true
|
|
61639
|
+
},
|
|
61640
|
+
{
|
|
61641
|
+
// single double-quoted
|
|
61642
|
+
pattern: /"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
|
|
61643
|
+
greedy: true,
|
|
61644
|
+
inside: {
|
|
61645
|
+
constant: {
|
|
61646
|
+
// These *are* case-sensitive!
|
|
61647
|
+
pattern:
|
|
61648
|
+
/\b(?:DEFAULT_MT_MODE|(?:MAINSCRIPT|PROGRAM|SCRIPT)DIR|(?:MACHINE|USER)_(?:CLASSIC|PLUS)_PLUGINS)\b/
|
|
61649
|
+
}
|
|
61650
|
+
}
|
|
61651
|
+
}
|
|
61652
|
+
],
|
|
61653
|
+
// The special "last" variable that takes the value of the last implicitly returned clip
|
|
61654
|
+
variable: /\b(?:last)\b/i,
|
|
61655
|
+
boolean: /\b(?:false|no|true|yes)\b/i,
|
|
61656
|
+
keyword:
|
|
61657
|
+
/\b(?:catch|else|for|function|global|if|return|try|while|__END__)\b/i,
|
|
61658
|
+
constant: /\bMT_(?:MULTI_INSTANCE|NICE_FILTER|SERIALIZED|SPECIAL_MT)\b/,
|
|
61659
|
+
// AviSynth's internal functions, filters, and properties
|
|
61660
|
+
'builtin-function': {
|
|
61661
|
+
pattern: re(/\b(?:<<0>>)\b/.source, [allinternals], 'i'),
|
|
61662
|
+
alias: 'function'
|
|
61663
|
+
},
|
|
61664
|
+
'type-cast': {
|
|
61665
|
+
pattern: re(/\b(?:<<0>>)(?=\s*\()/.source, [types], 'i'),
|
|
61666
|
+
alias: 'keyword'
|
|
61667
|
+
},
|
|
61668
|
+
// External/user-defined filters
|
|
61669
|
+
function: {
|
|
61670
|
+
pattern: /\b[a-z_]\w*(?=\s*\()|(\.)[a-z_]\w*\b/i,
|
|
61671
|
+
lookbehind: true
|
|
61672
|
+
},
|
|
61673
|
+
// Matches a \ as the first or last character on a line
|
|
61674
|
+
'line-continuation': {
|
|
61675
|
+
pattern: /(^[ \t]*)\\|\\(?=[ \t]*$)/m,
|
|
61676
|
+
lookbehind: true,
|
|
61677
|
+
alias: 'punctuation'
|
|
61678
|
+
},
|
|
61679
|
+
number:
|
|
61680
|
+
/\B\$(?:[\da-f]{6}|[\da-f]{8})\b|(?:(?:\b|\B-)\d+(?:\.\d*)?\b|\B\.\d+\b)/i,
|
|
61681
|
+
operator: /\+\+?|[!=<>]=?|&&|\|\||[?:*/%-]/,
|
|
61682
|
+
punctuation: /[{}\[\]();,.]/
|
|
61683
|
+
};
|
|
61684
|
+
Prism.languages.avs = Prism.languages.avisynth;
|
|
61685
|
+
})(Prism);
|
|
61691
61686
|
}
|
|
61692
61687
|
|
|
61688
|
+
var avisynth$1 = /*#__PURE__*/_mergeNamespaces({
|
|
61689
|
+
__proto__: null,
|
|
61690
|
+
'default': avisynth_1
|
|
61691
|
+
}, [avisynth_1]);
|
|
61692
|
+
|
|
61693
61693
|
var avroIdl_1;
|
|
61694
61694
|
var hasRequiredAvroIdl;
|
|
61695
61695
|
|
|
@@ -82919,7 +82919,7 @@ refractor.register(abnf_1);
|
|
|
82919
82919
|
refractor.register(actionscript_1);
|
|
82920
82920
|
refractor.register(ada_1);
|
|
82921
82921
|
refractor.register(agda_1);
|
|
82922
|
-
refractor.register(
|
|
82922
|
+
refractor.register(requireAl());
|
|
82923
82923
|
refractor.register(antlr4_1);
|
|
82924
82924
|
refractor.register(apacheconf_1);
|
|
82925
82925
|
refractor.register(apex_1);
|
|
@@ -82934,7 +82934,7 @@ refractor.register(asmatmel_1);
|
|
|
82934
82934
|
refractor.register(aspnet_1);
|
|
82935
82935
|
refractor.register(autohotkey_1);
|
|
82936
82936
|
refractor.register(autoit_1);
|
|
82937
|
-
refractor.register(
|
|
82937
|
+
refractor.register(avisynth_1);
|
|
82938
82938
|
refractor.register(requireAvroIdl());
|
|
82939
82939
|
refractor.register(requireBash());
|
|
82940
82940
|
refractor.register(requireBasic());
|
|
@@ -87262,7 +87262,7 @@ var CodeSnippet = function CodeSnippet(_ref) {
|
|
|
87262
87262
|
subject: formData.subject,
|
|
87263
87263
|
emails: pluck("value", formData.emails),
|
|
87264
87264
|
message: (_ref7 = (cov_uqaajbocu().b[7][0]++, (_body$ref = body.ref) === null || _body$ref === void 0 ? void 0 : _body$ref.current.innerHTML)) !== null && _ref7 !== void 0 ? _ref7 : (cov_uqaajbocu().b[7][1]++, body),
|
|
87265
|
-
snippet:
|
|
87265
|
+
snippet: codeToDisplay
|
|
87266
87266
|
});
|
|
87267
87267
|
case 13:
|
|
87268
87268
|
case "end":
|
|
@@ -91678,12 +91678,12 @@ var zephir = /*#__PURE__*/_mergeNamespaces({
|
|
|
91678
91678
|
'default': zephirExports
|
|
91679
91679
|
}, [zephirExports]);
|
|
91680
91680
|
|
|
91681
|
-
var
|
|
91681
|
+
var alExports = requireAl();
|
|
91682
91682
|
|
|
91683
|
-
var
|
|
91683
|
+
var al = /*#__PURE__*/_mergeNamespaces({
|
|
91684
91684
|
__proto__: null,
|
|
91685
|
-
'default':
|
|
91686
|
-
}, [
|
|
91685
|
+
'default': alExports
|
|
91686
|
+
}, [alExports]);
|
|
91687
91687
|
|
|
91688
91688
|
var avroIdlExports = requireAvroIdl();
|
|
91689
91689
|
|