Skip to content

Commit 49b30e3

Browse files
author
R. S. Doiel
committed
prep for v0.0.7, The files for the web components were normalized around the web componant name. - csvtextaraa.js became csv-textarea.js for '<csv-textarea></csv-textarea>' - a-to-z-ul.js became a-to-z-list.js for '<a-to-z-list></a-to-z-list>' Observer method setup was added to '<a-to-z-list>'. '<csv-textarea>' was updated with a form setup and observer method setup.
1 parent 84d50d8 commit 49b30e3

11 files changed

+31
-16
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ contacts:
2727
2828

2929
repository-code: "https://github.com/caltechlibrary/CL-web-components"
30-
version: 0.0.6
31-
date-released: 2025-05-13
30+
version: 0.0.7
31+
date-released: 2025-06-20
3232

3333
license-url: "https://caltechlibrary.github.io/CL-web-components/LICENSE"
3434
keywords:

about.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,18 @@
1919
</nav>
2020
<section>
2121
<h1 id="about-this-software">About this software</h1>
22-
<h2 id="cl-web-components-0.0.6">CL-web-components 0.0.6</h2>
23-
<p>This release includes a new web component called `sortable-table`.
24-
The web component wraps an HTML table element and makes the table
25-
sortable by columns and provides a filter search input based on column
26-
value.</p>
22+
<h2 id="cl-web-components-0.0.7">CL-web-components 0.0.7</h2>
23+
<p>The files for the web components were normalized around the web
24+
componant name.</p>
25+
<ul>
26+
<li>csvtextaraa.js became csv-textarea.js for
27+
`&lt;csv-textarea&gt;&lt;/csv-textarea&gt;`</li>
28+
<li>a-to-z-ul.js became a-to-z-list.js for
29+
`&lt;a-to-z-list&gt;&lt;/a-to-z-list&gt;`</li>
30+
</ul>
31+
<p>Observer method setup was added to `&lt;a-to-z-list&gt;`.
32+
`&lt;csv-textarea&gt;` was updated with a form setup and observer method
33+
setup.</p>
2734
<h3 id="authors">Authors</h3>
2835
<ul>
2936
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"

about.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ maintainer:
2626
id: https://orcid.org/0000-0003-0900-6903
2727

2828
repository_code: https://github.com/caltechlibrary/CL-web-components
29-
version: 0.0.6
29+
version: 0.0.7
3030
license_url: https://caltechlibrary.github.io/CL-web-components/LICENSE
3131

3232
programming_language:
@@ -41,15 +41,20 @@ keywords:
4141
- ES6
4242
- Web Components
4343

44-
date_released: 2025-05-13
44+
date_released: 2025-06-20
4545
---
4646

4747
About this software
4848
===================
4949

50-
## CL-web-components 0.0.6
50+
## CL-web-components 0.0.7
5151

52-
This release includes a new web component called &#x60;sortable-table&#x60;. The web component wraps an HTML table element and makes the table sortable by columns and provides a filter search input based on column value.
52+
The files for the web components were normalized around the web componant name.
53+
54+
- csvtextaraa.js became csv-textarea.js for &#x60;&lt;csv-textarea&gt;&lt;/csv-textarea&gt;&#x60;
55+
- a-to-z-ul.js became a-to-z-list.js for &#x60;&lt;a-to-z-list&gt;&lt;/a-to-z-list&gt;&#x60;
56+
57+
Observer method setup was added to &#x60;&lt;a-to-z-list&gt;&#x60;. &#x60;&lt;csv-textarea&gt;&#x60; was updated with a form setup and observer method setup.
5358

5459
### Authors
5560

@@ -92,3 +97,6 @@ One additional helper module is currently provided, &#x60;parseCSV.js&#x60;, tha
9297

9398

9499

100+
101+
102+

codemeta.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
}
2929
],
3030
"dateCreated": "2025-02-26",
31-
"dateModified": "2025-05-13",
32-
"datePublished": "2025-05-13",
31+
"dateModified": "2025-06-20",
32+
"datePublished": "2025-06-20",
3333
"description": "CL-web-components provides a collection of Web Components used by Caltech Library in various web sites and projects.\n\nThe following are the components currently provided.\n\n`csv-textarea`\n: This is a textarea like component who's innerHTML content is CSV data. The component will display this as an editable table. \n\n`a-to-z-ul`\n: This component takes an innerHTML containing a UL list. The UL list is then turned into an A to Z navigatable UL List. If JavaScript is unavailable then the innerHTML UL remains as a fallback.\n\nOne additional helper module is currently provided, `parseCSV.js`, that provides stringify and parse functions for CSV rows and strings.",
3434
"funder": [
3535
"Caltech Library"
@@ -53,11 +53,11 @@
5353
"https://github.com/caltechlibrary/a_to_z_ul"
5454
],
5555
"runtimePlatform": "- HTML5-compatible web browser",
56-
"version": "0.0.6",
56+
"version": "0.0.7",
5757
"developmentStatus": "wip",
5858
"issueTracker": "https://github.com/caltechlibrary/CL-web-components/issues",
5959
"downloadUrl": "https://github.com/caltechlibrary/CL-web-components/releases",
60-
"releaseNotes": "This release includes a new web component called `sortable-table`. The web component wraps an HTML table element and makes the table sortable by columns and provides a filter search input based on column value.",
60+
"releaseNotes": "The files for the web components were normalized around the web componant name.\n\n- csvtextaraa.js became csv-textarea.js for `<csv-textarea></csv-textarea>`\n- a-to-z-ul.js became a-to-z-list.js for `<a-to-z-list></a-to-z-list>`\n\nObserver method setup was added to `<a-to-z-list>`. `<csv-textarea>` was updated with a form setup and observer method setup.",
6161
"copyrightYear": 2025,
6262
"copyrightHolder": "California Institute of Technology"
6363
}
211 Bytes
Binary file not shown.
892 Bytes
Binary file not shown.
20.1 KB
Binary file not shown.
20.1 KB
Binary file not shown.

pagefind/pagefind-entry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.3.0","languages":{"en-US":{"hash":"en-US_523ef2cdeebe7","wasm":"en-US","page_count":32}}}
1+
{"version":"1.3.0","languages":{"en-US":{"hash":"en-US_d1c1792545a6f","wasm":"en-US","page_count":32}}}
329 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)