You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a new endeavor for Caltech Library. Our practices are evolving as we develop this project. You should expected periodically make course corrections. The following documentation will highlight our approaches and techiniquess to solving the challenges of developing a web component library for libraries, archives and museums.
4
+
This is a new endeavor for Caltech Library. Our practices are evolving as we develop this project. You should expected periodically make course corrections. The following documentation will highlight our approaches and techniques to solving the challenges of developing a web component library for libraries, archives and museums.
5
+
6
+
See the [user manual](user_manual.md) for developer documentation.
5
7
6
-
-[Web Component Naming](web_component_naming.md)
7
-
-[Integrating CSS in Web Compnoents](integrating_css_in_web_components.md)
Copy file name to clipboardExpand all lines: INSTALL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ It recommended that you download the Zip file containing the individual componen
7
7
8
8
The zip files are provided for each release. They include the release number in the filename. The combined bundle includes the version, releaseDate, releaseHash and licenseText in the bundle.
9
9
10
-
Here's an example of getting the v0.0.11 `cl-web-compponents.js` combined bundled from the release on macOS or Linux.
10
+
Here's an example of getting the v0.0.11 `cl-web-components.js` combined bundled from the release on macOS or Linux.
Copy file name to clipboardExpand all lines: README.md
+21-10Lines changed: 21 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
2
2
3
-
# CL-web-components 0.0.11
3
+
# CL-web-components
4
4
5
-
CL-web-components provides a collection of Web Components used by Caltech Library in various web sites and projects.
5
+
CL-web-components provides a collection of Web Components used by Caltech Library across sites and projects.
6
6
7
7
The following are the components currently provided.
8
8
9
9
10
10
`ul-a-to-z`
11
-
: 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.
11
+
: This component takes an innerHTML containing a UL list. The UL list is then turned into an A to Z navigable UL List. If JavaScript is unavailable then the innerHTML UL remains as a fallback.
12
12
13
13
`textarea-csv`
14
14
: This is a textarea like component who's innerHTML content is CSV data. The component will display this as an editable table.
@@ -21,31 +21,42 @@ The following are the components currently provided.
21
21
22
22
## Release Notes
23
23
24
-
- version: 0.0.11
24
+
- version: 0.0.12
25
25
- status: wip
26
-
- released: 2025-07-07
26
+
- released: 2025-07-17
27
27
28
-
Renamed components to use a prefix of the standard element name they are extending.
28
+
This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions
29
+
are retained in the root of the repository. Distribution versions are generating in the `dist/` directory.
30
+
31
+
Deno 2.4.1 or better is now a requirement to build the bundled versions.
32
+
33
+
Additional documentation has been updated and improved in preparation for eventual integration into the Caltech Library design system.
34
+
The web component, `textarea-csv` now uses the `jsr:@std/csv` library which provides robust CSV support.
0 commit comments