diff --git a/components/input/list-binder.go b/components/input/list-binder.go index 89e723a..b31be7d 100644 --- a/components/input/list-binder.go +++ b/components/input/list-binder.go @@ -2,9 +2,8 @@ package input import ( "fmt" + "slices" "strconv" - - "golang.org/x/exp/slices" ) // ListBinder describes an interface that simple lists can implement to be compatible with list based UI components. diff --git a/components/input/tags.go b/components/input/tags.go index 467db53..84959f7 100644 --- a/components/input/tags.go +++ b/components/input/tags.go @@ -1,10 +1,10 @@ package input import ( + "slices" "strconv" "github.com/vugu/vugu" - "golang.org/x/exp/slices" ) // Tags provides a way for the user to add/remove entries from a slice. diff --git a/components/overlay/container.go b/components/overlay/container.go index 23bcc93..1319581 100644 --- a/components/overlay/container.go +++ b/components/overlay/container.go @@ -1,12 +1,12 @@ package overlay import ( + "slices" "sync/atomic" "time" "git.d3nexus.de/Dadido3/D3vugu-components/components/navigation" "github.com/vugu/vugu" - "golang.org/x/exp/slices" ) // Container can be embedded in your root component and provides a way to show overlays like modals and toasts. diff --git a/go.mod b/go.mod index 7ad5a07..dce7e00 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,6 @@ require ( github.com/vugu/vgrouter v0.0.0-20200725205318-eeb478c42e5d github.com/vugu/vjson v0.0.0-20200505061711-f9cbed27d3d9 github.com/vugu/vugu v0.4.0 - golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b ) require ( diff --git a/go.sum b/go.sum index 9370cc5..aa385f8 100644 --- a/go.sum +++ b/go.sum @@ -35,8 +35,6 @@ github.com/vugu/vugu v0.4.0/go.mod h1:JU3YFROwFOqodkf1q8c1IRcx92j/dq258cqpaCsDlM github.com/vugu/xxhash v0.0.0-20191111030615-ed24d0179019 h1:8NGiD5gWbVGObr+lnqcbM2rcOQBO6mr+m19BIblCdho= github.com/vugu/xxhash v0.0.0-20191111030615-ed24d0179019/go.mod h1:PrBK6+LJXwb+3EnJTHo43Uh4FhjFFwvN4jKk4Zc5zZ8= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b h1:DXr+pvt3nC887026GRP39Ej11UATqWDmWuS99x26cD0= -golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b/go.mod h1:4QTo5u+SEIbbKW1RacMZq1YEfOBqeXa19JeshGi+zc4= golang.org/x/net v0.0.0-20190912160710-24e19bdeb0f2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=