iss-ctrl 0.0.2 → 0.0.3
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/.editorconfig +13 -0
- package/.eslintrc.json +90 -0
- package/README.md +25 -24
- package/angular.json +190 -0
- package/bun.lock +1998 -0
- package/package.json +48 -19
- package/projects/iss/.eslintrc.json +37 -0
- package/projects/iss/README.md +24 -0
- package/projects/iss/ng-package.json +10 -0
- package/projects/iss/package.json +17 -0
- package/projects/iss/src/components/controls/base/control.base.ts +77 -0
- package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
- package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
- package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
- package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
- package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
- package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
- package/projects/iss/src/components/controls/input/input.control.ts +95 -0
- package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
- package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
- package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
- package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
- package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
- package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
- package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
- package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
- package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
- package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
- package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
- package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
- package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
- package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
- package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
- package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
- package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
- package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
- package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
- package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
- package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
- package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
- package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
- package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
- package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
- package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
- package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
- package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
- package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
- package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
- package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
- package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
- package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
- package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
- package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
- package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
- package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
- package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
- package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
- package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
- package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
- package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
- package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
- package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
- package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
- package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
- package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
- package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
- package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
- package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
- package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
- package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
- package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
- package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
- package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
- package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
- package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
- package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
- package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
- package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
- package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
- package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
- package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
- package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
- package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
- package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
- package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
- package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
- package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
- package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
- package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
- package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
- package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/select/select.control.ts +261 -0
- package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
- package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
- package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
- package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
- package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
- package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
- package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
- package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
- package/projects/iss/src/components/outlet/outlet.ts +152 -0
- package/projects/iss/src/components/shared/hints.component.ts +38 -0
- package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
- package/projects/iss/src/events/event-handler.service.ts +47 -0
- package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
- package/projects/iss/src/events/load/load-event.service.ts +26 -0
- package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
- package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
- package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
- package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
- package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
- package/projects/iss/src/events/show/show-event.service.ts +11 -0
- package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
- package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
- package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
- package/projects/iss/src/public-api.ts +102 -0
- package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
- package/projects/iss/src/shared/classes/field-action.ts +28 -0
- package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
- package/projects/iss/src/shared/classes/field-config.ts +113 -0
- package/projects/iss/src/shared/classes/field-option.ts +9 -0
- package/projects/iss/src/shared/classes/field-validation.ts +15 -0
- package/projects/iss/src/shared/classes/form-field.ts +94 -0
- package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
- package/projects/iss/src/shared/constants/date.const.ts +18 -0
- package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
- package/projects/iss/src/shared/constants/provider.const.ts +7 -0
- package/projects/iss/src/shared/constants/regex.const.ts +1 -0
- package/projects/iss/src/shared/constants/validation.const.ts +115 -0
- package/projects/iss/src/shared/indexes/components.index.ts +27 -0
- package/projects/iss/src/shared/indexes/services.index.ts +11 -0
- package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
- package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
- package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
- package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
- package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
- package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
- package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
- package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
- package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
- package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
- package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
- package/projects/iss/src/shared/services/loader.service.ts +51 -0
- package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
- package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
- package/projects/iss/src/shared/tokens/field.token.ts +4 -0
- package/projects/iss/src/shared/tokens/host.token.ts +3 -0
- package/projects/iss/src/shared/tokens/language.token.ts +3 -0
- package/projects/iss/src/shared/tokens/url.token.ts +3 -0
- package/projects/iss/src/shared/types/iso2.type.ts +244 -0
- package/projects/iss/src/shared/types/validation.type.ts +3 -0
- package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
- package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
- package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
- package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
- package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
- package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
- package/projects/iss/src/validators/core.validator.ts +39 -0
- package/projects/iss/src/validators/file.validator.ts +100 -0
- package/projects/iss/src/validators/time.validator.ts +31 -0
- package/projects/iss/tsconfig.lib.json +13 -0
- package/projects/iss/tsconfig.lib.prod.json +9 -0
- package/projects/iss/tsconfig.spec.json +13 -0
- package/projects/iss/upgrade.scss +68 -0
- package/projects/playground/.eslintrc.json +37 -0
- package/projects/playground/public/favicon.ico +0 -0
- package/projects/playground/public/flags/ad.svg +282 -0
- package/projects/playground/public/flags/ae.svg +6 -0
- package/projects/playground/public/flags/af.svg +9 -0
- package/projects/playground/public/flags/ag.svg +15 -0
- package/projects/playground/public/flags/ai.svg +35 -0
- package/projects/playground/public/flags/al.svg +7 -0
- package/projects/playground/public/flags/am.svg +5 -0
- package/projects/playground/public/flags/ao.svg +19 -0
- package/projects/playground/public/flags/aq.svg +45 -0
- package/projects/playground/public/flags/ar.svg +66 -0
- package/projects/playground/public/flags/as.svg +225 -0
- package/projects/playground/public/flags/at.svg +4 -0
- package/projects/playground/public/flags/au.svg +32 -0
- package/projects/playground/public/flags/aw.svg +11 -0
- package/projects/playground/public/flags/ax.svg +11 -0
- package/projects/playground/public/flags/az.svg +11 -0
- package/projects/playground/public/flags/ba.svg +18 -0
- package/projects/playground/public/flags/bb.svg +11 -0
- package/projects/playground/public/flags/bd.svg +4 -0
- package/projects/playground/public/flags/be.svg +5 -0
- package/projects/playground/public/flags/bf.svg +14 -0
- package/projects/playground/public/flags/bg.svg +5 -0
- package/projects/playground/public/flags/bh.svg +4 -0
- package/projects/playground/public/flags/bi.svg +26 -0
- package/projects/playground/public/flags/bj.svg +5 -0
- package/projects/playground/public/flags/bl.svg +5 -0
- package/projects/playground/public/flags/bm.svg +374 -0
- package/projects/playground/public/flags/bn.svg +70 -0
- package/projects/playground/public/flags/bo.svg +3625 -0
- package/projects/playground/public/flags/bq.svg +5 -0
- package/projects/playground/public/flags/br.svg +92 -0
- package/projects/playground/public/flags/bs.svg +5 -0
- package/projects/playground/public/flags/bt.svg +487 -0
- package/projects/playground/public/flags/bv.svg +11 -0
- package/projects/playground/public/flags/bw.svg +5 -0
- package/projects/playground/public/flags/by.svg +15 -0
- package/projects/playground/public/flags/bz.svg +629 -0
- package/projects/playground/public/flags/ca.svg +7 -0
- package/projects/playground/public/flags/cc.svg +33 -0
- package/projects/playground/public/flags/cd.svg +5 -0
- package/projects/playground/public/flags/cf.svg +7 -0
- package/projects/playground/public/flags/cg.svg +5 -0
- package/projects/playground/public/flags/ch.svg +4 -0
- package/projects/playground/public/flags/ci.svg +5 -0
- package/projects/playground/public/flags/ck.svg +29 -0
- package/projects/playground/public/flags/cl.svg +14 -0
- package/projects/playground/public/flags/cm.svg +15 -0
- package/projects/playground/public/flags/cn.svg +11 -0
- package/projects/playground/public/flags/co.svg +5 -0
- package/projects/playground/public/flags/cr.svg +1332 -0
- package/projects/playground/public/flags/cu.svg +6 -0
- package/projects/playground/public/flags/cv.svg +24 -0
- package/projects/playground/public/flags/cw.svg +16 -0
- package/projects/playground/public/flags/cx.svg +24 -0
- package/projects/playground/public/flags/cy.svg +13 -0
- package/projects/playground/public/flags/cz.svg +5 -0
- package/projects/playground/public/flags/de.svg +5 -0
- package/projects/playground/public/flags/dj.svg +6 -0
- package/projects/playground/public/flags/dk.svg +5 -0
- package/projects/playground/public/flags/dm.svg +198 -0
- package/projects/playground/public/flags/do.svg +238 -0
- package/projects/playground/public/flags/dz.svg +5 -0
- package/projects/playground/public/flags/ec.svg +1292 -0
- package/projects/playground/public/flags/ee.svg +5 -0
- package/projects/playground/public/flags/eg.svg +125 -0
- package/projects/playground/public/flags/eh.svg +12 -0
- package/projects/playground/public/flags/er.svg +9 -0
- package/projects/playground/public/flags/es.svg +445 -0
- package/projects/playground/public/flags/et.svg +16 -0
- package/projects/playground/public/flags/eu.svg +28 -0
- package/projects/playground/public/flags/fi.svg +5 -0
- package/projects/playground/public/flags/fj.svg +203 -0
- package/projects/playground/public/flags/fk.svg +922 -0
- package/projects/playground/public/flags/flags.png +0 -0
- package/projects/playground/public/flags/flags@2x.png +0 -0
- package/projects/playground/public/flags/fm.svg +16 -0
- package/projects/playground/public/flags/fo.svg +11 -0
- package/projects/playground/public/flags/fonts.css +271 -0
- package/projects/playground/public/flags/fr.svg +5 -0
- package/projects/playground/public/flags/ga.svg +5 -0
- package/projects/playground/public/flags/gb-eng.svg +7 -0
- package/projects/playground/public/flags/gb-nir.svg +15 -0
- package/projects/playground/public/flags/gb-sct.svg +11 -0
- package/projects/playground/public/flags/gb-wls.svg +16 -0
- package/projects/playground/public/flags/gb.svg +15 -0
- package/projects/playground/public/flags/gd.svg +11 -0
- package/projects/playground/public/flags/ge.svg +17 -0
- package/projects/playground/public/flags/gf.svg +5 -0
- package/projects/playground/public/flags/gg.svg +8 -0
- package/projects/playground/public/flags/gh.svg +6 -0
- package/projects/playground/public/flags/gi.svg +69 -0
- package/projects/playground/public/flags/gl.svg +4 -0
- package/projects/playground/public/flags/gm.svg +7 -0
- package/projects/playground/public/flags/gn.svg +5 -0
- package/projects/playground/public/flags/gp.svg +5 -0
- package/projects/playground/public/flags/gq.svg +88 -0
- package/projects/playground/public/flags/gr.svg +4 -0
- package/projects/playground/public/flags/gs.svg +693 -0
- package/projects/playground/public/flags/gt.svg +317 -0
- package/projects/playground/public/flags/gu.svg +58 -0
- package/projects/playground/public/flags/gw.svg +13 -0
- package/projects/playground/public/flags/gy.svg +7 -0
- package/projects/playground/public/flags/hk.svg +17 -0
- package/projects/playground/public/flags/hm.svg +32 -0
- package/projects/playground/public/flags/hn.svg +10 -0
- package/projects/playground/public/flags/hr.svg +282 -0
- package/projects/playground/public/flags/ht.svg +1470 -0
- package/projects/playground/public/flags/hu.svg +5 -0
- package/projects/playground/public/flags/id.svg +4 -0
- package/projects/playground/public/flags/ie.svg +5 -0
- package/projects/playground/public/flags/il.svg +5 -0
- package/projects/playground/public/flags/im.svg +33 -0
- package/projects/playground/public/flags/in.svg +25 -0
- package/projects/playground/public/flags/io.svg +895 -0
- package/projects/playground/public/flags/iq.svg +12 -0
- package/projects/playground/public/flags/ir.svg +31 -0
- package/projects/playground/public/flags/is.svg +5 -0
- package/projects/playground/public/flags/it.svg +5 -0
- package/projects/playground/public/flags/je.svg +40 -0
- package/projects/playground/public/flags/jm.svg +9 -0
- package/projects/playground/public/flags/jo.svg +10 -0
- package/projects/playground/public/flags/jp.svg +4 -0
- package/projects/playground/public/flags/ke.svg +28 -0
- package/projects/playground/public/flags/kg.svg +7 -0
- package/projects/playground/public/flags/kh.svg +133 -0
- package/projects/playground/public/flags/ki.svg +54 -0
- package/projects/playground/public/flags/km.svg +13 -0
- package/projects/playground/public/flags/kn.svg +24 -0
- package/projects/playground/public/flags/kp.svg +16 -0
- package/projects/playground/public/flags/kr.svg +16 -0
- package/projects/playground/public/flags/kw.svg +6 -0
- package/projects/playground/public/flags/ky.svg +153 -0
- package/projects/playground/public/flags/kz.svg +49 -0
- package/projects/playground/public/flags/la.svg +5 -0
- package/projects/playground/public/flags/lb.svg +8 -0
- package/projects/playground/public/flags/lc.svg +6 -0
- package/projects/playground/public/flags/li.svg +79 -0
- package/projects/playground/public/flags/lk.svg +50 -0
- package/projects/playground/public/flags/lr.svg +15 -0
- package/projects/playground/public/flags/ls.svg +32 -0
- package/projects/playground/public/flags/lt.svg +5 -0
- package/projects/playground/public/flags/lu.svg +5 -0
- package/projects/playground/public/flags/lv.svg +4 -0
- package/projects/playground/public/flags/ly.svg +8 -0
- package/projects/playground/public/flags/ma.svg +4 -0
- package/projects/playground/public/flags/mc.svg +4 -0
- package/projects/playground/public/flags/md.svg +102 -0
- package/projects/playground/public/flags/me.svg +240 -0
- package/projects/playground/public/flags/mf.svg +5 -0
- package/projects/playground/public/flags/mg.svg +5 -0
- package/projects/playground/public/flags/mh.svg +18 -0
- package/projects/playground/public/flags/mk.svg +6 -0
- package/projects/playground/public/flags/ml.svg +5 -0
- package/projects/playground/public/flags/mm.svg +12 -0
- package/projects/playground/public/flags/mn.svg +12 -0
- package/projects/playground/public/flags/mo.svg +13 -0
- package/projects/playground/public/flags/mp.svg +2919 -0
- package/projects/playground/public/flags/mq.svg +5 -0
- package/projects/playground/public/flags/mr.svg +5 -0
- package/projects/playground/public/flags/ms.svg +59 -0
- package/projects/playground/public/flags/mt.svg +52 -0
- package/projects/playground/public/flags/mu.svg +6 -0
- package/projects/playground/public/flags/mv.svg +8 -0
- package/projects/playground/public/flags/mw.svg +24 -0
- package/projects/playground/public/flags/mx.svg +1129 -0
- package/projects/playground/public/flags/my.svg +12 -0
- package/projects/playground/public/flags/mz.svg +50 -0
- package/projects/playground/public/flags/na.svg +17 -0
- package/projects/playground/public/flags/nc.svg +5 -0
- package/projects/playground/public/flags/ne.svg +6 -0
- package/projects/playground/public/flags/nf.svg +8 -0
- package/projects/playground/public/flags/ng.svg +4 -0
- package/projects/playground/public/flags/ni.svg +281 -0
- package/projects/playground/public/flags/nl.svg +5 -0
- package/projects/playground/public/flags/no.svg +11 -0
- package/projects/playground/public/flags/np.svg +33 -0
- package/projects/playground/public/flags/nr.svg +8 -0
- package/projects/playground/public/flags/nu.svg +23 -0
- package/projects/playground/public/flags/nz.svg +37 -0
- package/projects/playground/public/flags/om.svg +307 -0
- package/projects/playground/public/flags/pa.svg +15 -0
- package/projects/playground/public/flags/pe.svg +767 -0
- package/projects/playground/public/flags/pf.svg +38 -0
- package/projects/playground/public/flags/pg.svg +16 -0
- package/projects/playground/public/flags/ph.svg +28 -0
- package/projects/playground/public/flags/pk.svg +7 -0
- package/projects/playground/public/flags/pl.svg +4 -0
- package/projects/playground/public/flags/pm.svg +5 -0
- package/projects/playground/public/flags/pn.svg +131 -0
- package/projects/playground/public/flags/pr.svg +6 -0
- package/projects/playground/public/flags/ps.svg +6 -0
- package/projects/playground/public/flags/pt.svg +79 -0
- package/projects/playground/public/flags/pw.svg +4 -0
- package/projects/playground/public/flags/py.svg +192 -0
- package/projects/playground/public/flags/qa.svg +7 -0
- package/projects/playground/public/flags/re.svg +5 -0
- package/projects/playground/public/flags/ro.svg +5 -0
- package/projects/playground/public/flags/rs.svg +1143 -0
- package/projects/playground/public/flags/ru.svg +5 -0
- package/projects/playground/public/flags/rw.svg +17 -0
- package/projects/playground/public/flags/sa.svg +23 -0
- package/projects/playground/public/flags/sb.svg +30 -0
- package/projects/playground/public/flags/sc.svg +7 -0
- package/projects/playground/public/flags/sd.svg +6 -0
- package/projects/playground/public/flags/se.svg +5 -0
- package/projects/playground/public/flags/sg.svg +15 -0
- package/projects/playground/public/flags/sh.svg +15 -0
- package/projects/playground/public/flags/si.svg +30 -0
- package/projects/playground/public/flags/sj.svg +11 -0
- package/projects/playground/public/flags/sk.svg +21 -0
- package/projects/playground/public/flags/sl.svg +5 -0
- package/projects/playground/public/flags/sm.svg +847 -0
- package/projects/playground/public/flags/sn.svg +15 -0
- package/projects/playground/public/flags/so.svg +13 -0
- package/projects/playground/public/flags/sr.svg +6 -0
- package/projects/playground/public/flags/ss.svg +8 -0
- package/projects/playground/public/flags/st.svg +16 -0
- package/projects/playground/public/flags/stc-icons.css +1 -0
- package/projects/playground/public/flags/sv.svg +3368 -0
- package/projects/playground/public/flags/sx.svg +172 -0
- package/projects/playground/public/flags/sy.svg +6 -0
- package/projects/playground/public/flags/sz.svg +54 -0
- package/projects/playground/public/flags/tc.svg +88 -0
- package/projects/playground/public/flags/td.svg +5 -0
- package/projects/playground/public/flags/tf.svg +18 -0
- package/projects/playground/public/flags/tg.svg +15 -0
- package/projects/playground/public/flags/th.svg +5 -0
- package/projects/playground/public/flags/tj.svg +32 -0
- package/projects/playground/public/flags/tk.svg +25 -0
- package/projects/playground/public/flags/tl.svg +6 -0
- package/projects/playground/public/flags/tm.svg +349 -0
- package/projects/playground/public/flags/tn.svg +9 -0
- package/projects/playground/public/flags/to.svg +8 -0
- package/projects/playground/public/flags/tr.svg +6 -0
- package/projects/playground/public/flags/tt.svg +5 -0
- package/projects/playground/public/flags/tv.svg +18 -0
- package/projects/playground/public/flags/tw.svg +12 -0
- package/projects/playground/public/flags/tz.svg +13 -0
- package/projects/playground/public/flags/ua.svg +4 -0
- package/projects/playground/public/flags/ug.svg +46 -0
- package/projects/playground/public/flags/um.svg +25 -0
- package/projects/playground/public/flags/us.svg +25 -0
- package/projects/playground/public/flags/uy.svg +138 -0
- package/projects/playground/public/flags/uz.svg +30 -0
- package/projects/playground/public/flags/va.svg +277 -0
- package/projects/playground/public/flags/vc.svg +9 -0
- package/projects/playground/public/flags/ve.svg +28 -0
- package/projects/playground/public/flags/vg.svg +96 -0
- package/projects/playground/public/flags/vi.svg +311 -0
- package/projects/playground/public/flags/vn.svg +12 -0
- package/projects/playground/public/flags/vu.svg +20 -0
- package/projects/playground/public/flags/wf.svg +7 -0
- package/projects/playground/public/flags/ws.svg +14 -0
- package/projects/playground/public/flags/xk.svg +11 -0
- package/projects/playground/public/flags/ye.svg +5 -0
- package/projects/playground/public/flags/yt.svg +5 -0
- package/projects/playground/public/flags/za.svg +17 -0
- package/projects/playground/public/flags/zm.svg +20 -0
- package/projects/playground/public/flags/zw.svg +130 -0
- package/projects/playground/src/app/app.component.ts +119 -0
- package/projects/playground/src/app/app.config.ts +51 -0
- package/projects/playground/src/app/app.routes.ts +41 -0
- package/projects/playground/src/app/login.service.ts +21 -0
- package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
- package/projects/playground/src/components/attachment.component.ts +35 -0
- package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
- package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
- package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
- package/projects/playground/src/components/date-picker-container.component.ts +22 -0
- package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
- package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/datetime-container.component.ts +25 -0
- package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
- package/projects/playground/src/components/input-container.component.ts +35 -0
- package/projects/playground/src/components/input-wrapper.component.ts +41 -0
- package/projects/playground/src/components/mobile-container.component.ts +23 -0
- package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
- package/projects/playground/src/components/note-wrapper.component.ts +37 -0
- package/projects/playground/src/components/outlet-container.component.ts +144 -0
- package/projects/playground/src/components/plate-container.component.ts +22 -0
- package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
- package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
- package/projects/playground/src/components/select-container.component.ts +31 -0
- package/projects/playground/src/components/select-wrapper.component.ts +48 -0
- package/projects/playground/src/components/ships-container.component.ts +23 -0
- package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
- package/projects/playground/src/components/textarea-container.component.ts +23 -0
- package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
- package/projects/playground/src/components/time-picker-container.component.ts +23 -0
- package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
- package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
- package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
- package/projects/playground/src/eServices/create-request.component.ts +28 -0
- package/projects/playground/src/eServices/e-service.component.ts +112 -0
- package/projects/playground/src/eServices/view-request.component.ts +13 -0
- package/projects/playground/src/index.html +13 -0
- package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
- package/projects/playground/src/main.ts +8 -0
- package/projects/playground/src/services/ss.service.ts +62 -0
- package/projects/playground/src/styles.scss +33 -0
- package/projects/playground/src/validators/customValidator.validator.ts +10 -0
- package/projects/playground/tsconfig.app.json +15 -0
- package/tsconfig.json +31 -0
- package/components/autocomplete/autocomplete.component.d.ts +0 -6
- package/components/base-ctrl.d.ts +0 -33
- package/components/checkbox/checkbox.component.d.ts +0 -16
- package/components/chips/chips.component.d.ts +0 -6
- package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
- package/components/date-picker/date-adapter.d.ts +0 -37
- package/components/date-picker/date-picker.component.d.ts +0 -15
- package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
- package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
- package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
- package/components/file-picker/file-picker.component.d.ts +0 -17
- package/components/hints/hints.component.d.ts +0 -9
- package/components/input/input.component.d.ts +0 -8
- package/components/mobile/COUNTRIES.d.ts +0 -2
- package/components/mobile/mobile.component.d.ts +0 -26
- package/components/mobile/phone.service.d.ts +0 -17
- package/components/note/note.component.d.ts +0 -6
- package/components/plate-number/plate-number.component.d.ts +0 -16
- package/components/radio/radio.component.d.ts +0 -11
- package/components/select/select.component.d.ts +0 -20
- package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
- package/components/textarea/textarea.component.d.ts +0 -6
- package/components/time-picker/time-picker.component.d.ts +0 -19
- package/components/toggle-button/toggle-button.component.d.ts +0 -16
- package/directives/droppable.directive.d.ts +0 -10
- package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
- package/esm2022/components/base-ctrl.mjs +0 -93
- package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
- package/esm2022/components/chips/chips.component.mjs +0 -17
- package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
- package/esm2022/components/date-picker/date-adapter.mjs +0 -183
- package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
- package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
- package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
- package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
- package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
- package/esm2022/components/hints/hints.component.mjs +0 -66
- package/esm2022/components/input/input.component.mjs +0 -32
- package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
- package/esm2022/components/mobile/mobile.component.mjs +0 -141
- package/esm2022/components/mobile/phone.service.mjs +0 -99
- package/esm2022/components/note/note.component.mjs +0 -17
- package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
- package/esm2022/components/radio/radio.component.mjs +0 -40
- package/esm2022/components/select/select.component.mjs +0 -123
- package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2022/components/textarea/textarea.component.mjs +0 -17
- package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
- package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
- package/esm2022/directives/droppable.directive.mjs +0 -39
- package/esm2022/interfaces/country.interface.mjs +0 -2
- package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
- package/esm2022/interfaces/hint.interface.mjs +0 -2
- package/esm2022/interfaces/iso2.interface.mjs +0 -2
- package/esm2022/interfaces/mobile.interface.mjs +0 -2
- package/esm2022/interfaces/option.interface.mjs +0 -2
- package/esm2022/interfaces/time.interface.mjs +0 -2
- package/esm2022/iss-ctrl.mjs +0 -5
- package/esm2022/pipes/select-status.pipe.mjs +0 -18
- package/esm2022/public-api.mjs +0 -20
- package/fesm2022/iss-ctrl.mjs +0 -3658
- package/fesm2022/iss-ctrl.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/interfaces/country.interface.d.ts +0 -10
- package/interfaces/date-range-emission-object.d.ts +0 -5
- package/interfaces/hint.interface.d.ts +0 -5
- package/interfaces/iso2.interface.d.ts +0 -1
- package/interfaces/mobile.interface.d.ts +0 -11
- package/interfaces/option.interface.d.ts +0 -4
- package/interfaces/time.interface.d.ts +0 -5
- package/pipes/select-status.pipe.d.ts +0 -8
- package/public-api.d.ts +0 -19
- package/src/components/mobile/flags/ad.svg +0 -154
- package/src/components/mobile/flags/ae.svg +0 -1
- package/src/components/mobile/flags/af.svg +0 -1
- package/src/components/mobile/flags/ag.svg +0 -1
- package/src/components/mobile/flags/ai.svg +0 -1
- package/src/components/mobile/flags/al.svg +0 -1
- package/src/components/mobile/flags/am.svg +0 -1
- package/src/components/mobile/flags/ao.svg +0 -1
- package/src/components/mobile/flags/aq.svg +0 -1
- package/src/components/mobile/flags/ar.svg +0 -1
- package/src/components/mobile/flags/as.svg +0 -1
- package/src/components/mobile/flags/at.svg +0 -1
- package/src/components/mobile/flags/au.svg +0 -1
- package/src/components/mobile/flags/aw.svg +0 -1
- package/src/components/mobile/flags/ax.svg +0 -1
- package/src/components/mobile/flags/az.svg +0 -1
- package/src/components/mobile/flags/ba.svg +0 -1
- package/src/components/mobile/flags/bb.svg +0 -7
- package/src/components/mobile/flags/bd.svg +0 -1
- package/src/components/mobile/flags/be.svg +0 -1
- package/src/components/mobile/flags/bf.svg +0 -1
- package/src/components/mobile/flags/bg.svg +0 -1
- package/src/components/mobile/flags/bh.svg +0 -1
- package/src/components/mobile/flags/bi.svg +0 -26
- package/src/components/mobile/flags/bj.svg +0 -1
- package/src/components/mobile/flags/bl.svg +0 -1
- package/src/components/mobile/flags/bm.svg +0 -1
- package/src/components/mobile/flags/bn.svg +0 -58
- package/src/components/mobile/flags/bo.svg +0 -1
- package/src/components/mobile/flags/bq.svg +0 -1
- package/src/components/mobile/flags/br.svg +0 -1
- package/src/components/mobile/flags/bs.svg +0 -1
- package/src/components/mobile/flags/bt.svg +0 -466
- package/src/components/mobile/flags/bv.svg +0 -1
- package/src/components/mobile/flags/bw.svg +0 -1
- package/src/components/mobile/flags/by.svg +0 -1
- package/src/components/mobile/flags/bz.svg +0 -1
- package/src/components/mobile/flags/ca.svg +0 -1
- package/src/components/mobile/flags/cc.svg +0 -19
- package/src/components/mobile/flags/cd.svg +0 -1
- package/src/components/mobile/flags/cf.svg +0 -1
- package/src/components/mobile/flags/cg.svg +0 -5
- package/src/components/mobile/flags/ch.svg +0 -1
- package/src/components/mobile/flags/ci.svg +0 -1
- package/src/components/mobile/flags/ck.svg +0 -1
- package/src/components/mobile/flags/cl.svg +0 -14
- package/src/components/mobile/flags/cm.svg +0 -15
- package/src/components/mobile/flags/cn.svg +0 -1
- package/src/components/mobile/flags/co.svg +0 -5
- package/src/components/mobile/flags/cr.svg +0 -1
- package/src/components/mobile/flags/cu.svg +0 -6
- package/src/components/mobile/flags/cv.svg +0 -24
- package/src/components/mobile/flags/cw.svg +0 -16
- package/src/components/mobile/flags/cx.svg +0 -15
- package/src/components/mobile/flags/cy.svg +0 -1
- package/src/components/mobile/flags/cz.svg +0 -5
- package/src/components/mobile/flags/de.svg +0 -1
- package/src/components/mobile/flags/dj.svg +0 -1
- package/src/components/mobile/flags/dk.svg +0 -5
- package/src/components/mobile/flags/dm.svg +0 -1
- package/src/components/mobile/flags/do.svg +0 -1
- package/src/components/mobile/flags/dz.svg +0 -5
- package/src/components/mobile/flags/ec.svg +0 -519
- package/src/components/mobile/flags/ee.svg +0 -1
- package/src/components/mobile/flags/eg.svg +0 -78
- package/src/components/mobile/flags/eh.svg +0 -9
- package/src/components/mobile/flags/er.svg +0 -6
- package/src/components/mobile/flags/es.svg +0 -1
- package/src/components/mobile/flags/et.svg +0 -1
- package/src/components/mobile/flags/eu.svg +0 -1
- package/src/components/mobile/flags/fi.svg +0 -5
- package/src/components/mobile/flags/fj.svg +0 -1
- package/src/components/mobile/flags/fk.svg +0 -1
- package/src/components/mobile/flags/fm.svg +0 -16
- package/src/components/mobile/flags/fo.svg +0 -11
- package/src/components/mobile/flags/fr.svg +0 -1
- package/src/components/mobile/flags/ga.svg +0 -5
- package/src/components/mobile/flags/gb-eng.svg +0 -7
- package/src/components/mobile/flags/gb-nir.svg +0 -1
- package/src/components/mobile/flags/gb-sct.svg +0 -1
- package/src/components/mobile/flags/gb-wls.svg +0 -9
- package/src/components/mobile/flags/gb.svg +0 -1
- package/src/components/mobile/flags/gd.svg +0 -1
- package/src/components/mobile/flags/ge.svg +0 -1
- package/src/components/mobile/flags/gf.svg +0 -1
- package/src/components/mobile/flags/gg.svg +0 -8
- package/src/components/mobile/flags/gh.svg +0 -6
- package/src/components/mobile/flags/gi.svg +0 -54
- package/src/components/mobile/flags/gl.svg +0 -4
- package/src/components/mobile/flags/gm.svg +0 -7
- package/src/components/mobile/flags/gn.svg +0 -5
- package/src/components/mobile/flags/gp.svg +0 -1
- package/src/components/mobile/flags/gq.svg +0 -75
- package/src/components/mobile/flags/gr.svg +0 -1
- package/src/components/mobile/flags/gs.svg +0 -1
- package/src/components/mobile/flags/gt.svg +0 -214
- package/src/components/mobile/flags/gu.svg +0 -1
- package/src/components/mobile/flags/gw.svg +0 -13
- package/src/components/mobile/flags/gy.svg +0 -7
- package/src/components/mobile/flags/hk.svg +0 -1
- package/src/components/mobile/flags/hm.svg +0 -1
- package/src/components/mobile/flags/hn.svg +0 -1
- package/src/components/mobile/flags/hr.svg +0 -1
- package/src/components/mobile/flags/ht.svg +0 -1
- package/src/components/mobile/flags/hu.svg +0 -1
- package/src/components/mobile/flags/id.svg +0 -1
- package/src/components/mobile/flags/ie.svg +0 -1
- package/src/components/mobile/flags/il.svg +0 -1
- package/src/components/mobile/flags/im.svg +0 -1
- package/src/components/mobile/flags/in.svg +0 -1
- package/src/components/mobile/flags/io.svg +0 -1
- package/src/components/mobile/flags/iq.svg +0 -1
- package/src/components/mobile/flags/ir.svg +0 -31
- package/src/components/mobile/flags/is.svg +0 -1
- package/src/components/mobile/flags/it.svg +0 -1
- package/src/components/mobile/flags/je.svg +0 -1
- package/src/components/mobile/flags/jm.svg +0 -1
- package/src/components/mobile/flags/jo.svg +0 -7
- package/src/components/mobile/flags/jp.svg +0 -4
- package/src/components/mobile/flags/ke.svg +0 -23
- package/src/components/mobile/flags/kg.svg +0 -1
- package/src/components/mobile/flags/kh.svg +0 -116
- package/src/components/mobile/flags/ki.svg +0 -1
- package/src/components/mobile/flags/km.svg +0 -13
- package/src/components/mobile/flags/kn.svg +0 -1
- package/src/components/mobile/flags/kp.svg +0 -16
- package/src/components/mobile/flags/kr.svg +0 -1
- package/src/components/mobile/flags/kw.svg +0 -6
- package/src/components/mobile/flags/ky.svg +0 -1
- package/src/components/mobile/flags/kz.svg +0 -37
- package/src/components/mobile/flags/la.svg +0 -1
- package/src/components/mobile/flags/lb.svg +0 -5
- package/src/components/mobile/flags/lc.svg +0 -6
- package/src/components/mobile/flags/li.svg +0 -56
- package/src/components/mobile/flags/lk.svg +0 -1
- package/src/components/mobile/flags/lr.svg +0 -15
- package/src/components/mobile/flags/ls.svg +0 -23
- package/src/components/mobile/flags/lt.svg +0 -1
- package/src/components/mobile/flags/lu.svg +0 -1
- package/src/components/mobile/flags/lv.svg +0 -1
- package/src/components/mobile/flags/ly.svg +0 -8
- package/src/components/mobile/flags/ma.svg +0 -1
- package/src/components/mobile/flags/mc.svg +0 -1
- package/src/components/mobile/flags/md.svg +0 -1
- package/src/components/mobile/flags/me.svg +0 -93
- package/src/components/mobile/flags/mf.svg +0 -1
- package/src/components/mobile/flags/mg.svg +0 -1
- package/src/components/mobile/flags/mh.svg +0 -1
- package/src/components/mobile/flags/mk.svg +0 -1
- package/src/components/mobile/flags/ml.svg +0 -5
- package/src/components/mobile/flags/mm.svg +0 -12
- package/src/components/mobile/flags/mn.svg +0 -1
- package/src/components/mobile/flags/mo.svg +0 -10
- package/src/components/mobile/flags/mp.svg +0 -1
- package/src/components/mobile/flags/mq.svg +0 -1
- package/src/components/mobile/flags/mr.svg +0 -1
- package/src/components/mobile/flags/ms.svg +0 -1
- package/src/components/mobile/flags/mt.svg +0 -1
- package/src/components/mobile/flags/mu.svg +0 -1
- package/src/components/mobile/flags/mv.svg +0 -1
- package/src/components/mobile/flags/mw.svg +0 -24
- package/src/components/mobile/flags/mx.svg +0 -1
- package/src/components/mobile/flags/my.svg +0 -1
- package/src/components/mobile/flags/mz.svg +0 -13
- package/src/components/mobile/flags/na.svg +0 -1
- package/src/components/mobile/flags/nc.svg +0 -1
- package/src/components/mobile/flags/ne.svg +0 -6
- package/src/components/mobile/flags/nf.svg +0 -5
- package/src/components/mobile/flags/ng.svg +0 -4
- package/src/components/mobile/flags/ni.svg +0 -161
- package/src/components/mobile/flags/nl.svg +0 -1
- package/src/components/mobile/flags/no.svg +0 -1
- package/src/components/mobile/flags/np.svg +0 -33
- package/src/components/mobile/flags/nr.svg +0 -1
- package/src/components/mobile/flags/nu.svg +0 -1
- package/src/components/mobile/flags/nz.svg +0 -1
- package/src/components/mobile/flags/om.svg +0 -1
- package/src/components/mobile/flags/pa.svg +0 -1
- package/src/components/mobile/flags/pe.svg +0 -320
- package/src/components/mobile/flags/pf.svg +0 -1
- package/src/components/mobile/flags/pg.svg +0 -13
- package/src/components/mobile/flags/ph.svg +0 -1
- package/src/components/mobile/flags/pk.svg +0 -1
- package/src/components/mobile/flags/pl.svg +0 -1
- package/src/components/mobile/flags/pm.svg +0 -1
- package/src/components/mobile/flags/pn.svg +0 -1
- package/src/components/mobile/flags/pr.svg +0 -1
- package/src/components/mobile/flags/ps.svg +0 -1
- package/src/components/mobile/flags/pt.svg +0 -1
- package/src/components/mobile/flags/pw.svg +0 -1
- package/src/components/mobile/flags/py.svg +0 -1
- package/src/components/mobile/flags/qa.svg +0 -1
- package/src/components/mobile/flags/re.svg +0 -1
- package/src/components/mobile/flags/ro.svg +0 -1
- package/src/components/mobile/flags/rs.svg +0 -1
- package/src/components/mobile/flags/ru.svg +0 -1
- package/src/components/mobile/flags/rw.svg +0 -13
- package/src/components/mobile/flags/sa.svg +0 -1
- package/src/components/mobile/flags/sb.svg +0 -1
- package/src/components/mobile/flags/sc.svg +0 -7
- package/src/components/mobile/flags/sd.svg +0 -6
- package/src/components/mobile/flags/se.svg +0 -5
- package/src/components/mobile/flags/sg.svg +0 -11
- package/src/components/mobile/flags/sh.svg +0 -1
- package/src/components/mobile/flags/si.svg +0 -1
- package/src/components/mobile/flags/sj.svg +0 -1
- package/src/components/mobile/flags/sk.svg +0 -1
- package/src/components/mobile/flags/sl.svg +0 -1
- package/src/components/mobile/flags/sm.svg +0 -1
- package/src/components/mobile/flags/sn.svg +0 -1
- package/src/components/mobile/flags/so.svg +0 -1
- package/src/components/mobile/flags/sr.svg +0 -1
- package/src/components/mobile/flags/ss.svg +0 -1
- package/src/components/mobile/flags/st.svg +0 -1
- package/src/components/mobile/flags/sv.svg +0 -1
- package/src/components/mobile/flags/sx.svg +0 -1
- package/src/components/mobile/flags/sy.svg +0 -1
- package/src/components/mobile/flags/sz.svg +0 -1
- package/src/components/mobile/flags/tc.svg +0 -1
- package/src/components/mobile/flags/td.svg +0 -1
- package/src/components/mobile/flags/tf.svg +0 -1
- package/src/components/mobile/flags/tg.svg +0 -1
- package/src/components/mobile/flags/th.svg +0 -1
- package/src/components/mobile/flags/tj.svg +0 -1
- package/src/components/mobile/flags/tk.svg +0 -1
- package/src/components/mobile/flags/tl.svg +0 -1
- package/src/components/mobile/flags/tm.svg +0 -1
- package/src/components/mobile/flags/tn.svg +0 -9
- package/src/components/mobile/flags/to.svg +0 -1
- package/src/components/mobile/flags/tr.svg +0 -1
- package/src/components/mobile/flags/tt.svg +0 -5
- package/src/components/mobile/flags/tv.svg +0 -1
- package/src/components/mobile/flags/tw.svg +0 -1
- package/src/components/mobile/flags/tz.svg +0 -1
- package/src/components/mobile/flags/ua.svg +0 -1
- package/src/components/mobile/flags/ug.svg +0 -1
- package/src/components/mobile/flags/um.svg +0 -1
- package/src/components/mobile/flags/us.svg +0 -1
- package/src/components/mobile/flags/uy.svg +0 -1
- package/src/components/mobile/flags/uz.svg +0 -1
- package/src/components/mobile/flags/va.svg +0 -1
- package/src/components/mobile/flags/vc.svg +0 -1
- package/src/components/mobile/flags/ve.svg +0 -1
- package/src/components/mobile/flags/vg.svg +0 -1
- package/src/components/mobile/flags/vi.svg +0 -1
- package/src/components/mobile/flags/vn.svg +0 -1
- package/src/components/mobile/flags/vu.svg +0 -1
- package/src/components/mobile/flags/wf.svg +0 -1
- package/src/components/mobile/flags/ws.svg +0 -1
- package/src/components/mobile/flags/xk.svg +0 -1
- package/src/components/mobile/flags/ye.svg +0 -1
- package/src/components/mobile/flags/yt.svg +0 -1
- package/src/components/mobile/flags/za.svg +0 -1
- package/src/components/mobile/flags/zm.svg +0 -1
- package/src/components/mobile/flags/zw.svg +0 -1
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
<svg id="svg30" viewBox="0 0 1260 630" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<path d="M0 0h1260v630H0z" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<style>.cls-8 {
|
|
7
|
+
fill: #ffd200
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-4 {
|
|
11
|
+
fill: #d40000
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cls-8 {
|
|
15
|
+
fill-rule: evenodd
|
|
16
|
+
}</style>
|
|
17
|
+
</defs>
|
|
18
|
+
<path d="M0 0h1260v630H0z" fill="#006400" id="path7"/>
|
|
19
|
+
<path d="M0 90h1260v450H0z" fill="#ffd200" id="path9"/>
|
|
20
|
+
<path class="cls-4" d="M0 180h1260v270H0z" id="path11"/>
|
|
21
|
+
<path d="M0 270h1260v90H0z" id="path13"/>
|
|
22
|
+
<g clip-path="url(#clip-path)">
|
|
23
|
+
<path d="M0 0v630l420-315z" id="path15" stroke="#000" stroke-width="30"/>
|
|
24
|
+
</g>
|
|
25
|
+
<path d="M0 0v630l420-315z" fill="#fff" id="path17"/>
|
|
26
|
+
<path class="cls-4" d="M159.78 156.62l83.19 256-217.79-158.2h269.2L76.59 412.65z" id="path19"/>
|
|
27
|
+
<path
|
|
28
|
+
class="cls-8"
|
|
29
|
+
d="M152.88 218.67a14.16 14.16 0 00-22.58 1.66 39.57 39.57 0 00-7.61.56 7.86 7.86 0 00-5.93 10.74l8.59-.51a11.53 11.53 0 015.86 9.7l1 34.13a24.54 24.54 0 00-2.45 11 101.46 101.46 0 001.09 13.7 14.74 14.74 0 01-4 12.45 86 86 0 00-12.93 17 13.09 13.09 0 001.14 14.9l9.78 37.86h73.45l4.08-32.12a45.72 45.72 0 0121.18-33.05l2.89.82a4.22 4.22 0 003.75-7.38l-69.48-54.34-1.83-22.86a24.69 24.69 0 00-6-14.26"
|
|
30
|
+
id="path636"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M152.17 219.29l-.06-.07 1.41-1.24.06.07zm-.06-.07a15.48 15.48 0 00-1.22-1.21l1.23-1.42a15.3 15.3 0 011.4 1.39zm0-2.63l-.62.71zm-1.22 1.41a13.25 13.25 0 00-1.36-1l1-1.57a15.27 15.27 0 011.56 1.19zm-1.36-1a13.22 13.22 0 00-8.29-2.16l-.13-1.89a15.12 15.12 0 019.46 2.48zm-8.29-2.16h-.09l-.13-1.88h.09zm-.23-1.88l.07.94zm.15 1.88a12.78 12.78 0 00-1.71.25l-.39-1.85a15.26 15.26 0 011.95-.28zm-1.71.25a12.82 12.82 0 00-1.64.46l-.63-1.77a15 15 0 011.88-.54zm-1.64.46a13.22 13.22 0 00-6.71 5.32l-1.59-1a15.05 15.05 0 017.67-6.08zm-6.71 5.32l-.82.44v-.95zm-.82.44H130v-1.88h.28l-.05 1.89zm-.25 0zm0 0h-1v-1.89h1.08zm-1 0h-1l-.07-1.88h1.08zm-1 0a37.82 37.82 0 00-5.11.53l-.31-1.86a40.43 40.43 0 015.35-.55zm-5.11.53l-.42-1.84.31 1.86zm-.36-1.85l.16.93-.17-.93zm.33 1.86a7 7 0 00-.85.2l-.55-1.8a8.33 8.33 0 011.07-.26zm-.85.2a6.72 6.72 0 00-.81.31l-.77-1.72a9.58 9.58 0 011-.39zm-1.59-1.41l.38.86zm.79 1.72a6.91 6.91 0 00-3.19 2.95l-1.65-.91a8.83 8.83 0 014-3.76zm-4.85 2l.82.45zm1.66.89v.1l-1.66-.9v-.09zm-1.71-.79l.83.45-.83-.44zm1.66.88a8.2 8.2 0 00-.36.79l-1.76-.67a8.75 8.75 0 01.46-1zm-2.12.13l.88.34-.88-.33zm1.76.66a8 8 0 00-.26.83l-1.82-.45a7.79 7.79 0 01.32-1zm-2.08.38l.91.22zm1.82.44a7 7 0 00.33 4.29l-1.74.71a8.77 8.77 0 01-.41-5.44zm-.49 5.59l-.92-.59.87-.36zm-.11-1.89l8.59-.51.11 1.89-8.59.51zm8.59-.51l.51.12-.45.83zm.51.12l.22.13-1 1.62-.17-.1.91-1.65zm.22.13a12.54 12.54 0 011.48 1l-1.18 1.47a9.38 9.38 0 00-1.26-.87zm1.48 1a13.68 13.68 0 011.3 1.22l-1.37 1.28a9.88 9.88 0 00-1.11-1zm1.3 1.22a12.42 12.42 0 013.34 8.14h-1.88a10.63 10.63 0 00-2.83-6.91zm3.34 8.14l1 34.13-1.88.05-1-34.13zm1 34.13l-.09.43-.85-.41h.94zm-.09.43c-.06.12-.14.28-.21.45l-1.71-.79c.06-.14.13-.28.22-.47zm-1.92-.34l.85.39-.85-.39zm1.71.78c-.21.46-.41.93-.59 1.4l-1.75-.67c.19-.5.4-1 .63-1.51zm-2.35.73l.88.33zm1.76.67c-.18.47-.34.95-.49 1.43l-1.8-.56c.16-.52.34-1 .53-1.54zm-.49 1.43a23.51 23.51 0 00-1.07 7.32h-1.88a25.15 25.15 0 011.15-7.9l1.8.56zm-1.17 7.42v.49h-1.89V286h1.88zm0 .49v1.89l-1.88.07c0-.63 0-1.27-.06-1.93h1.89zm0 1.89q0 .9.09 1.89l-1.89.1c0-.61-.06-1.26-.08-1.92zm.09 1.89q.26 4.69.93 9.3l-1.86.27c-.47-3.15-.79-6.32-1-9.47zm.93 9.3v.05l-1.86.27zm0 .05l-.93.13zm0 0a15.56 15.56 0 01.16 2h-1.88a15.24 15.24 0 00-.14-1.79l1.86-.26zm.16 2a15 15 0 01-.1 2l-1.75-.22a17.39 17.39 0 00.09-1.78h1.88zm-.1 2a15.69 15.69 0 01-4.38 9.16l-1.34-1.32a13.82 13.82 0 003.97-8.06zm-4.38 9.16l-.67-.67zm0 0s.16-.21.11-.13l-1.57-1a.72.72 0 01.13-.15zm.11-.13l-.11.13-.67-.66zm-.11.13q-1 1-2 2.16l-1.37-1.28c.64-.7 1.33-1.43 2.09-2.2zm-3.43.88l.7.64zm1.39 1.27c-.68.75-1.33 1.49-2 2.22l-1.33-1.22c.67-.78 1.34-1.54 2-2.27zm-3.39 1l.72.61-.72-.61zm1.44 1.22a85.09 85.09 0 00-8.79 12.4l-1.63-.94a87.7 87.7 0 019-12.68zM113 328.61l.82.47-.82-.47zm1.63.94v.06l-1.64-.94v-.06zm0 .06a12.15 12.15 0 00-.89 1.91l-1.77-.64a14.31 14.31 0 011-2.21zm-.89 1.91a11.73 11.73 0 00-.54 2l-1.85-.33a14.21 14.21 0 01.62-2.3zm-.54 2a12.15 12.15 0 002.59 9.89l-1.45 1.2a14 14 0 01-3-11.42zm2.59 9.89l.18.36-.91.24zm.18.36l9.79 37.87-1.82.47-9.79-37.86zm8.88 39.05l-.91-.71.91-.24zm0-1.89h73.45v1.89h-73.45zm74.38 1.07l-.93.83v-.95zm-1.86-.23l4.07-32.13 1.87.23-4.08 32.13zm5.94-31.9l-.93-.11zm-1.87-.23v-.05l1.87.24c0 .25 0-.11 0 0l-1.87-.23zm1.87.19l-.93-.12.93.11zm-1.86-.24a46.57 46.57 0 011.1-5.74l1.83.46a45.19 45.19 0 00-1.07 5.52zm1.1-5.74a48.56 48.56 0 011.79-5.51l1.76.69a44.57 44.57 0 00-1.72 5.28zm1.79-5.51a46.64 46.64 0 0118.71-22.42l1 1.59a44.74 44.74 0 00-18 21.52zm18.71-22.42l.76-.11-.26.9zm.76-.11l2.89.82-.51 1.81-2.89-.82zm2.89.82l-.26.91zm0 0l-.51 1.81zm-.49 1.82l.25-.91zm.51-1.82a3 3 0 00.63.11l-.14 1.89a6.62 6.62 0 01-1-.18zm.63.11a4.32 4.32 0 00.63 0l.22 1.87a5.49 5.49 0 01-1 0zm.63 0a3.3 3.3 0 002.54-1.77l1.68.85a5.17 5.17 0 01-4 2.79zm4.22-.93l-.84-.43zm-1.69-.84l1.68.84zm0 0a3 3 0 00.23-.6l1.81.5a5.36 5.36 0 01-.36.94zm2.05-.11l-.9-.25zm-1.82-.49a3.21 3.21 0 00.1-.62l1.89.14a5 5 0 01-.17 1zm2-.49l-.94-.07zm-1.89-.13a3.28 3.28 0 00-1.24-2.83l1.15-1.48a5.15 5.15 0 012 4.44zm-1.24-2.83l-69.49-54.33 1.16-1.49 69.48 54.34zm-69.49-54.33l-.36-.67.94-.08zm-.36-.67L157.94 233l1.89-.15 1.83 22.87zM157.94 233v-.08l1.89-.15v.08zm1.88-.23l-.94.08zm-1.88.15c-.06-.74-.15-1.44-.27-2.11l1.86-.31c.13.78.23 1.54.29 2.27zm-.27-2.11a21.08 21.08 0 00-.46-2.06l1.82-.49c.2.73.37 1.48.5 2.24zm-.46-2.06a23.71 23.71 0 00-5-9.46l1.42-1.24a25.59 25.59 0 015.37 10.21"
|
|
34
|
+
id="path638"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M152.69 280.72l-1.81-.55v-.11l1.78.62zm0 0l-.9-.29zm0 0a13 13 0 00-.41 1.5l-1.84-.38a13.42 13.42 0 01.46-1.71zm-.41 1.5a12.05 12.05 0 00-.23 1.53l-1.87-.17a14.31 14.31 0 01.26-1.74zm-.23 1.53a13.55 13.55 0 001.51 7.63l-1.67.88a15.56 15.56 0 01-1.71-8.68zm1.51 7.63l-1.67.88 1.67-.88zm0 0a11.36 11.36 0 00.81 1.34l-1.56 1.06a16.59 16.59 0 01-.92-1.52zm.81 1.34a14.26 14.26 0 00.94 1.23l-1.42 1.22a14.37 14.37 0 01-1.08-1.39zm.94 1.23a13.65 13.65 0 006.6 4.19l-.51 1.82a15.45 15.45 0 01-7.51-4.79"
|
|
38
|
+
id="path870"
|
|
39
|
+
/>
|
|
40
|
+
<path d="M161.24 256.57l-28.52 19.49-1.07-1.55L160.18 255" id="path872"/>
|
|
41
|
+
<path class="cls-8" d="M145.54 225.66a3.74 3.74 0 10-3.74 3.74 3.74 3.74 0 003.74-3.74" id="path874"/>
|
|
42
|
+
<path
|
|
43
|
+
d="M144.6 225.66zm0 0a2.75 2.75 0 00-.82-2l1.33-1.34a4.67 4.67 0 011.38 3.31zm-.82-2a2.75 2.75 0 00-2-.82V221a4.66 4.66 0 013.29 1.37l-1.32 1.34zm-2-2.71zm0 1.89V221zm0 0V221zm0 0a2.75 2.75 0 00-2 .82l-1.33-1.33a4.65 4.65 0 013.3-1.38zm-2 .82a2.83 2.83 0 00-.82 2h-1.88a4.6 4.6 0 011.37-3.29l1.33 1.32zm-2.7 2zm1.88 0h-1.88zm0 0zm0 0a2.81 2.81 0 00.82 2l-1.29 1.34a4.71 4.71 0 01-1.37-3.31zm.82 2a2.83 2.83 0 002 .82v1.88a4.66 4.66 0 01-3.29-1.37l1.33-1.33zm2 2.7zm0-1.88v1.88zm0 0v1.88zm0 0a2.83 2.83 0 002-.82l1.34 1.32a4.67 4.67 0 01-3.31 1.38zm2-.82a2.81 2.81 0 00.82-2h1.89a4.72 4.72 0 01-1.37 3.29l-1.34-1.33zm2.71-2zm-1.89 0h1.89"
|
|
44
|
+
id="path876"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
d="M138 315h.07l.84 1.69h-.06L138 315zm.91 1.65l-.42-.84zM138 315a14.86 14.86 0 002.17-1.34l1.12 1.51a16.43 16.43 0 01-2.45 1.51zm2.17-1.34a15 15 0 001.93-1.66l1.35 1.31a16.51 16.51 0 01-2.12 1.86zm1.93-1.66a15.08 15.08 0 004.14-11.74l1.89-.16a17 17 0 01-4.68 13.21"
|
|
48
|
+
id="path878"
|
|
49
|
+
/>
|
|
50
|
+
<path
|
|
51
|
+
d="M150.92 295.09h-.07l-.84-1.69h.07l.84 1.69zm-.92-1.65l.42.85zm.86 1.68a4.31 4.31 0 00-.73.45l-1.13-1.51a6.6 6.6 0 011-.62zm-.73.45a4.84 4.84 0 00-.63.56l-1.36-1.3a8 8 0 01.86-.77zm-.63.56a5.07 5.07 0 00-1.37 3.94l-1.89.16a6.92 6.92 0 011.9-5.4"
|
|
52
|
+
id="path880"
|
|
53
|
+
/>
|
|
54
|
+
<path
|
|
55
|
+
d="M161.51 322.76l-.7-1.74zm0 0l-3 1.24-.72-1.74 3-1.24zm-3 1.24c-1 .41-2 .84-3 1.26l-.74-1.73c1-.43 2-.86 3-1.27zm-3 1.26q-7.69 3.28-15.23 7l-.83-1.69q7.56-3.71 15.32-7"
|
|
56
|
+
id="path882"
|
|
57
|
+
/>
|
|
58
|
+
<path
|
|
59
|
+
d="M160.82 321l.68 1.76zm.73 1.74l-.34-.87zm-.71-1.75a22.26 22.26 0 003.06-1.5l.95 1.63a25.85 25.85 0 01-3.3 1.62zm3.06-1.5a23.08 23.08 0 002.78-1.89l1.18 1.48a26.9 26.9 0 01-3 2zm2.78-1.89a24 24 0 008.72-14.48l1.85.34a25.79 25.79 0 01-9.39 15.62"
|
|
60
|
+
id="path884"
|
|
61
|
+
/>
|
|
62
|
+
<path d="M151.54 325h61.3v1.89h-61.3" id="path886"/>
|
|
63
|
+
<path class="cls-8" d="M165.67 337.44a7.11 7.11 0 10-7.11 7.11 7.11 7.11 0 007.11-7.11" id="path888"/>
|
|
64
|
+
<path
|
|
65
|
+
d="M164.73 337.44zm0 0a6.16 6.16 0 00-1.81-4.35l1.33-1.34a8 8 0 012.36 5.69zm-.48-5.69l-.67.67.67-.67zm-1.33 1.34a6.13 6.13 0 00-4.34-1.8v-1.89a8 8 0 015.67 2.35zm-4.34-1.8v-1.89zm0 0v-1.89zm0 0a6.14 6.14 0 00-4.36 1.8l-1.33-1.33a8 8 0 015.69-2.36zm-4.36 1.8a6.13 6.13 0 00-1.8 4.34h-1.89a8.07 8.07 0 012.36-5.67zm-1.8 4.34h-1.89zm0 0zm0 0a6.14 6.14 0 001.8 4.35l-1.32 1.34a8.09 8.09 0 01-2.37-5.69zm1.8 4.35a6.15 6.15 0 004.35 1.8v1.89a8 8 0 01-5.67-2.35zm4.35 1.8v1.89zm0 0v1.89zm0 0a6.14 6.14 0 004.35-1.8l1.34 1.33a8.06 8.06 0 01-5.69 2.36zm5.69-.47l-.67-.67.67.66zm-1.34-1.33a6.18 6.18 0 001.81-4.34h1.88a8 8 0 01-2.35 5.67zm1.81-4.34h1.88"
|
|
66
|
+
id="path890"
|
|
67
|
+
/>
|
|
68
|
+
<path class="cls-8" d="M194 337.44a7.11 7.11 0 10-7.11 7.11 7.12 7.12 0 007.11-7.11" id="path892"/>
|
|
69
|
+
<path
|
|
70
|
+
d="M193 337.44zm0 0a6.12 6.12 0 00-1.81-4.35l1.34-1.34a8.06 8.06 0 012.36 5.69zm-.47-5.69l-.67.67.66-.67zm-1.33 1.34a6.13 6.13 0 00-4.34-1.8v-1.89a8 8 0 015.67 2.35zm-4.34-1.8v-1.89zm0 0v-1.89zm0 0a6.14 6.14 0 00-4.35 1.8l-1.34-1.33a8.06 8.06 0 015.69-2.36zm-4.35 1.8a6.13 6.13 0 00-1.8 4.34h-1.89a8 8 0 012.35-5.67zm-1.8 4.34h-1.89zm0 0zm0 0a6.14 6.14 0 001.8 4.35l-1.33 1.34a8 8 0 01-2.36-5.69zm1.8 4.35a6.13 6.13 0 004.34 1.8v1.89a8 8 0 01-5.67-2.35zm4.34 1.8v1.89zm0 0v1.89zm0 0a6.15 6.15 0 004.35-1.8l1.33 1.33a8 8 0 01-5.68 2.36zm5.68-.47l-.66-.67.66.66zm-1.33-1.33a6.13 6.13 0 001.8-4.34h1.89a8 8 0 01-2.36 5.67zm1.8-4.34h1.89"
|
|
71
|
+
id="path894"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M172.41 312.32l1 .28-.48 1.82-1-.29zm1 .28c.53.14 1 .27 1.51.38l-.41 1.83c-.55-.12-1.08-.25-1.58-.39zm1.51.38c.51.11 1 .22 1.52.31l-.34 1.85q-.81-.15-1.59-.33zm1.52.31a38.51 38.51 0 007.21.63v1.89a40.87 40.87 0 01-7.56-.67"
|
|
75
|
+
id="path896"
|
|
76
|
+
/>
|
|
77
|
+
<path
|
|
78
|
+
d="M183.64 313.92c.33 0 .65 0 1-.05l.19 1.88c-.39 0-.77.06-1.13.06v-1.89zm1-.05l.09.94-.1-.94zm0 0a10.67 10.67 0 001.58-.28l.48 1.82a13 13 0 01-1.88.34zm1.58-.28a10.17 10.17 0 001.49-.53l.76 1.73a12 12 0 01-1.77.62zm1.49-.53a10.11 10.11 0 005.2-5.2l1.72.75a12 12 0 01-6.16 6.18"
|
|
79
|
+
id="path898"
|
|
80
|
+
/>
|
|
81
|
+
<path d="M223.29 317.6l-61.9-17.6.51-1.82 61.9 17.57" id="path900"/>
|
|
82
|
+
<path d="M116.3 347.88h86.2v1.88h-86.2" id="path902"/>
|
|
83
|
+
<path d="M136.2 366.61h63.91v1.88H136.2" id="path904"/>
|
|
84
|
+
<path d="M166.08 360.2l-7 6.88-1.32-1.34 7-6.88" id="path906"/>
|
|
85
|
+
<path d="M152.79 359.53l7 6.88-1.32 1.34-7-6.88" id="path908"/>
|
|
86
|
+
<path d="M153.45 360.2l-7 6.88-1.32-1.34 7-6.88" id="path910"/>
|
|
87
|
+
<path d="M140.16 359.53l7 6.88-1.32 1.34-7-6.88" id="path912"/>
|
|
88
|
+
<path d="M178.71 360.2l-7 6.88-1.32-1.34 7-6.88" id="path914"/>
|
|
89
|
+
<path d="M165.42 359.53l7 6.21-1.32 1.34-7-6.21" id="path916"/>
|
|
90
|
+
<path d="M191.34 360.2l-7 6.88-1.34-1.34 7-6.88" id="path918"/>
|
|
91
|
+
<path d="M178.05 359.53l7 6.21-1.31 1.34-7-6.21" id="path920"/>
|
|
92
|
+
<path d="M201.47 362.68l-4.48 4.4-1.31-1.34 4.47-4.4" id="path922"/>
|
|
93
|
+
<path d="M190.68 359.53l7 6.88-1.31 1.34-7-6.88" id="path924"/>
|
|
94
|
+
<path d="M166.08 350.63l-7 6.88-1.32-1.34 7-6.88" id="path926"/>
|
|
95
|
+
<path d="M152.79 350l7 6.88-1.32 1.34-7-6.88" id="path928"/>
|
|
96
|
+
<path d="M153.45 350.63l-7 6.88-1.32-1.34 7-6.88" id="path930"/>
|
|
97
|
+
<path d="M140.16 350l7 6.88-1.32 1.34-7-6.88" id="path932"/>
|
|
98
|
+
<path d="M178.71 350.63l-7 6.88-1.32-1.34 7-6.88" id="path934"/>
|
|
99
|
+
<path d="M165.42 350l7 6.88-1.32 1.34-7-6.88" id="path936"/>
|
|
100
|
+
<path d="M191.34 350.63l-7 6.88-1.34-1.34 7-6.88" id="path938"/>
|
|
101
|
+
<path d="M178.05 350l7 6.88-1.31 1.34-7-6.88" id="path940"/>
|
|
102
|
+
<path d="M202.86 351.75l-5.86 5.76-1.31-1.34 5.86-5.76" id="path942"/>
|
|
103
|
+
<path d="M190.68 350l7 6.88-1.31 1.34-7-6.88" id="path944"/>
|
|
104
|
+
<path d="M133.66 231.57l-8.25.49-.11-1.89 8.25-.49" id="path946"/>
|
|
105
|
+
<path
|
|
106
|
+
d="M138.8 316.69L138 315l.81 1.7zM138 315l.41.85zm.84 1.69a27.78 27.78 0 00-4.47 2.79l-1.15-1.5a30.67 30.67 0 014.78-3zm-4.47 2.79a27.4 27.4 0 00-3.79 3.5l-1.4-1.26a30 30 0 014-3.74zm-3.79 3.5a27.88 27.88 0 00-6.58 24.63l-1.84.4a29.75 29.75 0 016.93-26.28"
|
|
107
|
+
id="path948"
|
|
108
|
+
/>
|
|
109
|
+
<path
|
|
110
|
+
d="M140.25 332.24l-.12.06-.82-1.7.11-.05zm-.95-1.63l.41.85zm.84 1.69a16.68 16.68 0 00-2.27 1.37l-1.11-1.52a17.71 17.71 0 012.54-1.54zm-2.27 1.37a16.25 16.25 0 00-2 1.7l-1.34-1.32a17.43 17.43 0 012.21-1.9zm-2 1.7a16.52 16.52 0 00-4.62 12.3l-1.86.06a18.29 18.29 0 015.14-13.68"
|
|
111
|
+
id="path950"
|
|
112
|
+
/>
|
|
113
|
+
<path
|
|
114
|
+
d="M118.12 338.77l-1.77-.12 1.77.12zm-1.79.57l1.8-.56-1.78-.13zm1.8-.56c.13.46.29.91.46 1.36l-1.75.68c-.19-.49-.36-1-.51-1.48zm.46 1.36c.17.44.37.88.57 1.3l-1.68.83a15.57 15.57 0 01-.64-1.45zm.57 1.3a16.55 16.55 0 004.55 5.63l-1.17 1.48a18.33 18.33 0 01-5.06-6.28"
|
|
115
|
+
id="path952"
|
|
116
|
+
/>
|
|
117
|
+
<path d="M118.08 339.4l-2.16 5-1.73-.75 2.16-5" id="path954"/>
|
|
118
|
+
<path
|
|
119
|
+
d="M122.2 348l.09-.64 1.68.84zm1.77.2l-1.67-.85zm-1.67-.85c.23-.45.45-.88.66-1.31l1.69.83-.68 1.35zm.66-1.31l.63-1.31 1.7.78c-.24.52-.45 1-.64 1.36zm.63-1.31a56.72 56.72 0 002.67-7l1.79.55a56.93 56.93 0 01-2.76 7.23"
|
|
120
|
+
id="path956"
|
|
121
|
+
/>
|
|
122
|
+
<path
|
|
123
|
+
d="M129.41 347.73l1.83-.42zm1.83-.45l-.92.21.92-.21zm-1.84.43c-.11-.49-.23-.95-.33-1.34l1.82-.47c.13.5.25 1 .35 1.38zm-.33-1.34c-.1-.38-.22-.82-.37-1.33l1.82-.52c.11.39.23.85.37 1.38zm1.44-1.85l-.91.26.9-.26zm-1.8.52a53.83 53.83 0 00-2.41-6.64v-.66l1.76-.1a54.18 54.18 0 012.49 6.88"
|
|
124
|
+
id="path958"
|
|
125
|
+
/>
|
|
126
|
+
<path d="M138 381.66l-2.73-14.05 1.85-.36 2.73 14.05" id="path960"/>
|
|
127
|
+
<path d="M135.31 367.85l-6.41-18.73 1.78-.6 6.41 18.73" id="path962"/>
|
|
128
|
+
<path d="M140.82 360.2l-5 4.95-1.32-1.34 5-4.95" id="path964"/>
|
|
129
|
+
<path d="M140.82 350.63l-7.46 7.37-1.36-1.35 7.46-7.36" id="path966"/>
|
|
130
|
+
</svg>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import {Component, CUSTOM_ELEMENTS_SCHEMA, inject, OnInit} from "@angular/core";
|
|
2
|
+
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {MatButton} from "@angular/material/button";
|
|
4
|
+
import {MatMenu, MatMenuItem, MatMenuTrigger} from "@angular/material/menu";
|
|
5
|
+
import {MatToolbar} from "@angular/material/toolbar";
|
|
6
|
+
import {RouterLink, RouterOutlet} from "@angular/router";
|
|
7
|
+
import {JSEncrypt} from "jsencrypt";
|
|
8
|
+
import {switchMap, tap} from "rxjs";
|
|
9
|
+
import {InputControl} from "../../../iss/src/components/controls/input/input.control";
|
|
10
|
+
import {LoginService} from "./login.service";
|
|
11
|
+
|
|
12
|
+
@Component({
|
|
13
|
+
selector: "app-root",
|
|
14
|
+
imports: [
|
|
15
|
+
RouterOutlet,
|
|
16
|
+
RouterLink,
|
|
17
|
+
MatToolbar,
|
|
18
|
+
MatButton,
|
|
19
|
+
MatMenu,
|
|
20
|
+
MatMenuItem,
|
|
21
|
+
MatMenuTrigger,
|
|
22
|
+
InputControl,
|
|
23
|
+
ReactiveFormsModule,
|
|
24
|
+
],
|
|
25
|
+
template: `
|
|
26
|
+
<ds-icon icon="info" [style.display]="'none'"></ds-icon>
|
|
27
|
+
<mat-toolbar>
|
|
28
|
+
<!-- <mat-toolbar-row class="d-flex flex-row align-items-center" style="width: 100%">-->
|
|
29
|
+
<div>
|
|
30
|
+
<button mat-button [matMenuTriggerFor]="controlsMenu">Controls</button>
|
|
31
|
+
<mat-menu #controlsMenu="matMenu">
|
|
32
|
+
<a mat-menu-item [routerLink]="['select']">Select</a>
|
|
33
|
+
<a mat-menu-item [routerLink]="['attachment']">Attachment</a>
|
|
34
|
+
<a mat-menu-item [routerLink]="['date']">Date Picker</a>
|
|
35
|
+
<a mat-menu-item [routerLink]="['time']">Time Picker</a>
|
|
36
|
+
<a mat-menu-item [routerLink]="['datetime']">Datetime Picker</a>
|
|
37
|
+
<a mat-menu-item [routerLink]="['date-range']">Date Range Picker</a>
|
|
38
|
+
<a mat-menu-item [routerLink]="['mobile']">Mobile</a>
|
|
39
|
+
<a mat-menu-item [routerLink]="['plate']">Plate</a>
|
|
40
|
+
<a mat-menu-item [routerLink]="['chips']">Chips</a>
|
|
41
|
+
<a mat-menu-item [routerLink]="['input']">Input</a>
|
|
42
|
+
<a mat-menu-item [routerLink]="['textarea']">Textarea</a>
|
|
43
|
+
</mat-menu>
|
|
44
|
+
|
|
|
45
|
+
<button mat-button [matMenuTriggerFor]="WrappersMenu">Wrappers</button>
|
|
46
|
+
<mat-menu #WrappersMenu="matMenu">
|
|
47
|
+
<a mat-menu-item [routerLink]="['outlet']">Outlet</a>
|
|
48
|
+
<a mat-menu-item [routerLink]="['inputWrapper']">inputWrapper</a>
|
|
49
|
+
<a mat-menu-item [routerLink]="['select-wrapper']">select wrapper</a>
|
|
50
|
+
<a mat-menu-item [routerLink]="['date-wrapper']">Date Picker</a>
|
|
51
|
+
<a mat-menu-item [routerLink]="['date-range-wrapper']">Date Range Picker</a>
|
|
52
|
+
<a mat-menu-item [routerLink]="['checkbox']">Checkbox</a>
|
|
53
|
+
<a mat-menu-item [routerLink]="['radio']">Radio</a>
|
|
54
|
+
<a mat-menu-item [routerLink]="['textarea-wrapper']">textarea wrapper</a>
|
|
55
|
+
<a mat-menu-item [routerLink]="['plate-wrapper']">plate wrapper</a>
|
|
56
|
+
<a mat-menu-item [routerLink]="['chips-wrapper']">Chips</a>
|
|
57
|
+
<a mat-menu-item [routerLink]="['note']">Note</a>
|
|
58
|
+
<a mat-menu-item [routerLink]="['slideToggle']">Slide Toggle</a>
|
|
59
|
+
<a mat-menu-item [routerLink]="['toggle']">Toggle</a>
|
|
60
|
+
<a mat-menu-item [routerLink]="['time-wrapper']">Time</a>
|
|
61
|
+
<a mat-menu-item [routerLink]="['mobile-wrapper']">Mobile</a>
|
|
62
|
+
<a mat-menu-item [routerLink]="['table']">Ctrl Array</a>
|
|
63
|
+
<a mat-menu-item [routerLink]="['attachment-wrapper']">Attachment</a>
|
|
64
|
+
<a mat-menu-item [routerLink]="['user-picker']">User Picker</a>
|
|
65
|
+
<a mat-menu-item [routerLink]="['datetime-wrapper']">Date Time</a>
|
|
66
|
+
</mat-menu>
|
|
67
|
+
|
|
|
68
|
+
<button mat-button [matMenuTriggerFor]="servicesMenu">Services</button>
|
|
69
|
+
<mat-menu #servicesMenu="matMenu">
|
|
70
|
+
<a mat-menu-item [routerLink]="['mhv/create']">mhv</a>
|
|
71
|
+
</mat-menu>
|
|
72
|
+
</div>
|
|
73
|
+
<span style="flex: 1 1 auto;"></span>
|
|
74
|
+
<iss-ctrl-input [formControl]="ctrl" [suffixIcon]="'send-message-o'" (onSuffixClick)="login()" [min]="5" />
|
|
75
|
+
<!-- </mat-toolbar-row>-->
|
|
76
|
+
</mat-toolbar>
|
|
77
|
+
|
|
78
|
+
<div style="margin: 3rem; padding: 2rem; background: lightgrey">
|
|
79
|
+
<router-outlet />
|
|
80
|
+
<hr />
|
|
81
|
+
</div>
|
|
82
|
+
`,
|
|
83
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
84
|
+
})
|
|
85
|
+
export class AppComponent implements OnInit {
|
|
86
|
+
srv = inject(LoginService);
|
|
87
|
+
PASSWORD_ENCRYPTION_KEY = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAobRR48UXQY0wPCxW/m5/Qu0zAXwhbDUToyWmlULxf51dwSJ+/j2Z8Cc/BpBMIcvzZ3jxxjOaHZGdjzDfUe0VAfWHIZIVA3kCqj9N5NB2wM9F6ZLhxCjGVVWYpfyqa06BZgB4+WM4GbMLYRRDImonYOavms4laGUyevRGRLz2mdQqAylRqV6bNC3h9mYbjWrVkuVHuvG73JyHm+qaoFc5M1HJx7VUteVjA1C++0wcZKVh8nRPGibYXVPjXWLePw+kYgeISFGMq+5k7ksyTlfwEnrhdzmm8k3gVuAIT+fg+vvFElezzXFsRKQDIxFih8NCFGbS99hMYSqo0z06JRn23wIDAQAB";
|
|
88
|
+
ctrl = new FormControl();
|
|
89
|
+
|
|
90
|
+
ngOnInit() {
|
|
91
|
+
this.ctrl.setValue("ifawzy.c@stc.com.sa");
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
login() {
|
|
95
|
+
const credentials = {
|
|
96
|
+
username: this.ctrl.getRawValue(),
|
|
97
|
+
password: this.encrypt("stc123"),
|
|
98
|
+
};
|
|
99
|
+
this.srv.login(credentials).pipe(
|
|
100
|
+
switchMap((res: any) => {
|
|
101
|
+
return this.srv.getProfile(res.email).pipe(
|
|
102
|
+
tap((res: any) => {
|
|
103
|
+
localStorage.setItem("profile", JSON.stringify(res));
|
|
104
|
+
})
|
|
105
|
+
);
|
|
106
|
+
})
|
|
107
|
+
).subscribe();
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
encrypt(str: string) {
|
|
111
|
+
const encrypt = new JSEncrypt({default_key_size: "2048"});
|
|
112
|
+
encrypt.setPublicKey(this.PASSWORD_ENCRYPTION_KEY);
|
|
113
|
+
const encryptedStr = encrypt.encrypt(str);
|
|
114
|
+
if (typeof encryptedStr === "string") {
|
|
115
|
+
return encryptedStr;
|
|
116
|
+
}
|
|
117
|
+
return "";
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {provideHttpClient, withInterceptors, withInterceptorsFromDi} from "@angular/common/http";
|
|
2
|
+
import {ApplicationConfig, provideZoneChangeDetection} from "@angular/core";
|
|
3
|
+
import {provideRouter, withComponentInputBinding} from "@angular/router";
|
|
4
|
+
import {API_RESPONSE_MAPPER} from "../../../iss/src/shared/tokens/api-response-mapper.token";
|
|
5
|
+
import {ATTACHMENT_DOWNLOAD_URL, ATTACHMENT_UPLOAD_RESPONSE_MAPPER, ATTACHMENT_UPLOAD_URL} from "../../../iss/src/shared/tokens/attachment.token";
|
|
6
|
+
import {HOST} from "../../../iss/src/shared/tokens/host.token";
|
|
7
|
+
import {UI_LANGUAGE} from "../../../iss/src/shared/tokens/language.token";
|
|
8
|
+
import {USER_SEARCH_URL} from "../../../iss/src/shared/tokens/url.token";
|
|
9
|
+
import {authInterceptor} from "../interceptors/header.interceptor";
|
|
10
|
+
|
|
11
|
+
import {routes} from "./app.routes";
|
|
12
|
+
|
|
13
|
+
export const appConfig: ApplicationConfig = {
|
|
14
|
+
providers: [
|
|
15
|
+
provideZoneChangeDetection({eventCoalescing: true}),
|
|
16
|
+
provideRouter(routes, withComponentInputBinding()),
|
|
17
|
+
{provide: UI_LANGUAGE, useValue: "en"},
|
|
18
|
+
{provide: HOST, useValue: "https:ss-webdev.stc.com.sa"},
|
|
19
|
+
{provide: USER_SEARCH_URL, useValue: "https://ss-webdev.stc.com.sa/v1/private/users/search?_q={username}"},
|
|
20
|
+
{provide: ATTACHMENT_UPLOAD_URL, useValue: "https://ss-webdev.stc.com.sa/v1/private/attachments/upload"},
|
|
21
|
+
{provide: ATTACHMENT_UPLOAD_RESPONSE_MAPPER, useFactory: () => attachmentUploadResponseMapper},
|
|
22
|
+
{provide: API_RESPONSE_MAPPER, useFactory: () => apiResponseMapper},
|
|
23
|
+
{provide: ATTACHMENT_DOWNLOAD_URL, useValue: "https://ss-webdev.stc.com.sa/v1/private/attachments/download/{fileId}"},
|
|
24
|
+
provideHttpClient(withInterceptorsFromDi(), withInterceptors([authInterceptor])),
|
|
25
|
+
]
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export function apiResponseMapper(res: any) {
|
|
29
|
+
return res.data.map((item: any) => item?.data);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function attachmentUploadResponseMapper(res: any) {
|
|
33
|
+
return res.data.map((attachment: any) => ({
|
|
34
|
+
id: `${attachment.id}`,
|
|
35
|
+
name: attachment.fileName,
|
|
36
|
+
type: attachment.contentType,
|
|
37
|
+
size: attachment.size,
|
|
38
|
+
}));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function attachmentDownloadResponseMapper(res: any) {
|
|
42
|
+
let fileNameHeader = res.headers.get("content-disposition");
|
|
43
|
+
let fileName = "";
|
|
44
|
+
if (fileNameHeader) {
|
|
45
|
+
fileName = decodeURIComponent(fileNameHeader.split(";")[1].split("=")[1].replaceAll("\"", ""));
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
name: fileName,
|
|
49
|
+
file: res.body,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import {Routes} from "@angular/router";
|
|
2
|
+
|
|
3
|
+
export const routes: Routes = [
|
|
4
|
+
{path: "select", loadComponent: (): Promise<any> => import("../components/select-container.component")},
|
|
5
|
+
{path: "select-wrapper", loadComponent: (): Promise<any> => import("../components/select-wrapper.component")},
|
|
6
|
+
{path: "attachment", loadComponent: (): Promise<any> => import("../components/attachment.component")},
|
|
7
|
+
{path: "date", loadComponent: (): Promise<any> => import("../components/date-picker-container.component")},
|
|
8
|
+
{path: "date-wrapper", loadComponent: (): Promise<any> => import("../components/date-picker-wrapper.component")},
|
|
9
|
+
{path: "time", loadComponent: (): Promise<any> => import("../components/time-picker-container.component")},
|
|
10
|
+
{path: "datetime", loadComponent: (): Promise<any> => import("../components/datetime-container.component")},
|
|
11
|
+
{path: "date-range", loadComponent: (): Promise<any> => import("../components/date-range-picker-container.component")},
|
|
12
|
+
{path: "date-range-wrapper", loadComponent: (): Promise<any> => import("../components/date-range-picker-wrapper.component")},
|
|
13
|
+
{path: "mobile", loadComponent: (): Promise<any> => import("../components/mobile-container.component")},
|
|
14
|
+
{path: "plate", loadComponent: (): Promise<any> => import("../components/plate-container.component")},
|
|
15
|
+
{path: "chips", loadComponent: (): Promise<any> => import("../components/ships-container.component")},
|
|
16
|
+
{path: "input", loadComponent: (): Promise<any> => import("../components/input-container.component")},
|
|
17
|
+
{path: "textarea", loadComponent: (): Promise<any> => import("../components/textarea-container.component")},
|
|
18
|
+
{path: "outlet", loadComponent: (): Promise<any> => import("../components/outlet-container.component")},
|
|
19
|
+
{path: "inputWrapper", loadComponent: (): Promise<any> => import("../components/input-wrapper.component")},
|
|
20
|
+
{path: "checkbox", loadComponent: (): Promise<any> => import("../components/checkbox-wrapper.component")},
|
|
21
|
+
{path: "radio", loadComponent: (): Promise<any> => import("../components/radio-wrapper.component")},
|
|
22
|
+
|
|
23
|
+
{path: "textarea-wrapper", loadComponent: (): Promise<any> => import("../components/textarea-wrapper.component")},
|
|
24
|
+
{path: "plate-wrapper", loadComponent: (): Promise<any> => import("../components/plate-wrapper.component")},
|
|
25
|
+
{path: "chips-wrapper", loadComponent: (): Promise<any> => import("../components/chips-wrapper.component")},
|
|
26
|
+
{path: "note", loadComponent: (): Promise<any> => import("../components/note-wrapper.component")},
|
|
27
|
+
{path: "slideToggle", loadComponent: (): Promise<any> => import("../components/slide-toggle-wrapper.component")},
|
|
28
|
+
{path: "toggle", loadComponent: (): Promise<any> => import("../components/toggle-button-wrapper.component")},
|
|
29
|
+
{path: "time-wrapper", loadComponent: (): Promise<any> => import("../components/time-picker-wrapper.component")},
|
|
30
|
+
{path: "table", loadComponent: (): Promise<any> => import("../components/ctrl-array-wrapper.component")},
|
|
31
|
+
{path: "mobile-wrapper", loadComponent: (): Promise<any> => import("../components/mobile-wrapper.component")},
|
|
32
|
+
{path: "attachment-wrapper", loadComponent: (): Promise<any> => import("../components/attachment-wrapper.component")},
|
|
33
|
+
{path: "user-picker", loadComponent: (): Promise<any> => import("../components/user-picker-wrapper.component")},
|
|
34
|
+
{path: "datetime-wrapper", loadComponent: (): Promise<any> => import("../components/datetime-picker-wrapper.component")},
|
|
35
|
+
|
|
36
|
+
{path: ":code", loadComponent: (): Promise<any> => import("../eServices/e-service.component")},
|
|
37
|
+
{path: ":code/create", loadComponent: (): Promise<any> => import("../eServices/create-request.component")},
|
|
38
|
+
{path: ":requestId/view", loadComponent: (): Promise<any> => import("../eServices/view-request.component")},
|
|
39
|
+
|
|
40
|
+
{path: "", redirectTo: "select", pathMatch: "full"},
|
|
41
|
+
];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import {HttpClient} from "@angular/common/http";
|
|
2
|
+
import {inject, Injectable} from "@angular/core";
|
|
3
|
+
import {map, tap} from "rxjs";
|
|
4
|
+
|
|
5
|
+
@Injectable({providedIn: "root"})
|
|
6
|
+
export class LoginService {
|
|
7
|
+
#http: HttpClient = inject(HttpClient);
|
|
8
|
+
|
|
9
|
+
login(credentials: any) {
|
|
10
|
+
return this.#http.post(`https://ss-webdev.stc.com.sa/v1/public/auth/signin`, credentials).pipe(
|
|
11
|
+
tap((response: any) => {
|
|
12
|
+
localStorage.setItem("token", response["accessToken"]);
|
|
13
|
+
localStorage.setItem("username", credentials.username);
|
|
14
|
+
}),
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
getProfile(email: string) {
|
|
19
|
+
return this.#http.get(`https://ss-webdev.stc.com.sa/v1/private/users/${email}`).pipe(map((res: any) => res?.data));
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormGroup, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {Outlet} from "../../../iss/src/components/outlet/outlet";
|
|
4
|
+
|
|
5
|
+
@Component({
|
|
6
|
+
selector: "app-attachment-wrapper",
|
|
7
|
+
imports: [
|
|
8
|
+
Outlet,
|
|
9
|
+
ReactiveFormsModule
|
|
10
|
+
],
|
|
11
|
+
template: `
|
|
12
|
+
<form [formGroup]="form">
|
|
13
|
+
<iss-form-outlet [fields]="field"/>
|
|
14
|
+
</form>
|
|
15
|
+
`,
|
|
16
|
+
styles: ``
|
|
17
|
+
})
|
|
18
|
+
export default class AttachmentWrapperComponent {
|
|
19
|
+
form = new FormGroup({});
|
|
20
|
+
field: any = [
|
|
21
|
+
{
|
|
22
|
+
"id": 37,
|
|
23
|
+
"name": "file",
|
|
24
|
+
"title": "File",
|
|
25
|
+
"hint": null,
|
|
26
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
27
|
+
"order": 10,
|
|
28
|
+
"type": "file",
|
|
29
|
+
"stepName": "REQUESTER",
|
|
30
|
+
"mode": "view",
|
|
31
|
+
"value": "41232,41233",
|
|
32
|
+
"validation": {
|
|
33
|
+
"required": true,
|
|
34
|
+
"fileSize": 200000,
|
|
35
|
+
"fileType": "jpg,jpeg",
|
|
36
|
+
"minFilesCount": 2,
|
|
37
|
+
"maxFilesCount": 3,
|
|
38
|
+
},
|
|
39
|
+
"config": {
|
|
40
|
+
multiple: true
|
|
41
|
+
},
|
|
42
|
+
"events": []
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {MatLabel} from "@angular/material/form-field";
|
|
4
|
+
import {FilePickerControl} from "../../../iss/src/components/controls/file-picker/file-picker.control";
|
|
5
|
+
import {Hint} from "../../../iss/src/shared/interfaces/hint.interface";
|
|
6
|
+
|
|
7
|
+
@Component({
|
|
8
|
+
selector: "app-attachment",
|
|
9
|
+
imports: [
|
|
10
|
+
ReactiveFormsModule,
|
|
11
|
+
MatLabel,
|
|
12
|
+
FilePickerControl,
|
|
13
|
+
],
|
|
14
|
+
template: `
|
|
15
|
+
<mat-label>Attachment 1</mat-label>
|
|
16
|
+
<iss-ctrl-file-picker [formControl]="ctrl1" [multiple]="true" />
|
|
17
|
+
<mat-label>File Picker</mat-label>
|
|
18
|
+
<iss-ctrl-file-picker [formControl]="ctrl2" (onChange)="logObject($event)" [hints]="hints" />
|
|
19
|
+
`,
|
|
20
|
+
styles: ``
|
|
21
|
+
})
|
|
22
|
+
export default class AttachmentComponent {
|
|
23
|
+
ctrl1 = new FormControl("");
|
|
24
|
+
ctrl2 = new FormControl("");
|
|
25
|
+
hints: Hint[] = [
|
|
26
|
+
{
|
|
27
|
+
key: "size",
|
|
28
|
+
label: "allowed size is 1 MB",
|
|
29
|
+
valid: undefined,
|
|
30
|
+
align: "start",
|
|
31
|
+
}
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
logObject($event: any) { }
|
|
35
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormGroup, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {Outlet} from "../../../iss/src/components/outlet/outlet";
|
|
4
|
+
|
|
5
|
+
@Component({
|
|
6
|
+
selector: "app-checkbox-wrapper",
|
|
7
|
+
imports: [
|
|
8
|
+
Outlet,
|
|
9
|
+
ReactiveFormsModule
|
|
10
|
+
],
|
|
11
|
+
template: `
|
|
12
|
+
<form [formGroup]="form">
|
|
13
|
+
<iss-form-outlet [fields]="field" />
|
|
14
|
+
</form>
|
|
15
|
+
`,
|
|
16
|
+
styles: ``
|
|
17
|
+
})
|
|
18
|
+
export default class CheckboxWrapperComponent {
|
|
19
|
+
form = new FormGroup({});
|
|
20
|
+
field: any = [
|
|
21
|
+
{
|
|
22
|
+
"id": 37,
|
|
23
|
+
"name": "district",
|
|
24
|
+
"title": "District",
|
|
25
|
+
"hint": null,
|
|
26
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
27
|
+
"order": 10,
|
|
28
|
+
"type": "checkbox",
|
|
29
|
+
"stepName": "REQUESTER",
|
|
30
|
+
"options": [
|
|
31
|
+
{value: "1", label: "ONE"},
|
|
32
|
+
{value: "2", label: "TWO"},
|
|
33
|
+
{value: "3", label: "THREE"},
|
|
34
|
+
],
|
|
35
|
+
"value": "1,2",
|
|
36
|
+
"jsonValue": [{value: "1", label: "ONE"}, {value: "2", label: "TWO"}],
|
|
37
|
+
"validation": {
|
|
38
|
+
"required": true
|
|
39
|
+
},
|
|
40
|
+
"events": []
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormGroup, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {Outlet} from "../../../iss/src/components/outlet/outlet";
|
|
4
|
+
|
|
5
|
+
@Component({
|
|
6
|
+
selector: "app-chips-wrapper",
|
|
7
|
+
imports: [
|
|
8
|
+
Outlet,
|
|
9
|
+
ReactiveFormsModule
|
|
10
|
+
],
|
|
11
|
+
template: `
|
|
12
|
+
<form [formGroup]="form">
|
|
13
|
+
<iss-form-outlet [fields]="field"/>
|
|
14
|
+
</form>
|
|
15
|
+
`,
|
|
16
|
+
styles: ``
|
|
17
|
+
})
|
|
18
|
+
export default class ChipsWrapperComponent {
|
|
19
|
+
form = new FormGroup({});
|
|
20
|
+
field: any = [
|
|
21
|
+
{
|
|
22
|
+
"id": 37,
|
|
23
|
+
"name": "district",
|
|
24
|
+
"title": "District",
|
|
25
|
+
"hint": null,
|
|
26
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
27
|
+
"order": 10,
|
|
28
|
+
"type": "chips",
|
|
29
|
+
"value": "cat,dog",
|
|
30
|
+
"stepName": "REQUESTER",
|
|
31
|
+
"validation": {
|
|
32
|
+
"required": true
|
|
33
|
+
},
|
|
34
|
+
"events": []
|
|
35
|
+
}
|
|
36
|
+
];
|
|
37
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormGroup, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {Outlet} from "../../../iss/src/components/outlet/outlet";
|
|
4
|
+
|
|
5
|
+
@Component({
|
|
6
|
+
selector: "app-table-wrapper",
|
|
7
|
+
imports: [
|
|
8
|
+
ReactiveFormsModule,
|
|
9
|
+
Outlet
|
|
10
|
+
],
|
|
11
|
+
template: `
|
|
12
|
+
<form [formGroup]="form">
|
|
13
|
+
<iss-form-outlet [fields]="fields"/>
|
|
14
|
+
</form>
|
|
15
|
+
`,
|
|
16
|
+
styles: ``
|
|
17
|
+
})
|
|
18
|
+
export default class CtrlArrayWrapperComponent {
|
|
19
|
+
form: FormGroup = new FormGroup({});
|
|
20
|
+
fields: any = [
|
|
21
|
+
{
|
|
22
|
+
"id": 37,
|
|
23
|
+
"name": "district",
|
|
24
|
+
"title": "District",
|
|
25
|
+
"hint": null,
|
|
26
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
27
|
+
"order": 10,
|
|
28
|
+
"type": "table",
|
|
29
|
+
"stepName": "REQUESTER",
|
|
30
|
+
"children": [
|
|
31
|
+
{
|
|
32
|
+
"id": 37,
|
|
33
|
+
"name": "district",
|
|
34
|
+
"title": "District",
|
|
35
|
+
"hint": null,
|
|
36
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
37
|
+
"order": 10,
|
|
38
|
+
"type": "select",
|
|
39
|
+
"stepName": "REQUESTER",
|
|
40
|
+
"options": [
|
|
41
|
+
{value: "1", label: "ONE"},
|
|
42
|
+
{value: "2", label: "TWO"},
|
|
43
|
+
{value: "3", label: "THREE"},
|
|
44
|
+
],
|
|
45
|
+
"validation": {
|
|
46
|
+
"required": true
|
|
47
|
+
},
|
|
48
|
+
"events": []
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": 37,
|
|
52
|
+
"name": "location",
|
|
53
|
+
"title": "Location",
|
|
54
|
+
"hint": null,
|
|
55
|
+
"api": "/v1/private/subsidiaries/{key}/districts",
|
|
56
|
+
"order": 10,
|
|
57
|
+
"type": "select",
|
|
58
|
+
"stepName": "REQUESTER",
|
|
59
|
+
"options": [
|
|
60
|
+
{value: "4", label: "FOUR"},
|
|
61
|
+
{value: "5", label: "FIVE"},
|
|
62
|
+
{value: "6", label: "SIX"},
|
|
63
|
+
],
|
|
64
|
+
"validation": {
|
|
65
|
+
"required": true
|
|
66
|
+
},
|
|
67
|
+
"events": []
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"validation": {
|
|
71
|
+
"required": true
|
|
72
|
+
},
|
|
73
|
+
"events": []
|
|
74
|
+
},
|
|
75
|
+
];
|
|
76
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {Component} from "@angular/core";
|
|
2
|
+
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
|
3
|
+
import {MatLabel} from "@angular/material/form-field";
|
|
4
|
+
import {DatePickerControl} from "../../../iss/src/components/controls/date-picker/date-picker.control";
|
|
5
|
+
|
|
6
|
+
@Component({
|
|
7
|
+
selector: "app-date-picker-container",
|
|
8
|
+
imports: [
|
|
9
|
+
ReactiveFormsModule,
|
|
10
|
+
MatLabel,
|
|
11
|
+
DatePickerControl
|
|
12
|
+
],
|
|
13
|
+
template: `
|
|
14
|
+
<mat-label>Date</mat-label>
|
|
15
|
+
<iss-ctrl-date-picker [formControl]="datePicker" [maxDate]="minDate"></iss-ctrl-date-picker>
|
|
16
|
+
`,
|
|
17
|
+
styles: ``
|
|
18
|
+
})
|
|
19
|
+
export default class DatePickerContainerComponent {
|
|
20
|
+
datePicker = new FormControl("");
|
|
21
|
+
minDate = new Date();
|
|
22
|
+
}
|