solid-ui 3.0.0-63a1640 → 3.0.1-e8256eb

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/README.md CHANGED
@@ -132,8 +132,8 @@ Use modern JavaScript modules with `import` statements.
132
132
  <script type="module">
133
133
  // Import from CDN (esm.sh, unpkg, or jsdelivr)
134
134
  import * as $rdf from 'https://esm.sh/rdflib'
135
- import * as SolidLogic from 'https://esm.sh/solid-logic'
136
- import * as UI from 'https://esm.sh/solid-ui'
135
+ import * as SolidLogic from 'https://esm.sh/solid-logic@4.0.1'
136
+ import * as UI from 'https://esm.sh/solid-ui@3.0.1'
137
137
 
138
138
  // Get the logged-in user
139
139
  const webId = SolidLogic.authn.currentUser()
@@ -196,8 +196,8 @@ Use import maps for cleaner module specifiers:
196
196
  {
197
197
  "imports": {
198
198
  "rdflib": "https://esm.sh/rdflib",
199
- "solid-logic": "https://esm.sh/solid-logic",
200
- "solid-ui": "https://esm.sh/solid-ui"
199
+ "solid-logic": "https://esm.sh/solid-logic@4.0.1",
200
+ "solid-ui": "https://esm.sh/solid-ui@3.0.1"
201
201
  }
202
202
  }
203
203
  </script>