@lunejs/admin-ui 0.1.4 → 0.2.0
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/_virtual/index10.js +5 -2
- package/dist/_virtual/index11.js +4 -0
- package/dist/_virtual/index6.js +3 -3
- package/dist/_virtual/index8.js +3 -5
- package/dist/lib/api/fetchers/gql-fetcher.js +6 -6
- package/dist/lib/collections/components/collection-details/cards/general-card.js +20 -14
- package/dist/lib/custom-fields/components/fields/color.js +3 -3
- package/dist/lib/dashboard/pages/dashboard-page.js +5 -5
- package/dist/lib/product/components/product-details/cards/general-product-card.js +18 -12
- package/dist/node_modules/@tiptap/core/dist/index.js +3562 -0
- package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +17 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +80 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +13 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +64 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +78 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +305 -0
- package/dist/node_modules/@tiptap/extension-list/dist/index.js +713 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +42 -0
- package/dist/node_modules/@tiptap/extension-table/dist/index.js +380 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +14 -0
- package/dist/node_modules/@tiptap/extension-text-style/dist/index.js +240 -0
- package/dist/node_modules/@tiptap/extension-underline/dist/index.js +66 -0
- package/dist/node_modules/@tiptap/react/dist/index.js +481 -0
- package/dist/node_modules/eventemitter3/index.js +1 -1
- package/dist/node_modules/eventemitter3/index2.js +1 -1
- package/dist/node_modules/fast-equals/dist/es/index.js +324 -0
- package/dist/node_modules/linkifyjs/dist/linkify.js +707 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/baseline.js +10 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-horizontal-end.js +10 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-vertical-end.js +10 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bold.js +11 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-plus.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-x.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/italic.js +10 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/link.js +9 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-ordered.js +13 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-columns-split.js +18 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-rows-split.js +18 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table.js +11 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/underline.js +9 -0
- package/dist/node_modules/orderedmap/dist/index.js +103 -0
- package/dist/node_modules/prosemirror-commands/dist/index.js +388 -0
- package/dist/node_modules/prosemirror-keymap/dist/index.js +62 -0
- package/dist/node_modules/prosemirror-model/dist/index.js +2733 -0
- package/dist/node_modules/prosemirror-schema-list/dist/index.js +88 -0
- package/dist/node_modules/prosemirror-state/dist/index.js +822 -0
- package/dist/node_modules/prosemirror-tables/dist/index.js +1446 -0
- package/dist/node_modules/prosemirror-transform/dist/index.js +1520 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3772 -0
- package/dist/node_modules/react-is/index.js +1 -1
- package/dist/node_modules/recharts/es6/util/Events.js +1 -1
- package/dist/node_modules/recharts/es6/util/ReactUtils.js +1 -1
- package/dist/node_modules/use-sync-external-store/shim/index.js +1 -1
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/dist/packages/lune-ui/dist/_virtual/index3.js +2 -5
- package/dist/packages/lune-ui/dist/_virtual/index6.js +5 -2
- package/dist/packages/lune-ui/dist/components/popover.js +15 -11
- package/dist/packages/lune-ui/dist/components/select.js +6 -6
- package/dist/packages/lune-ui/dist/form/form-date-picker.js +2 -2
- package/dist/packages/lune-ui/dist/form/form.js +4 -4
- package/dist/packages/lune-ui/dist/node_modules/@radix-ui/react-popover/dist/index.js +39 -38
- package/dist/packages/lune-ui/dist/node_modules/prop-types/index.js +1 -1
- package/dist/packages/lune-ui/dist/packages/lune-ui/node_modules/recharts/es6/util/Events.js +1 -1
- package/dist/shared/components/color-picker/color-picker.d.ts +2 -1
- package/dist/shared/components/color-picker/color-picker.js +11 -11
- package/dist/shared/components/data-table/data-table-filter.js +4 -4
- package/dist/shared/components/rich-editor/rich-editor.d.ts +6 -0
- package/dist/shared/components/rich-editor/rich-editor.js +93 -0
- package/dist/shared/components/rich-editor/toolbar/bold/rich-editor-toolbar-bold.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/bold/rich-editor-toolbar-bold.js +65 -0
- package/dist/shared/components/rich-editor/toolbar/color/rich-editor-toolbar-color.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/color/rich-editor-toolbar-color.js +65 -0
- package/dist/shared/components/rich-editor/toolbar/heading/rich-editor-toolbar-heading.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/heading/rich-editor-toolbar-heading.js +114 -0
- package/dist/shared/components/rich-editor/toolbar/italic/rich-editor-toolbar-italic.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/italic/rich-editor-toolbar-italic.js +65 -0
- package/dist/shared/components/rich-editor/toolbar/link/rich-editor-toolbar-link-form.d.ts +2 -0
- package/dist/shared/components/rich-editor/toolbar/link/rich-editor-toolbar-link-form.js +103 -0
- package/dist/shared/components/rich-editor/toolbar/link/rich-editor-toolbar-link.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/link/rich-editor-toolbar-link.js +63 -0
- package/dist/shared/components/rich-editor/toolbar/ol-list/rich-editor-toolbar-ul-list.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/ol-list/rich-editor-toolbar-ul-list.js +65 -0
- package/dist/shared/components/rich-editor/toolbar/table/rich-editor-toolbar-table.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/table/rich-editor-toolbar-table.js +107 -0
- package/dist/shared/components/rich-editor/toolbar/toolbar.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/toolbar.js +64 -0
- package/dist/shared/components/rich-editor/toolbar/ul-list/rich-editor-toolbar-ul-list.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/ul-list/rich-editor-toolbar-ul-list.js +65 -0
- package/dist/shared/components/rich-editor/toolbar/underline/rich-editor-toolbar-underline.d.ts +1 -0
- package/dist/shared/components/rich-editor/toolbar/underline/rich-editor-toolbar-underline.js +65 -0
- package/package.json +6 -1
|
@@ -0,0 +1,707 @@
|
|
|
1
|
+
const Ce = "aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2", pe = "ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2", zt = "numeric", Bt = "ascii", Ft = "alpha", K = "asciinumeric", F = "alphanumeric", Kt = "domain", le = "emoji", Se = "scheme", Oe = "slashscheme", Pt = "whitespace";
|
|
2
|
+
function ye(t, n) {
|
|
3
|
+
return t in n || (n[t] = []), n[t];
|
|
4
|
+
}
|
|
5
|
+
function j(t, n, e) {
|
|
6
|
+
n[zt] && (n[K] = !0, n[F] = !0), n[Bt] && (n[K] = !0, n[Ft] = !0), n[K] && (n[F] = !0), n[Ft] && (n[F] = !0), n[F] && (n[Kt] = !0), n[le] && (n[Kt] = !0);
|
|
7
|
+
for (const s in n) {
|
|
8
|
+
const i = ye(s, e);
|
|
9
|
+
i.indexOf(t) < 0 && i.push(t);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
function ke(t, n) {
|
|
13
|
+
const e = {};
|
|
14
|
+
for (const s in n)
|
|
15
|
+
n[s].indexOf(t) >= 0 && (e[s] = !0);
|
|
16
|
+
return e;
|
|
17
|
+
}
|
|
18
|
+
function p(t = null) {
|
|
19
|
+
this.j = {}, this.jr = [], this.jd = null, this.t = t;
|
|
20
|
+
}
|
|
21
|
+
p.groups = {};
|
|
22
|
+
p.prototype = {
|
|
23
|
+
accepts() {
|
|
24
|
+
return !!this.t;
|
|
25
|
+
},
|
|
26
|
+
/**
|
|
27
|
+
* Follow an existing transition from the given input to the next state.
|
|
28
|
+
* Does not mutate.
|
|
29
|
+
* @param {string} input character or token type to transition on
|
|
30
|
+
* @returns {?State<T>} the next state, if any
|
|
31
|
+
*/
|
|
32
|
+
go(t) {
|
|
33
|
+
const n = this, e = n.j[t];
|
|
34
|
+
if (e)
|
|
35
|
+
return e;
|
|
36
|
+
for (let s = 0; s < n.jr.length; s++) {
|
|
37
|
+
const i = n.jr[s][0], r = n.jr[s][1];
|
|
38
|
+
if (r && i.test(t))
|
|
39
|
+
return r;
|
|
40
|
+
}
|
|
41
|
+
return n.jd;
|
|
42
|
+
},
|
|
43
|
+
/**
|
|
44
|
+
* Whether the state has a transition for the given input. Set the second
|
|
45
|
+
* argument to true to only look for an exact match (and not a default or
|
|
46
|
+
* regular-expression-based transition)
|
|
47
|
+
* @param {string} input
|
|
48
|
+
* @param {boolean} exactOnly
|
|
49
|
+
*/
|
|
50
|
+
has(t, n = !1) {
|
|
51
|
+
return n ? t in this.j : !!this.go(t);
|
|
52
|
+
},
|
|
53
|
+
/**
|
|
54
|
+
* Short for "transition all"; create a transition from the array of items
|
|
55
|
+
* in the given list to the same final resulting state.
|
|
56
|
+
* @param {string | string[]} inputs Group of inputs to transition on
|
|
57
|
+
* @param {Transition<T> | State<T>} [next] Transition options
|
|
58
|
+
* @param {Flags} [flags] Collections flags to add token to
|
|
59
|
+
* @param {Collections<T>} [groups] Master list of token groups
|
|
60
|
+
*/
|
|
61
|
+
ta(t, n, e, s) {
|
|
62
|
+
for (let i = 0; i < t.length; i++)
|
|
63
|
+
this.tt(t[i], n, e, s);
|
|
64
|
+
},
|
|
65
|
+
/**
|
|
66
|
+
* Short for "take regexp transition"; defines a transition for this state
|
|
67
|
+
* when it encounters a token which matches the given regular expression
|
|
68
|
+
* @param {RegExp} regexp Regular expression transition (populate first)
|
|
69
|
+
* @param {T | State<T>} [next] Transition options
|
|
70
|
+
* @param {Flags} [flags] Collections flags to add token to
|
|
71
|
+
* @param {Collections<T>} [groups] Master list of token groups
|
|
72
|
+
* @returns {State<T>} taken after the given input
|
|
73
|
+
*/
|
|
74
|
+
tr(t, n, e, s) {
|
|
75
|
+
s = s || p.groups;
|
|
76
|
+
let i;
|
|
77
|
+
return n && n.j ? i = n : (i = new p(n), e && s && j(n, e, s)), this.jr.push([t, i]), i;
|
|
78
|
+
},
|
|
79
|
+
/**
|
|
80
|
+
* Short for "take transitions", will take as many sequential transitions as
|
|
81
|
+
* the length of the given input and returns the
|
|
82
|
+
* resulting final state.
|
|
83
|
+
* @param {string | string[]} input
|
|
84
|
+
* @param {T | State<T>} [next] Transition options
|
|
85
|
+
* @param {Flags} [flags] Collections flags to add token to
|
|
86
|
+
* @param {Collections<T>} [groups] Master list of token groups
|
|
87
|
+
* @returns {State<T>} taken after the given input
|
|
88
|
+
*/
|
|
89
|
+
ts(t, n, e, s) {
|
|
90
|
+
let i = this;
|
|
91
|
+
const r = t.length;
|
|
92
|
+
if (!r)
|
|
93
|
+
return i;
|
|
94
|
+
for (let a = 0; a < r - 1; a++)
|
|
95
|
+
i = i.tt(t[a]);
|
|
96
|
+
return i.tt(t[r - 1], n, e, s);
|
|
97
|
+
},
|
|
98
|
+
/**
|
|
99
|
+
* Short for "take transition", this is a method for building/working with
|
|
100
|
+
* state machines.
|
|
101
|
+
*
|
|
102
|
+
* If a state already exists for the given input, returns it.
|
|
103
|
+
*
|
|
104
|
+
* If a token is specified, that state will emit that token when reached by
|
|
105
|
+
* the linkify engine.
|
|
106
|
+
*
|
|
107
|
+
* If no state exists, it will be initialized with some default transitions
|
|
108
|
+
* that resemble existing default transitions.
|
|
109
|
+
*
|
|
110
|
+
* If a state is given for the second argument, that state will be
|
|
111
|
+
* transitioned to on the given input regardless of what that input
|
|
112
|
+
* previously did.
|
|
113
|
+
*
|
|
114
|
+
* Specify a token group flags to define groups that this token belongs to.
|
|
115
|
+
* The token will be added to corresponding entires in the given groups
|
|
116
|
+
* object.
|
|
117
|
+
*
|
|
118
|
+
* @param {string} input character, token type to transition on
|
|
119
|
+
* @param {T | State<T>} [next] Transition options
|
|
120
|
+
* @param {Flags} [flags] Collections flags to add token to
|
|
121
|
+
* @param {Collections<T>} [groups] Master list of groups
|
|
122
|
+
* @returns {State<T>} taken after the given input
|
|
123
|
+
*/
|
|
124
|
+
tt(t, n, e, s) {
|
|
125
|
+
s = s || p.groups;
|
|
126
|
+
const i = this;
|
|
127
|
+
if (n && n.j)
|
|
128
|
+
return i.j[t] = n, n;
|
|
129
|
+
const r = n;
|
|
130
|
+
let a, c = i.go(t);
|
|
131
|
+
if (c ? (a = new p(), Object.assign(a.j, c.j), a.jr.push.apply(a.jr, c.jr), a.jd = c.jd, a.t = c.t) : a = new p(), r) {
|
|
132
|
+
if (s)
|
|
133
|
+
if (a.t && typeof a.t == "string") {
|
|
134
|
+
const d = Object.assign(ke(a.t, s), e);
|
|
135
|
+
j(r, d, s);
|
|
136
|
+
} else e && j(r, e, s);
|
|
137
|
+
a.t = r;
|
|
138
|
+
}
|
|
139
|
+
return i.j[t] = a, a;
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
const l = (t, n, e, s, i) => t.ta(n, e, s, i), f = (t, n, e, s, i) => t.tr(n, e, s, i), se = (t, n, e, s, i) => t.ts(n, e, s, i), o = (t, n, e, s, i) => t.tt(n, e, s, i), I = "WORD", Wt = "UWORD", ue = "ASCIINUMERICAL", he = "ALPHANUMERICAL", _ = "LOCALHOST", Gt = "TLD", Qt = "UTLD", tt = "SCHEME", U = "SLASH_SCHEME", qt = "NUM", $t = "WS", _t = "NL", W = "OPENBRACE", G = "CLOSEBRACE", et = "OPENBRACKET", nt = "CLOSEBRACKET", st = "OPENPAREN", it = "CLOSEPAREN", ot = "OPENANGLEBRACKET", rt = "CLOSEANGLEBRACKET", at = "FULLWIDTHLEFTPAREN", ct = "FULLWIDTHRIGHTPAREN", lt = "LEFTCORNERBRACKET", ut = "RIGHTCORNERBRACKET", ht = "LEFTWHITECORNERBRACKET", dt = "RIGHTWHITECORNERBRACKET", Et = "FULLWIDTHLESSTHAN", ft = "FULLWIDTHGREATERTHAN", mt = "AMPERSAND", gt = "APOSTROPHE", At = "ASTERISK", P = "AT", Tt = "BACKSLASH", Lt = "BACKTICK", Rt = "CARET", v = "COLON", Jt = "COMMA", Ct = "DOLLAR", y = "DOT", pt = "EQUALS", Yt = "EXCLAMATION", O = "HYPHEN", Q = "PERCENT", St = "PIPE", Ot = "PLUS", yt = "POUND", $ = "QUERY", Xt = "QUOTE", de = "FULLWIDTHMIDDLEDOT", Vt = "SEMI", k = "SLASH", q = "TILDE", kt = "UNDERSCORE", Ee = "EMOJI", bt = "SYM";
|
|
143
|
+
var fe = /* @__PURE__ */ Object.freeze({
|
|
144
|
+
__proto__: null,
|
|
145
|
+
ALPHANUMERICAL: he,
|
|
146
|
+
AMPERSAND: mt,
|
|
147
|
+
APOSTROPHE: gt,
|
|
148
|
+
ASCIINUMERICAL: ue,
|
|
149
|
+
ASTERISK: At,
|
|
150
|
+
AT: P,
|
|
151
|
+
BACKSLASH: Tt,
|
|
152
|
+
BACKTICK: Lt,
|
|
153
|
+
CARET: Rt,
|
|
154
|
+
CLOSEANGLEBRACKET: rt,
|
|
155
|
+
CLOSEBRACE: G,
|
|
156
|
+
CLOSEBRACKET: nt,
|
|
157
|
+
CLOSEPAREN: it,
|
|
158
|
+
COLON: v,
|
|
159
|
+
COMMA: Jt,
|
|
160
|
+
DOLLAR: Ct,
|
|
161
|
+
DOT: y,
|
|
162
|
+
EMOJI: Ee,
|
|
163
|
+
EQUALS: pt,
|
|
164
|
+
EXCLAMATION: Yt,
|
|
165
|
+
FULLWIDTHGREATERTHAN: ft,
|
|
166
|
+
FULLWIDTHLEFTPAREN: at,
|
|
167
|
+
FULLWIDTHLESSTHAN: Et,
|
|
168
|
+
FULLWIDTHMIDDLEDOT: de,
|
|
169
|
+
FULLWIDTHRIGHTPAREN: ct,
|
|
170
|
+
HYPHEN: O,
|
|
171
|
+
LEFTCORNERBRACKET: lt,
|
|
172
|
+
LEFTWHITECORNERBRACKET: ht,
|
|
173
|
+
LOCALHOST: _,
|
|
174
|
+
NL: _t,
|
|
175
|
+
NUM: qt,
|
|
176
|
+
OPENANGLEBRACKET: ot,
|
|
177
|
+
OPENBRACE: W,
|
|
178
|
+
OPENBRACKET: et,
|
|
179
|
+
OPENPAREN: st,
|
|
180
|
+
PERCENT: Q,
|
|
181
|
+
PIPE: St,
|
|
182
|
+
PLUS: Ot,
|
|
183
|
+
POUND: yt,
|
|
184
|
+
QUERY: $,
|
|
185
|
+
QUOTE: Xt,
|
|
186
|
+
RIGHTCORNERBRACKET: ut,
|
|
187
|
+
RIGHTWHITECORNERBRACKET: dt,
|
|
188
|
+
SCHEME: tt,
|
|
189
|
+
SEMI: Vt,
|
|
190
|
+
SLASH: k,
|
|
191
|
+
SLASH_SCHEME: U,
|
|
192
|
+
SYM: bt,
|
|
193
|
+
TILDE: q,
|
|
194
|
+
TLD: Gt,
|
|
195
|
+
UNDERSCORE: kt,
|
|
196
|
+
UTLD: Qt,
|
|
197
|
+
UWORD: Wt,
|
|
198
|
+
WORD: I,
|
|
199
|
+
WS: $t
|
|
200
|
+
});
|
|
201
|
+
const b = /[a-z]/, B = new RegExp("\\p{L}", "u"), vt = new RegExp("\\p{Emoji}", "u"), N = /\d/, jt = /\s/, ie = "\r", xt = `
|
|
202
|
+
`, be = "️", Ne = "", Ut = "";
|
|
203
|
+
let X = null, V = null;
|
|
204
|
+
function Ie(t = []) {
|
|
205
|
+
const n = {};
|
|
206
|
+
p.groups = n;
|
|
207
|
+
const e = new p();
|
|
208
|
+
X == null && (X = oe(Ce)), V == null && (V = oe(pe)), o(e, "'", gt), o(e, "{", W), o(e, "}", G), o(e, "[", et), o(e, "]", nt), o(e, "(", st), o(e, ")", it), o(e, "<", ot), o(e, ">", rt), o(e, "(", at), o(e, ")", ct), o(e, "「", lt), o(e, "」", ut), o(e, "『", ht), o(e, "』", dt), o(e, "<", Et), o(e, ">", ft), o(e, "&", mt), o(e, "*", At), o(e, "@", P), o(e, "`", Lt), o(e, "^", Rt), o(e, ":", v), o(e, ",", Jt), o(e, "$", Ct), o(e, ".", y), o(e, "=", pt), o(e, "!", Yt), o(e, "-", O), o(e, "%", Q), o(e, "|", St), o(e, "+", Ot), o(e, "#", yt), o(e, "?", $), o(e, '"', Xt), o(e, "/", k), o(e, ";", Vt), o(e, "~", q), o(e, "_", kt), o(e, "\\", Tt), o(e, "・", de);
|
|
209
|
+
const s = f(e, N, qt, {
|
|
210
|
+
[zt]: !0
|
|
211
|
+
});
|
|
212
|
+
f(s, N, s);
|
|
213
|
+
const i = f(s, b, ue, {
|
|
214
|
+
[K]: !0
|
|
215
|
+
}), r = f(s, B, he, {
|
|
216
|
+
[F]: !0
|
|
217
|
+
}), a = f(e, b, I, {
|
|
218
|
+
[Bt]: !0
|
|
219
|
+
});
|
|
220
|
+
f(a, N, i), f(a, b, a), f(i, N, i), f(i, b, i);
|
|
221
|
+
const c = f(e, B, Wt, {
|
|
222
|
+
[Ft]: !0
|
|
223
|
+
});
|
|
224
|
+
f(c, b), f(c, N, r), f(c, B, c), f(r, N, r), f(r, b), f(r, B, r);
|
|
225
|
+
const d = o(e, xt, _t, {
|
|
226
|
+
[Pt]: !0
|
|
227
|
+
}), m = o(e, ie, $t, {
|
|
228
|
+
[Pt]: !0
|
|
229
|
+
}), E = f(e, jt, $t, {
|
|
230
|
+
[Pt]: !0
|
|
231
|
+
});
|
|
232
|
+
o(e, Ut, E), o(m, xt, d), o(m, Ut, E), f(m, jt, E), o(E, ie), o(E, xt), f(E, jt, E), o(E, Ut, E);
|
|
233
|
+
const u = f(e, vt, Ee, {
|
|
234
|
+
[le]: !0
|
|
235
|
+
});
|
|
236
|
+
o(u, "#"), f(u, vt, u), o(u, be, u);
|
|
237
|
+
const g = o(u, Ne);
|
|
238
|
+
o(g, "#"), f(g, vt, u);
|
|
239
|
+
const A = [[b, a], [N, i]], H = [[b, null], [B, c], [N, r]];
|
|
240
|
+
for (let T = 0; T < X.length; T++)
|
|
241
|
+
D(e, X[T], Gt, I, A);
|
|
242
|
+
for (let T = 0; T < V.length; T++)
|
|
243
|
+
D(e, V[T], Qt, Wt, H);
|
|
244
|
+
j(Gt, {
|
|
245
|
+
tld: !0,
|
|
246
|
+
ascii: !0
|
|
247
|
+
}, n), j(Qt, {
|
|
248
|
+
utld: !0,
|
|
249
|
+
alpha: !0
|
|
250
|
+
}, n), D(e, "file", tt, I, A), D(e, "mailto", tt, I, A), D(e, "http", U, I, A), D(e, "https", U, I, A), D(e, "ftp", U, I, A), D(e, "ftps", U, I, A), j(tt, {
|
|
251
|
+
scheme: !0,
|
|
252
|
+
ascii: !0
|
|
253
|
+
}, n), j(U, {
|
|
254
|
+
slashscheme: !0,
|
|
255
|
+
ascii: !0
|
|
256
|
+
}, n), t = t.sort((T, C) => T[0] > C[0] ? 1 : -1);
|
|
257
|
+
for (let T = 0; T < t.length; T++) {
|
|
258
|
+
const C = t[T][0], L = t[T][1] ? {
|
|
259
|
+
[Se]: !0
|
|
260
|
+
} : {
|
|
261
|
+
[Oe]: !0
|
|
262
|
+
};
|
|
263
|
+
C.indexOf("-") >= 0 ? L[Kt] = !0 : b.test(C) ? N.test(C) ? L[K] = !0 : L[Bt] = !0 : L[zt] = !0, se(e, C, C, L);
|
|
264
|
+
}
|
|
265
|
+
return se(e, "localhost", _, {
|
|
266
|
+
ascii: !0
|
|
267
|
+
}), e.jd = new p(bt), {
|
|
268
|
+
start: e,
|
|
269
|
+
tokens: Object.assign({
|
|
270
|
+
groups: n
|
|
271
|
+
}, fe)
|
|
272
|
+
};
|
|
273
|
+
}
|
|
274
|
+
function me(t, n) {
|
|
275
|
+
const e = He(n.replace(/[A-Z]/g, (c) => c.toLowerCase())), s = e.length, i = [];
|
|
276
|
+
let r = 0, a = 0;
|
|
277
|
+
for (; a < s; ) {
|
|
278
|
+
let c = t, d = null, m = 0, E = null, u = -1, g = -1;
|
|
279
|
+
for (; a < s && (d = c.go(e[a])); )
|
|
280
|
+
c = d, c.accepts() ? (u = 0, g = 0, E = c) : u >= 0 && (u += e[a].length, g++), m += e[a].length, r += e[a].length, a++;
|
|
281
|
+
r -= u, a -= g, m -= u, i.push({
|
|
282
|
+
t: E.t,
|
|
283
|
+
// token type/name
|
|
284
|
+
v: n.slice(r - m, r),
|
|
285
|
+
// string value
|
|
286
|
+
s: r - m,
|
|
287
|
+
// start index
|
|
288
|
+
e: r
|
|
289
|
+
// end index (excluding)
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
return i;
|
|
293
|
+
}
|
|
294
|
+
function He(t) {
|
|
295
|
+
const n = [], e = t.length;
|
|
296
|
+
let s = 0;
|
|
297
|
+
for (; s < e; ) {
|
|
298
|
+
let i = t.charCodeAt(s), r, a = i < 55296 || i > 56319 || s + 1 === e || (r = t.charCodeAt(s + 1)) < 56320 || r > 57343 ? t[s] : t.slice(s, s + 2);
|
|
299
|
+
n.push(a), s += a.length;
|
|
300
|
+
}
|
|
301
|
+
return n;
|
|
302
|
+
}
|
|
303
|
+
function D(t, n, e, s, i) {
|
|
304
|
+
let r;
|
|
305
|
+
const a = n.length;
|
|
306
|
+
for (let c = 0; c < a - 1; c++) {
|
|
307
|
+
const d = n[c];
|
|
308
|
+
t.j[d] ? r = t.j[d] : (r = new p(s), r.jr = i.slice(), t.j[d] = r), t = r;
|
|
309
|
+
}
|
|
310
|
+
return r = new p(e), r.jr = i.slice(), t.j[n[a - 1]] = r, r;
|
|
311
|
+
}
|
|
312
|
+
function oe(t) {
|
|
313
|
+
const n = [], e = [];
|
|
314
|
+
let s = 0, i = "0123456789";
|
|
315
|
+
for (; s < t.length; ) {
|
|
316
|
+
let r = 0;
|
|
317
|
+
for (; i.indexOf(t[s + r]) >= 0; )
|
|
318
|
+
r++;
|
|
319
|
+
if (r > 0) {
|
|
320
|
+
n.push(e.join(""));
|
|
321
|
+
for (let a = parseInt(t.substring(s, s + r), 10); a > 0; a--)
|
|
322
|
+
e.pop();
|
|
323
|
+
s += r;
|
|
324
|
+
} else
|
|
325
|
+
e.push(t[s]), s++;
|
|
326
|
+
}
|
|
327
|
+
return n;
|
|
328
|
+
}
|
|
329
|
+
const J = {
|
|
330
|
+
defaultProtocol: "http",
|
|
331
|
+
events: null,
|
|
332
|
+
format: re,
|
|
333
|
+
formatHref: re,
|
|
334
|
+
nl2br: !1,
|
|
335
|
+
tagName: "a",
|
|
336
|
+
target: null,
|
|
337
|
+
rel: null,
|
|
338
|
+
validate: !0,
|
|
339
|
+
truncate: 1 / 0,
|
|
340
|
+
className: null,
|
|
341
|
+
attributes: null,
|
|
342
|
+
ignoreTags: [],
|
|
343
|
+
render: null
|
|
344
|
+
};
|
|
345
|
+
function Zt(t, n = null) {
|
|
346
|
+
let e = Object.assign({}, J);
|
|
347
|
+
t && (e = Object.assign(e, t instanceof Zt ? t.o : t));
|
|
348
|
+
const s = e.ignoreTags, i = [];
|
|
349
|
+
for (let r = 0; r < s.length; r++)
|
|
350
|
+
i.push(s[r].toUpperCase());
|
|
351
|
+
this.o = e, n && (this.defaultRender = n), this.ignoreTags = i;
|
|
352
|
+
}
|
|
353
|
+
Zt.prototype = {
|
|
354
|
+
o: J,
|
|
355
|
+
/**
|
|
356
|
+
* @type string[]
|
|
357
|
+
*/
|
|
358
|
+
ignoreTags: [],
|
|
359
|
+
/**
|
|
360
|
+
* @param {IntermediateRepresentation} ir
|
|
361
|
+
* @returns {any}
|
|
362
|
+
*/
|
|
363
|
+
defaultRender(t) {
|
|
364
|
+
return t;
|
|
365
|
+
},
|
|
366
|
+
/**
|
|
367
|
+
* Returns true or false based on whether a token should be displayed as a
|
|
368
|
+
* link based on the user options.
|
|
369
|
+
* @param {MultiToken} token
|
|
370
|
+
* @returns {boolean}
|
|
371
|
+
*/
|
|
372
|
+
check(t) {
|
|
373
|
+
return this.get("validate", t.toString(), t);
|
|
374
|
+
},
|
|
375
|
+
// Private methods
|
|
376
|
+
/**
|
|
377
|
+
* Resolve an option's value based on the value of the option and the given
|
|
378
|
+
* params. If operator and token are specified and the target option is
|
|
379
|
+
* callable, automatically calls the function with the given argument.
|
|
380
|
+
* @template {keyof Opts} K
|
|
381
|
+
* @param {K} key Name of option to use
|
|
382
|
+
* @param {string} [operator] will be passed to the target option if it's a
|
|
383
|
+
* function. If not specified, RAW function value gets returned
|
|
384
|
+
* @param {MultiToken} [token] The token from linkify.tokenize
|
|
385
|
+
* @returns {Opts[K] | any}
|
|
386
|
+
*/
|
|
387
|
+
get(t, n, e) {
|
|
388
|
+
const s = n != null;
|
|
389
|
+
let i = this.o[t];
|
|
390
|
+
return i && (typeof i == "object" ? (i = e.t in i ? i[e.t] : J[t], typeof i == "function" && s && (i = i(n, e))) : typeof i == "function" && s && (i = i(n, e.t, e)), i);
|
|
391
|
+
},
|
|
392
|
+
/**
|
|
393
|
+
* @template {keyof Opts} L
|
|
394
|
+
* @param {L} key Name of options object to use
|
|
395
|
+
* @param {string} [operator]
|
|
396
|
+
* @param {MultiToken} [token]
|
|
397
|
+
* @returns {Opts[L] | any}
|
|
398
|
+
*/
|
|
399
|
+
getObj(t, n, e) {
|
|
400
|
+
let s = this.o[t];
|
|
401
|
+
return typeof s == "function" && n != null && (s = s(n, e.t, e)), s;
|
|
402
|
+
},
|
|
403
|
+
/**
|
|
404
|
+
* Convert the given token to a rendered element that may be added to the
|
|
405
|
+
* calling-interface's DOM
|
|
406
|
+
* @param {MultiToken} token Token to render to an HTML element
|
|
407
|
+
* @returns {any} Render result; e.g., HTML string, DOM element, React
|
|
408
|
+
* Component, etc.
|
|
409
|
+
*/
|
|
410
|
+
render(t) {
|
|
411
|
+
const n = t.render(this);
|
|
412
|
+
return (this.get("render", null, t) || this.defaultRender)(n, t.t, t);
|
|
413
|
+
}
|
|
414
|
+
};
|
|
415
|
+
function re(t) {
|
|
416
|
+
return t;
|
|
417
|
+
}
|
|
418
|
+
function ge(t, n) {
|
|
419
|
+
this.t = "token", this.v = t, this.tk = n;
|
|
420
|
+
}
|
|
421
|
+
ge.prototype = {
|
|
422
|
+
isLink: !1,
|
|
423
|
+
/**
|
|
424
|
+
* Return the string this token represents.
|
|
425
|
+
* @return {string}
|
|
426
|
+
*/
|
|
427
|
+
toString() {
|
|
428
|
+
return this.v;
|
|
429
|
+
},
|
|
430
|
+
/**
|
|
431
|
+
* What should the value for this token be in the `href` HTML attribute?
|
|
432
|
+
* Returns the `.toString` value by default.
|
|
433
|
+
* @param {string} [scheme]
|
|
434
|
+
* @return {string}
|
|
435
|
+
*/
|
|
436
|
+
toHref(t) {
|
|
437
|
+
return this.toString();
|
|
438
|
+
},
|
|
439
|
+
/**
|
|
440
|
+
* @param {Options} options Formatting options
|
|
441
|
+
* @returns {string}
|
|
442
|
+
*/
|
|
443
|
+
toFormattedString(t) {
|
|
444
|
+
const n = this.toString(), e = t.get("truncate", n, this), s = t.get("format", n, this);
|
|
445
|
+
return e && s.length > e ? s.substring(0, e) + "…" : s;
|
|
446
|
+
},
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @param {Options} options
|
|
450
|
+
* @returns {string}
|
|
451
|
+
*/
|
|
452
|
+
toFormattedHref(t) {
|
|
453
|
+
return t.get("formatHref", this.toHref(t.get("defaultProtocol")), this);
|
|
454
|
+
},
|
|
455
|
+
/**
|
|
456
|
+
* The start index of this token in the original input string
|
|
457
|
+
* @returns {number}
|
|
458
|
+
*/
|
|
459
|
+
startIndex() {
|
|
460
|
+
return this.tk[0].s;
|
|
461
|
+
},
|
|
462
|
+
/**
|
|
463
|
+
* The end index of this token in the original input string (up to this
|
|
464
|
+
* index but not including it)
|
|
465
|
+
* @returns {number}
|
|
466
|
+
*/
|
|
467
|
+
endIndex() {
|
|
468
|
+
return this.tk[this.tk.length - 1].e;
|
|
469
|
+
},
|
|
470
|
+
/**
|
|
471
|
+
Returns an object of relevant values for this token, which includes keys
|
|
472
|
+
* type - Kind of token ('url', 'email', etc.)
|
|
473
|
+
* value - Original text
|
|
474
|
+
* href - The value that should be added to the anchor tag's href
|
|
475
|
+
attribute
|
|
476
|
+
@method toObject
|
|
477
|
+
@param {string} [protocol] `'http'` by default
|
|
478
|
+
*/
|
|
479
|
+
toObject(t = J.defaultProtocol) {
|
|
480
|
+
return {
|
|
481
|
+
type: this.t,
|
|
482
|
+
value: this.toString(),
|
|
483
|
+
isLink: this.isLink,
|
|
484
|
+
href: this.toHref(t),
|
|
485
|
+
start: this.startIndex(),
|
|
486
|
+
end: this.endIndex()
|
|
487
|
+
};
|
|
488
|
+
},
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @param {Options} options Formatting option
|
|
492
|
+
*/
|
|
493
|
+
toFormattedObject(t) {
|
|
494
|
+
return {
|
|
495
|
+
type: this.t,
|
|
496
|
+
value: this.toFormattedString(t),
|
|
497
|
+
isLink: this.isLink,
|
|
498
|
+
href: this.toFormattedHref(t),
|
|
499
|
+
start: this.startIndex(),
|
|
500
|
+
end: this.endIndex()
|
|
501
|
+
};
|
|
502
|
+
},
|
|
503
|
+
/**
|
|
504
|
+
* Whether this token should be rendered as a link according to the given options
|
|
505
|
+
* @param {Options} options
|
|
506
|
+
* @returns {boolean}
|
|
507
|
+
*/
|
|
508
|
+
validate(t) {
|
|
509
|
+
return t.get("validate", this.toString(), this);
|
|
510
|
+
},
|
|
511
|
+
/**
|
|
512
|
+
* Return an object that represents how this link should be rendered.
|
|
513
|
+
* @param {Options} options Formattinng options
|
|
514
|
+
*/
|
|
515
|
+
render(t) {
|
|
516
|
+
const n = this, e = this.toHref(t.get("defaultProtocol")), s = t.get("formatHref", e, this), i = t.get("tagName", e, n), r = this.toFormattedString(t), a = {}, c = t.get("className", e, n), d = t.get("target", e, n), m = t.get("rel", e, n), E = t.getObj("attributes", e, n), u = t.getObj("events", e, n);
|
|
517
|
+
return a.href = s, c && (a.class = c), d && (a.target = d), m && (a.rel = m), E && Object.assign(a, E), {
|
|
518
|
+
tagName: i,
|
|
519
|
+
attributes: a,
|
|
520
|
+
content: r,
|
|
521
|
+
eventListeners: u
|
|
522
|
+
};
|
|
523
|
+
}
|
|
524
|
+
};
|
|
525
|
+
function Nt(t, n) {
|
|
526
|
+
class e extends ge {
|
|
527
|
+
constructor(i, r) {
|
|
528
|
+
super(i, r), this.t = t;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
for (const s in n)
|
|
532
|
+
e.prototype[s] = n[s];
|
|
533
|
+
return e.t = t, e;
|
|
534
|
+
}
|
|
535
|
+
const ae = Nt("email", {
|
|
536
|
+
isLink: !0,
|
|
537
|
+
toHref() {
|
|
538
|
+
return "mailto:" + this.toString();
|
|
539
|
+
}
|
|
540
|
+
}), ce = Nt("text"), we = Nt("nl"), Z = Nt("url", {
|
|
541
|
+
isLink: !0,
|
|
542
|
+
/**
|
|
543
|
+
Lowercases relevant parts of the domain and adds the protocol if
|
|
544
|
+
required. Note that this will not escape unsafe HTML characters in the
|
|
545
|
+
URL.
|
|
546
|
+
@param {string} [scheme] default scheme (e.g., 'https')
|
|
547
|
+
@return {string} the full href
|
|
548
|
+
*/
|
|
549
|
+
toHref(t = J.defaultProtocol) {
|
|
550
|
+
return this.hasProtocol() ? this.v : `${t}://${this.v}`;
|
|
551
|
+
},
|
|
552
|
+
/**
|
|
553
|
+
* Check whether this URL token has a protocol
|
|
554
|
+
* @return {boolean}
|
|
555
|
+
*/
|
|
556
|
+
hasProtocol() {
|
|
557
|
+
const t = this.tk;
|
|
558
|
+
return t.length >= 2 && t[0].t !== _ && t[1].t === v;
|
|
559
|
+
}
|
|
560
|
+
}), S = (t) => new p(t);
|
|
561
|
+
function De({
|
|
562
|
+
groups: t
|
|
563
|
+
}) {
|
|
564
|
+
const n = t.domain.concat([mt, At, P, Tt, Lt, Rt, Ct, pt, O, qt, Q, St, Ot, yt, k, bt, q, kt]), e = [gt, v, Jt, y, Yt, Q, $, Xt, Vt, ot, rt, W, G, nt, et, st, it, at, ct, lt, ut, ht, dt, Et, ft], s = [mt, gt, At, Tt, Lt, Rt, Ct, pt, O, W, G, Q, St, Ot, yt, $, k, bt, q, kt], i = S(), r = o(i, q);
|
|
565
|
+
l(r, s, r), l(r, t.domain, r);
|
|
566
|
+
const a = S(), c = S(), d = S();
|
|
567
|
+
l(i, t.domain, a), l(i, t.scheme, c), l(i, t.slashscheme, d), l(a, s, r), l(a, t.domain, a);
|
|
568
|
+
const m = o(a, P);
|
|
569
|
+
o(r, P, m), o(c, P, m), o(d, P, m);
|
|
570
|
+
const E = o(r, y);
|
|
571
|
+
l(E, s, r), l(E, t.domain, r);
|
|
572
|
+
const u = S();
|
|
573
|
+
l(m, t.domain, u), l(u, t.domain, u);
|
|
574
|
+
const g = o(u, y);
|
|
575
|
+
l(g, t.domain, u);
|
|
576
|
+
const A = S(ae);
|
|
577
|
+
l(g, t.tld, A), l(g, t.utld, A), o(m, _, A);
|
|
578
|
+
const H = o(u, O);
|
|
579
|
+
o(H, O, H), l(H, t.domain, u), l(A, t.domain, u), o(A, y, g), o(A, O, H);
|
|
580
|
+
const T = o(A, v);
|
|
581
|
+
l(T, t.numeric, ae);
|
|
582
|
+
const C = o(a, O), w = o(a, y);
|
|
583
|
+
o(C, O, C), l(C, t.domain, a), l(w, s, r), l(w, t.domain, a);
|
|
584
|
+
const L = S(Z);
|
|
585
|
+
l(w, t.tld, L), l(w, t.utld, L), l(L, t.domain, a), l(L, s, r), o(L, y, w), o(L, O, C), o(L, P, m);
|
|
586
|
+
const Te = o(L, v), te = S(Z);
|
|
587
|
+
l(Te, t.numeric, te);
|
|
588
|
+
const R = S(Z), M = S();
|
|
589
|
+
l(R, n, R), l(R, e, M), l(M, n, R), l(M, e, M), o(L, k, R), o(te, k, R);
|
|
590
|
+
const It = o(c, v), Le = o(d, v), Re = o(Le, k), Ht = o(Re, k);
|
|
591
|
+
l(c, t.domain, a), o(c, y, w), o(c, O, C), l(d, t.domain, a), o(d, y, w), o(d, O, C), l(It, t.domain, R), o(It, k, R), o(It, $, R), l(Ht, t.domain, R), l(Ht, n, R), o(Ht, k, R);
|
|
592
|
+
const ee = [
|
|
593
|
+
[W, G],
|
|
594
|
+
// {}
|
|
595
|
+
[et, nt],
|
|
596
|
+
// []
|
|
597
|
+
[st, it],
|
|
598
|
+
// ()
|
|
599
|
+
[ot, rt],
|
|
600
|
+
// <>
|
|
601
|
+
[at, ct],
|
|
602
|
+
// ()
|
|
603
|
+
[lt, ut],
|
|
604
|
+
// 「」
|
|
605
|
+
[ht, dt],
|
|
606
|
+
// 『』
|
|
607
|
+
[Et, ft]
|
|
608
|
+
// <>
|
|
609
|
+
];
|
|
610
|
+
for (let wt = 0; wt < ee.length; wt++) {
|
|
611
|
+
const [ne, Dt] = ee[wt], Y = o(R, ne);
|
|
612
|
+
o(M, ne, Y), o(Y, Dt, R);
|
|
613
|
+
const x = S(Z);
|
|
614
|
+
l(Y, n, x);
|
|
615
|
+
const z = S();
|
|
616
|
+
l(Y, e), l(x, n, x), l(x, e, z), l(z, n, x), l(z, e, z), o(x, Dt, R), o(z, Dt, R);
|
|
617
|
+
}
|
|
618
|
+
return o(i, _, L), o(i, _t, we), {
|
|
619
|
+
start: i,
|
|
620
|
+
tokens: fe
|
|
621
|
+
};
|
|
622
|
+
}
|
|
623
|
+
function Pe(t, n, e) {
|
|
624
|
+
let s = e.length, i = 0, r = [], a = [];
|
|
625
|
+
for (; i < s; ) {
|
|
626
|
+
let c = t, d = null, m = null, E = 0, u = null, g = -1;
|
|
627
|
+
for (; i < s && !(d = c.go(e[i].t)); )
|
|
628
|
+
a.push(e[i++]);
|
|
629
|
+
for (; i < s && (m = d || c.go(e[i].t)); )
|
|
630
|
+
d = null, c = m, c.accepts() ? (g = 0, u = c) : g >= 0 && g++, i++, E++;
|
|
631
|
+
if (g < 0)
|
|
632
|
+
i -= E, i < s && (a.push(e[i]), i++);
|
|
633
|
+
else {
|
|
634
|
+
a.length > 0 && (r.push(Mt(ce, n, a)), a = []), i -= g, E -= g;
|
|
635
|
+
const A = u.t, H = e.slice(i - E, i);
|
|
636
|
+
r.push(Mt(A, n, H));
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
return a.length > 0 && r.push(Mt(ce, n, a)), r;
|
|
640
|
+
}
|
|
641
|
+
function Mt(t, n, e) {
|
|
642
|
+
const s = e[0].s, i = e[e.length - 1].e, r = n.slice(s, i);
|
|
643
|
+
return new t(r, e);
|
|
644
|
+
}
|
|
645
|
+
const ve = typeof console < "u" && console && console.warn || (() => {
|
|
646
|
+
}), je = "until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.", h = {
|
|
647
|
+
scanner: null,
|
|
648
|
+
parser: null,
|
|
649
|
+
tokenQueue: [],
|
|
650
|
+
pluginQueue: [],
|
|
651
|
+
customSchemes: [],
|
|
652
|
+
initialized: !1
|
|
653
|
+
};
|
|
654
|
+
function Ue() {
|
|
655
|
+
return p.groups = {}, h.scanner = null, h.parser = null, h.tokenQueue = [], h.pluginQueue = [], h.customSchemes = [], h.initialized = !1, h;
|
|
656
|
+
}
|
|
657
|
+
function Me(t, n = !1) {
|
|
658
|
+
if (h.initialized && ve(`linkifyjs: already initialized - will not register custom scheme "${t}" ${je}`), !/^[0-9a-z]+(-[0-9a-z]+)*$/.test(t))
|
|
659
|
+
throw new Error(`linkifyjs: incorrect scheme format.
|
|
660
|
+
1. Must only contain digits, lowercase ASCII letters or "-"
|
|
661
|
+
2. Cannot start or end with "-"
|
|
662
|
+
3. "-" cannot repeat`);
|
|
663
|
+
h.customSchemes.push([t, n]);
|
|
664
|
+
}
|
|
665
|
+
function xe() {
|
|
666
|
+
h.scanner = Ie(h.customSchemes);
|
|
667
|
+
for (let t = 0; t < h.tokenQueue.length; t++)
|
|
668
|
+
h.tokenQueue[t][1]({
|
|
669
|
+
scanner: h.scanner
|
|
670
|
+
});
|
|
671
|
+
h.parser = De(h.scanner.tokens);
|
|
672
|
+
for (let t = 0; t < h.pluginQueue.length; t++)
|
|
673
|
+
h.pluginQueue[t][1]({
|
|
674
|
+
scanner: h.scanner,
|
|
675
|
+
parser: h.parser
|
|
676
|
+
});
|
|
677
|
+
return h.initialized = !0, h;
|
|
678
|
+
}
|
|
679
|
+
function Ae(t) {
|
|
680
|
+
return h.initialized || xe(), Pe(h.parser.start, t, me(h.scanner.start, t));
|
|
681
|
+
}
|
|
682
|
+
Ae.scan = me;
|
|
683
|
+
function ze(t, n = null, e = null) {
|
|
684
|
+
if (n && typeof n == "object") {
|
|
685
|
+
if (e)
|
|
686
|
+
throw Error(`linkifyjs: Invalid link type ${n}; must be a string`);
|
|
687
|
+
e = n, n = null;
|
|
688
|
+
}
|
|
689
|
+
const s = new Zt(e), i = Ae(t), r = [];
|
|
690
|
+
for (let a = 0; a < i.length; a++) {
|
|
691
|
+
const c = i[a];
|
|
692
|
+
c.isLink && (!n || c.t === n) && s.check(c) && r.push(c.toFormattedObject(s));
|
|
693
|
+
}
|
|
694
|
+
return r;
|
|
695
|
+
}
|
|
696
|
+
export {
|
|
697
|
+
ge as MultiToken,
|
|
698
|
+
Zt as Options,
|
|
699
|
+
p as State,
|
|
700
|
+
Nt as createTokenClass,
|
|
701
|
+
ze as find,
|
|
702
|
+
xe as init,
|
|
703
|
+
Me as registerCustomProtocol,
|
|
704
|
+
Ue as reset,
|
|
705
|
+
He as stringToArray,
|
|
706
|
+
Ae as tokenize
|
|
707
|
+
};
|