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
prep for v0.0.14, This release includes a re-organization of the project source code. Editable code is now maintained in 'src/'. The bundled versions are retained in the root of the repository. Distribution versions are generating in the 'dist/' directory. Deno 2.4.3 or better is now a requirement to build the bundled versions. Two new web components are now included, '<footer-global></footer-global>' and '<footer-global-lite></footer-global-lite>'. A new CSS file was added, 'css/code-blocks.css' and JavaScript modules, 'copyToClipboard.js' for enhancing codeblocks.
Copy file name to clipboardExpand all lines: CITATION.cff
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ abstract: "CL-web-components provides a collection of Web Components used by Cal
7
7
8
8
The following are the components currently provided.
9
9
10
+
`footer-global`
11
+
: This component provides a standard footer with detailed information about the library
12
+
13
+
`footer-global-lite`
14
+
: This component provides a lighter weight version of the `footer-global` component
10
15
11
16
`ul-a-to-z`
12
17
: 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.
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,17 +26,19 @@ The following are the components currently provided.
26
26
27
27
## Release Notes
28
28
29
-
- version: 0.0.13
29
+
- version: 0.0.14
30
30
- status: wip
31
-
- released: 2025-07-25
31
+
- released: 2025-08-25
32
32
33
33
This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions
34
34
are retained in the root of the repository. Distribution versions are generating in the `dist/` directory.
35
35
36
-
Deno 2.4.2 or better is now a requirement to build the bundled versions.
36
+
Deno 2.4.3 or better is now a requirement to build the bundled versions.
37
37
38
38
Two new web components are now included, `<footer-global></footer-global>` and `<footer-global-lite></footer-global-lite>`.
39
39
40
+
A new CSS file was added, `css/code-blocks.css` and JavaScript modules, `copyToClipboard.js` for enhancing codeblocks.
41
+
40
42
41
43
### Authors
42
44
@@ -51,11 +53,11 @@ Two new web components are now included, `<footer-global></footer-
Copy file name to clipboardExpand all lines: about.md
+31-22Lines changed: 31 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,22 @@ abstract: "CL-web-components provides a collection of Web Components used by Cal
4
4
5
5
The following are the components currently provided.
6
6
7
+
`footer-global`
8
+
: This component provides a standard footer with detailed information about the library
7
9
8
-
`ul-a-to-z`
10
+
`footer-global-lite`
11
+
: This component provides a lighter weight version of the `footer-global` component
12
+
13
+
`ul-a-to-z`
9
14
: 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.
10
15
11
-
`textarea-csv`
16
+
`textarea-csv`
12
17
: This is a textarea like component who's innerHTML content is CSV data. The component will display this as an editable table.
13
18
14
-
`textarea-agent-list`
19
+
`textarea-agent-list`
15
20
: This element wraps a textarea containing a list of agents expressed as JSON.
16
21
17
-
`table-sortable`
22
+
`table-sortable`
18
23
: This is a component that takes an innerHTML containing table. It makes the table sortable by the column headings and provides a filter input that lets you enter text to filter by and pick a column to filter on."
This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions
63
+
are retained in the root of the repository. Distribution versions are generating in the `dist/` directory.
56
64
57
-
This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions
58
-
are retained in the root of the repository. Distribution versions are generating in the `dist/` directory.
65
+
Deno 2.4.3 or better is now a requirement to build the bundled versions.
59
66
60
-
Deno 2.4.2 or better is now a requirement to build the bundled versions.
67
+
Two new web components are now included, `<footer-global></footer-global>` and `<footer-global-lite></footer-global-lite>`.
61
68
62
-
Two new web components are now included, `<footer-global></footer-global>` and `<footer-global-lite></footer-global-lite>`.
69
+
A new CSS file was added, `css/code-blocks.css` and JavaScript modules, `copyToClipboard.js` for enhancing codeblocks.
63
70
64
71
### Authors
65
72
@@ -78,22 +85,24 @@ CL-web-components provides a collection of Web Components used by Caltech Librar
78
85
79
86
The following are the components currently provided.
80
87
88
+
`footer-global`
89
+
: This component provides a standard footer with detailed information about the library
81
90
82
-
`ul-a-to-z`
91
+
`footer-global-lite`
92
+
: This component provides a lighter weight version of the `footer-global` component
93
+
94
+
`ul-a-to-z`
83
95
: 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.
84
96
85
-
`textarea-csv`
97
+
`textarea-csv`
86
98
: This is a textarea like component who's innerHTML content is CSV data. The component will display this as an editable table.
87
99
88
-
`textarea-agent-list`
100
+
`textarea-agent-list`
89
101
: This element wraps a textarea containing a list of agents expressed as JSON.
90
102
91
-
`table-sortable`
103
+
`table-sortable`
92
104
: This is a component that takes an innerHTML containing table. It makes the table sortable by the column headings and provides a filter input that lets you enter text to filter by and pick a column to filter on.
93
105
94
-
`global-footer`
95
-
: This provides a library branded footer for library-maintained applications. Provides a full footer and a lite version, both with content customizations available per application.
Copy file name to clipboardExpand all lines: codemeta.json
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -28,8 +28,8 @@
28
28
}
29
29
],
30
30
"dateCreated": "2025-02-26",
31
-
"dateModified": "2025-07-25",
32
-
"datePublished": "2025-07-25",
31
+
"dateModified": "2025-08-05",
32
+
"datePublished": "2025-08-25",
33
33
"description": "CL-web-components provides a collection of Web Components used by Caltech Library across sites and projects.\n\nThe following are the components currently provided.\n\n`footer-global`\n: This component provides a standard footer with detailed information about the library\n\n`footer-global-lite`\n: This component provides a lighter weight version of the `footer-global` component\n\n`ul-a-to-z`\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\n`textarea-csv`\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`textarea-agent-list`\n: This element wraps a textarea containing a list of agents expressed as JSON. \n\n`table-sortable`\n: This is a component that takes an innerHTML containing table. It makes the table sortable by the column headings and provides a filter input that lets you enter text to filter by and pick a column to filter on.",
34
34
"funder": [
35
35
"Caltech Library"
@@ -54,18 +54,18 @@
54
54
],
55
55
"runtimePlatform": "HTML5-compatible web browser",
"releaseNotes": "This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions\nare retained in the root of the repository. Distribution versions are generating in the `dist/` directory.\n\nDeno 2.4.2 or better is now a requirement to build the bundled versions.\n\nTwo new web components are now included, `<footer-global></footer-global>` and `<footer-global-lite></footer-global-lite>`.",
68
+
"releaseNotes": "This release includes a re-organization of the project source code. Editable code is now maintained in `src/`. The bundled versions\nare retained in the root of the repository. Distribution versions are generating in the `dist/` directory.\n\nDeno 2.4.3 or better is now a requirement to build the bundled versions.\n\nTwo new web components are now included, `<footer-global></footer-global>` and `<footer-global-lite></footer-global-lite>`.\n\nA new CSS file was added, `css/code-blocks.css` and JavaScript modules, `copyToClipboard.js` for enhancing codeblocks.",
69
69
"copyrightYear": 2025,
70
70
"copyrightHolder": "California Institute of Technology"
0 commit comments