explorer: embed insurello/elm-ui-explorer as 'UIExplorer'

This commit is contained in:
Christophe de Vienne 2021-05-24 22:06:12 +02:00
parent 168d2df830
commit 79ff27bb41
6 changed files with 1581 additions and 12 deletions

View File

@ -11,24 +11,24 @@
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/json": "1.1.3",
"elm/svg": "1.0.1",
"elm/url": "1.0.0",
"elm-explorations/markdown": "1.0.0",
"ianmackenzie/elm-units": "2.9.0",
"icidasset/elm-material-icons": "8.0.0",
"insurello/elm-ui-explorer": "2.0.0",
"mdgriffith/elm-ui": "1.1.7",
"miyamoen/select-list": "4.1.0",
"noahzgordon/elm-color-extra": "1.0.2",
"turboMaCk/queue": "1.1.0"
"turboMaCk/queue": "1.1.0",
"zwilias/elm-rosetree": "1.5.0"
},
"indirect": {
"elm/json": "1.1.3",
"elm/regex": "1.0.0",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2",
"fredcy/elm-parseint": "2.0.1",
"ianmackenzie/elm-units": "2.9.0",
"zwilias/elm-rosetree": "1.5.0"
"fredcy/elm-parseint": "2.0.1"
}
},
"test-dependencies": {

View File

@ -4,9 +4,9 @@ import Element exposing (Element)
import Element.Background as Background
import Material.Icons as MaterialIcons exposing (offline_bolt)
import Material.Icons.Types exposing (Coloring(..))
import UIExplorer
import UIExplorer.Story as Story
import UIExplorer.Tile as Tile
import UiExplorer
import Widget
import Widget.Customize as Customize
import Widget.Icon as Icon exposing (Icon)

View File

@ -1,12 +1,12 @@
module Main exposing (main)
import Button
import UiExplorer
import UIExplorer
pages =
UiExplorer.firstPage "Button" Button.page
UIExplorer.firstPage "Button" Button.page
main =
UiExplorer.application UiExplorer.defaultConfig pages
UIExplorer.application UIExplorer.defaultConfig pages

1569
explorer/src/UIExplorer.elm Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,8 +4,8 @@ import Dict exposing (Dict)
import Element exposing (Attribute, Element)
import Element.Input as Input exposing (Label, Option, labelAbove, option, radio)
import SelectList exposing (SelectList)
import UIExplorer exposing (PageSize)
import UIExplorer.Tile as Tile
import UiExplorer exposing (PageSize)
type StoryInfo

View File

@ -5,7 +5,7 @@ import Element exposing (Attribute, Element)
import Element.Background as Background
import Markdown
import SelectList exposing (SelectList)
import UiExplorer exposing (Page, PageSize)
import UIExplorer exposing (Page, PageSize)
import Widget
import Widget.Customize as Customize
import Widget.Material as Material