h&@:Q      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                                                                                                        Safe-Inferred"#web-rep2Convert a link to a css library from text to html.markdown_ Compact Html $ libCss "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"""web-rep1Convert a link to a js library from text to html.markdown_ Compact Html $ libJs "https://code.jquery.com/jquery-3.3.1.slim.min.js""" Safe-Inferred"< - web-repVarious types of web page inputs, encapsulating practical bootstrap class functionalityweb-repsomething that might exist on a web page and be a front-end input to computations.web-repunderlying valueweb-replabel suggestionweb-repname/key/id of the Inputweb-reptype of html inputweb-repConversion to a web-rep&Convert a value to a strict ByteStringweb-rep Convert an  to  via a specific printer.   Safe-Inferred"s+web-repJavascript as string.web-repcss as a string.1web-rep'Configuration options when rendering a D.8web-rep0Various ways that a Html file can be structured.<web-rep Is the rendering to include all ? (typically in a html file) or be separated (tyypically into separate files and linked in the html file)??web-repA web page typically is composed of some css, javascript and html.?1 abstracts this structural feature of a web page.Dweb-repComponents of a web page.A web page can take many forms but still have the same underlying representation. For example, CSS can be linked to in a separate file, or can be inline within html, but still be the same css and have the same expected external effect. A Page represents the practical components of what makes up a static snapshot of a web page.Fweb-repcss library linksGweb-repjavascript library linksHweb-repcssIweb-repjavascript with global scopeJweb-rep.javascript included within the onLoad functionKweb-rephtml within the headerLweb-rep body htmlMweb-rep/The common file suffixes of the three concerns.Nweb-rep*Create filenames for each Concern element.Oweb-repDefault configuration is inline ecma and css, separate html header and body, minified code, with the suggested filename prefix.Pweb-repRender . as text.Qweb-rep8Css snippet for reponsiveness to preferred color-scheme.Rweb-rep!Add the windows.onload assignment(+,-./0125346789:;<=>?@ABCDEFGHIJKLMNOPQR(DEFGHIJKL1253467O?@ABCMN<=>89:;./0PQ+,-R Safe-Inferred"qweb-rep7Render a Page with the default configuration into Html.rweb-repRender a Page into Html.sweb-rep.Render a Page into css text, js text and html.tweb-repRender Page concerns to files.uweb-rep"Render a page to just a Html file.vweb-repRender a Page as Text.qrstuvqsrvtu Safe-Inferredowweb-repserve a Page via a ScottyMww Safe-Inferred" xweb-repdefault representation type of  ()yweb-repDriven by the architecture of the DOM, web page components are compositional, and tree-like, where components are often composed of other components, and values are thus shared across components.;This is sometimes referred to as "observable sharing". See  -http://hackage.haskell.org/package/data-reify data-reify as another library that reifies this (pun intended), and provided the initial inspiration for this implementation.unshare should only be run once, which is a terrible flaw that might be fixed by linear types.|web-rep9the common usage, where the representation domain is Html}web-repInformation contained in a web page can usually be considered to be isomorphic to a map of named values - a . This is especially true when considering a differential of information contained in a web page. Looking at a page from the outside, it often looks like a streaming differential of a hashmap.RepF consists of an underlying value being represented, and, given a hashmap state, a way to produce a representation of the underlying value (or error), in another domain, together with the potential to alter the hashmap state.web-rep%stateful result of one step, given a }, and a monadic action. Useful for testing and for initialising a page.web-repname supply for elements of a yweb-repsometimes a number doesn't work properly in html (or js???), and an alpha prefix seems to helpweb-repCreate a sharedRepweb-repLike , but does not put a value into the HashMap on instantiation, consumes the value when found in the HashMap, and substitutes a default on lookup failureweb-rep2compute the initial state of a SharedRep (testing)web-repCompute the initial state of a SharedRep and then run an action once (see tests).web-repParserweb-repPrinterweb-rep1create initial object from name and initial valueweb-rep initial valueweb-repParserweb-rep1create initial object from name and initial valueweb-rep initial valueweb-rep default valuexyz{|}~}~|yz{x Safe-Inferred"# web-repbootstrap css linkweb-repbootstrap JS linkweb-repbootstrap meta element.web-repA page containing all the  https://getbootstrap.com/ bootstrap needs for a web page.web-rep"wrap some Html with the bootstrap  2https://getbootstrap.com/docs/4.3/components/card/card classweb-rep SharedRep m Doubleweb-repdouble slider with shown valueFor Example, a slider between 0 and 1 with a step of 0.01 and a default value of 0.3 is: %:t slider (Just "label") 0 1 0.01 0.3slider (Just "label") 0 1 0.01 0.3 :: Monad m => SharedRep m Doubleweb-repintegral sliderFor Example, a slider between 0 and 1000 with a step of 10 and a default value of 300 is: ':t sliderI (Just "label") 0 1000 10 300sliderI (Just "label") 0 1000 10 300 :: (Monad m, ToHtml a, P.Integral a, Show a) => SharedRep m aweb-rep integral slider with shown valueweb-reptextbox classique %:t textbox (Just "label") "some text"textbox (Just "label") "some text" :: Monad m => SharedRep m ByteStringweb-rep%textbox that only updates on focusoutweb-rep2textarea input element, specifying number of rows.web-repNon-typed hex color inputweb-rep dropdown boxweb-rep%dropdown box with multiple selectionsweb-repa datalist inputweb-rep=A dropdown box designed to help represent a haskell sum type.web-repA checkbox input.web-repa toggle buttonweb-repa toggle button, with no labelweb-repa buttonweb-repfilename inputweb-rep#Represent a Maybe using a checkbox.'Hides the underlying content on Nothingweb-reptoggle show/hideweb-repA (fixed-size) list represented in html as an accordion card A major restriction of the library is that a y does not have a Monad instance. In practice, this means that the external representation of lists cannot have a dynamic size.web-rep)A (fixed-sized) list of (Bool, a) tuples.web-repA fixed-sized list of Maybe a'sweb-repA SharedRep of [a]. Due to the applicative nature of the bridge, the size of lists has to be fixed on construction. listRep is a workaround for this, to enable some form of dynamic sizing.web-rep:A sensible default for the accordion row labels for a listweb-repParse from a textbox+Uses focusout so as not to spam the reader.web-rep0Dropdown representation of a multi-element list.web-repselect test keys from a Mapweb-reprep of multiple items listweb-repsubtype Html class.web-repParserweb-repPrinterweb-rep typeweb-rep initial valueweb-repparse an a from ByteStringweb-repprint an a to ByteStringweb-replabel suggestionweb-rep"list of dropbox elements (as text)web-rep initial valueweb-repparse an a from ByteStringweb-repprint an a to ByteStringweb-replabel suggestionweb-rep"list of dropbox elements (as text)web-rep initial valueweb-repname prefix (should be unique)web-repBool Repweb-repa Repweb-repmaximum length of listweb-repdefault value for new rowsweb-repinitial values  Safe-Inferred"6=&web-repA simple schema for code that communicates changes to a Html page via JS code.web-repConfiguration to control a (re)play of an emitter with a Gap (timing) element.web-rep$Configuration for a CodeBox serving.web-repCodensity CodeBoxweb-repA common Box pattern. [Code] is typically committed to the websocket and key-value elements, representing changes to the shared objects that are in the Dom are emitted.web-repSocket configurationdefaultSocketConfig:SocketConfig {host = "127.0.0.1", port = 9160, path = "/"}web-rep/Page with all the trimmings for a sharedRep Boxweb-rep(Bootstrapped base page for a web socket.web-repofficial defaultweb-rep"bidirectional websocket serving a web-repofficial default config.web-rep4Turn a configuration into a live (Codensity) CodeBoxweb-rep>Turn the default configuration into a live (Codensity) CodeBoxweb-repserve a SharedRepweb-repnon-codensity sharedRep server.web-repConvert HTML representation to Code, replacing the input section of a page.web-repConvert (typically parsed representation) to Code, replacing the output section of a page, and appending errors.web-repConvert (typically parsed representation) to Code, replacing the output section of a page, and throwing away errors.web-repStream a SharedRepweb-rep.Start on pause at normal speed and at frame 0.web-reprepresentation of a PlayConfigweb-rep/representation of the playFrame in a PlayConfigweb-rep/representation of the playSpeed in a PlayConfigweb-rep6representation of the playPause toggle in a PlayConfigweb-rep%representation of a Bool reset buttonweb-repServe an emitter controlled by a PlayConfig representation, with an explicit CodeBox.web-rep;Serve an emitter controlled by a PlayConfig representation.web-rep0{"event":{"element":"textid","value":"abcdees"}}web-repConvert  to a web-repwrite to the consoleweb-repsend arbitrary byestrings.web-rep0replace a container and run any embedded scriptsweb-rep2append to a container and run any embedded scriptsweb-rep+Double backslash newline and single quotes.web-rep"create a web socket for event dataweb-repEvent hooks that may need to be reattached given dynamic content creation.web-rep.prevent the Enter key from triggering an eventweb-repscript injection js.See  'https://ghinda.net/article/script-tags/ for why this might be needed.33 Safe-Inferred7/ +,-./0125346789:;<=>?@ABCDEFGHIJKLMNOPQRqrstuvwxyz{|}~;}~|yz{xDEFGHIJKL1253467O?@ABCMN<=>89:;./0PQ+,-R  Safe-Inferred"39web-repFor a typed dropdown example.web-rep&One of each sharedrep input instances.web-repsimple page exampleweb-reppage with localised librariesweb-repPage with separated css and js.web-rep shape parserweb-rep shape printerweb-repone of each input SharedReps  !"#$%%&'()*+,-./0123456789::;<<=>>?@ABCDEFGHIJKKLMNOOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                                                                                                               &web-rep-0.12.1.0-mljk32nWcoKJWZerP610XWeb.Rep Web.Rep.HtmlWeb.Rep.Html.Input Web.Rep.PageWeb.Rep.RenderWeb.Rep.ServerWeb.Rep.SharedWeb.Rep.BootstrapWeb.Rep.SharedRepsWeb.Rep.SocketWeb.Rep.Examples4unordered-containers-0.2.19.1-DHMK0qbheN6IF9nyoj4sKlData.HashMap.InternalHashMap'markup-parse-0.1.1-SEKTGv2jE1TKgMeR4lVM MarkupParseIndentedCompact RenderStylelibCsslibJs InputTypeSliderSliderVTextBoxTextBox'TextArea ColorPicker ChooseFileDropdownDropdownMultiple DropdownSumDatalistCheckboxToggleButtonInputinputVal inputLabelinputId inputType ToByteString toByteString markupInput$fToByteStringBool$fToByteStringFloat$fToByteStringDouble$fToByteStringInteger$fToByteStringInt$fToByteStringText$fToByteStringByteString $fEqInput $fShowInput$fGenericInput $fEqInputType$fShowInputType$fGenericInputTypeJs jsByteStringCss cssByteString PageConfigconcerns structure renderStyle filenames localdirs PageStructure HeaderBodyHeadlessSnippet PageConcernsInline SeparatedConcerns cssConcern jsConcern htmlConcernPagelibsCsslibsJscssBodyjsGlobaljsOnLoad htmlHeaderhtmlBodysuffixes concernNamesdefaultPageConfig renderCsscssColorSchemeonLoad$fApplicativeConcerns$fFunctorConcerns $fMonoidPage$fSemigroupPage $fShowPage $fGenericPage$fEqJs$fShowJs $fGenericJs $fSemigroupJs $fMonoidJs $fShowCss$fEqCss $fGenericCss$fSemigroupCss $fMonoidCss$fShowPageConfig$fEqPageConfig$fGenericPageConfig$fShowPageStructure$fEqPageStructure$fGenericPageStructure$fShowPageConcerns$fEqPageConcerns$fGenericPageConcerns $fEqConcerns$fShowConcerns$fFoldableConcerns$fTraversableConcerns$fGenericConcerns renderPagerenderPageHtmlWithrenderPageWithrenderPageToFilerenderPageHtmlToFilerenderPageAsByteString servePageWith SharedRep SharedRepFunshareRepRepFrepmakeoneRepgenName genNamePreregistermessage zeroStaterunOnce$fApplicativeRepF$fBiapplicativeRepF$fBifunctorRepF $fMonoidRepF$fSemigroupRepF$fApplicativeSharedRepF$fBiapplicativeSharedRepF$fBifunctorSharedRepF$fFunctorSharedRepF $fFunctorRepF bootstrapCss bootstrapJs bootstrapMeta bootstrapPagecardify accordionCardaccordionCardChecked accordionaccordionChecked accordion_repInput repMessageslidersliderVsliderIsliderVItextboxtextarea colorPickerdropdowndropdownMultipledatalist dropdownSumcheckboxtoggletoggle_button chooseFilemaybeRep accordionList listMaybeReplistRepdefaultListLabels readTextbox repChoice selectItemsrepItemsSelectsubtypeCodeReplaceAppendConsoleEvalVal PlayConfig playPause playSpeed playFrame CodeBoxConfig codeBoxSocket codeBoxPagecodeBoxCommitterQueuecodeBoxEmitterQueue CoCodeBoxCodeBox SocketConfighostportpath socketPagedefaultSocketPagedefaultSocketConfigserveSocketBoxdefaultCodeBoxConfig codeBoxWithcodeBoxserveRepserveRepWithBox replaceInput replaceOutputreplaceOutput_ sharedStreamdefaultPlayConfig repPlayConfigservePlayStreamWithBoxservePlayStreamcodeconsolevalreplaceappendclean webSocket refreshJsbJs preventEnter runScriptJs$fGenericCodeBoxConfig$fEqCode $fShowCode $fGenericCode $fReadCode$fEqPlayConfig$fShowPlayConfig$fGenericPlayConfig$fShowSocketConfig$fEqSocketConfig$fGenericSocketConfigShape SquareShape CircleShape RepExamples repTextbox repTextarea repSliderI repSlider repSliderVI repSliderV repCheckbox repToggle repDropdownrepDropdownMultiplerepShaperepColorpage1page2cfg2toShape fromShape repExamples$fShowRepExamples$fEqRepExamples$fGenericRepExamples $fEqShape $fShowShape$fGenericShapebytestring-0.11.3.1Data.ByteString.Internal ByteStringMarkupHtmltextbox'scriptToggleShowaccordionBoolList"box-0.9.3.1-8y32QVxo0iO1eMhYWtGAFkBox.BoxBoxrepFramerepSpeedrepPauserepResetparserJ