Skip to content

Commit 73218ab

Browse files
committed
0.0.169
1 parent 59025d5 commit 73218ab

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nasa-terra/components",
33
"description": "A collection of NASA Earthdata components",
4-
"version": "0.0.168",
4+
"version": "0.0.169",
55
"homepage": "https://github.com/nasa/terra-ui-components",
66
"author": "NASA GES DISC <https://disc.gsfc.nasa.gov>",
77
"license": "MIT",

packages/create-terra-ui-app/boilerplates/nextjs/framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function create(nextTask, outputDir, boilerplatesDir, appName) {
6767
"import { setBasePath } from '@nasa-terra/components/dist/utilities/base-path.js'"
6868

6969
// Create the setBasePath call with comments (with newline before it)
70-
const setBasePathCall = `\n/**\n * Sets the base path to the Terra UI CDN\n *\n * If you'd rather host the assets locally, you should setup a build task to copy the assets locally and\n * set the base path to your local public folder\n * (see https://terra-ui.netlify.app/frameworks/react/#installation for more information)\n */\nsetBasePath('https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.168/cdn/')`
70+
const setBasePathCall = `\n/**\n * Sets the base path to the Terra UI CDN\n *\n * If you'd rather host the assets locally, you should setup a build task to copy the assets locally and\n * set the base path to your local public folder\n * (see https://terra-ui.netlify.app/frameworks/react/#installation for more information)\n */\nsetBasePath('https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.169/cdn/')`
7171

7272
// Reconstruct the file: CSS import at top, then existing content with setBasePath import and call inserted
7373
const newLines = [...lines]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "terra_ui_components"
77
dependencies = ["anywidget>=0.9"]
8-
version = "0.0.168"
8+
version = "0.0.169"
99
readme = "README.md"
1010
description = "NASA Terra UI Components Library"
1111
requires-python = ">=3.8"

src/components/data-subsetter/notebooks/subsetter-notebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function getNotebook(host: TerraDataSubsetter) {
2121
{
2222
id: '2733501b-0de4-4067-8aff-864e1b4c76cb',
2323
cell_type: 'code',
24-
source: '%pip install -q "terra_ui_components==0.0.168" "anywidget==0.9.15"',
24+
source: '%pip install -q "terra_ui_components==0.0.169" "anywidget==0.9.15"',
2525
metadata: {
2626
trusted: true,
2727
},

src/components/plot-toolbar/notebooks/time-averaged-map-notebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function getTimeAveragedMapNotebook(host: TerraPlotToolbar) {
2121
{
2222
id: '2733501b-0de4-4067-8aff-864e1b4c76cb',
2323
cell_type: 'code',
24-
source: '%pip install -q "terra_ui_components==0.0.168" "anywidget==0.9.15" "pandas" "rasterio" "matplotlib"',
24+
source: '%pip install -q "terra_ui_components==0.0.169" "anywidget==0.9.15" "pandas" "rasterio" "matplotlib"',
2525
metadata: {
2626
trusted: true,
2727
},

src/terra_ui_components/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ def get_autoloader(cls):
1616
return f"""
1717
const terraStyles = document.createElement('link')
1818
terraStyles.rel = 'stylesheet'
19-
terraStyles.href = 'https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.168/cdn/themes/horizon.css'
19+
terraStyles.href = 'https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.169/cdn/themes/horizon.css'
2020
//terraStyles.href = "http://localhost:4000/dist/themes/horizon.css"
2121
document.head.appendChild(terraStyles)
2222
2323
const terraAutoloader = document.createElement('script')
24-
terraAutoloader.src = "https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.168/cdn/terra-ui-components-autoloader.js"
24+
terraAutoloader.src = "https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.169/cdn/terra-ui-components-autoloader.js"
2525
//terraAutoloader.src = "http://localhost:4000/dist/terra-ui-components-autoloader.js"
2626
terraAutoloader.type = 'module'
2727
document.head.appendChild(terraAutoloader)

0 commit comments

Comments
 (0)