@taprootio/espalier 2.3.1 → 2.4.0
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/CHANGELOG.md +17 -0
- package/custom-elements.json +3241 -1519
- package/dist/data-cell/esp-data-cell.js +1 -1
- package/dist/footer/esp-footer-link-group.d.ts +40 -0
- package/dist/footer/esp-footer-link-group.js +57 -0
- package/dist/footer/esp-footer.d.ts +186 -0
- package/dist/footer/esp-footer.js +300 -0
- package/dist/footer/index.d.ts +2 -0
- package/dist/footer/index.js +1 -0
- package/dist/header/esp-header.js +10 -11
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/menu/esp-menu.d.ts +14 -1
- package/dist/menu/esp-menu.js +3 -4
- package/dist/page/esp-page.d.ts +9 -6
- package/dist/page/esp-page.js +33 -11
- package/dist/shared/configured-brand.js +4 -0
- package/dist/shared/slot-content.js +1 -0
- package/dist/slider/esp-slider.js +2 -2
- package/espalier.token-manifest.json +144 -0
- package/package.json +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taprootio/espalier",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"packageManager": "bun@1.3.12",
|
|
5
5
|
"description": "Espalier — a themeable, accessible, framework-agnostic, enterprise-grade design system built on web standards and love.",
|
|
6
6
|
"customElements": "custom-elements.json",
|
|
@@ -98,6 +98,14 @@
|
|
|
98
98
|
"types": "./dist/font-picker/esp-font-picker.d.ts",
|
|
99
99
|
"import": "./dist/font-picker/esp-font-picker.js"
|
|
100
100
|
},
|
|
101
|
+
"./footer": {
|
|
102
|
+
"types": "./dist/footer/index.d.ts",
|
|
103
|
+
"import": "./dist/footer/index.js"
|
|
104
|
+
},
|
|
105
|
+
"./footer/link-group": {
|
|
106
|
+
"types": "./dist/footer/esp-footer-link-group.d.ts",
|
|
107
|
+
"import": "./dist/footer/esp-footer-link-group.js"
|
|
108
|
+
},
|
|
101
109
|
"./form": {
|
|
102
110
|
"types": "./dist/form/esp-form.d.ts",
|
|
103
111
|
"import": "./dist/form/esp-form.js"
|
|
@@ -272,6 +280,7 @@
|
|
|
272
280
|
"sideEffects": [
|
|
273
281
|
"dist/index.js",
|
|
274
282
|
"dist/*/esp-*.js",
|
|
283
|
+
"dist/footer/index.js",
|
|
275
284
|
"dist/header/index.js",
|
|
276
285
|
"dist/menu/index.js",
|
|
277
286
|
"dist/shared/virtualizer/lit-virtualizer.js"
|