@taprootio/espalier 2.18.0 → 2.19.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/custom-elements.json +3863 -3180
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/root/esp-root.d.ts +8 -0
- package/dist/root/esp-root.js +2 -2
- package/dist/root/helpers/compute-theme-properties.js +1 -1
- package/dist/shared/color-engine.js +1 -1
- package/dist/shared/data-colors.d.ts +122 -0
- package/dist/shared/data-colors.js +1 -0
- package/dist/shared/theme.d.ts +23 -2
- package/dist/shared/theme.js +1 -1
- package/espalier.css-data.json +32 -0
- package/espalier.token-manifest.json +49 -1
- package/package.json +5 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version":
|
|
2
|
+
"version": 2,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"name": "--esp-action-menu-background",
|
|
@@ -331,6 +331,46 @@
|
|
|
331
331
|
"category": "root-theme",
|
|
332
332
|
"description": ""
|
|
333
333
|
},
|
|
334
|
+
{
|
|
335
|
+
"name": "--esp-color-series-1",
|
|
336
|
+
"category": "root-theme",
|
|
337
|
+
"description": "First categorical data-series color."
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "--esp-color-series-2",
|
|
341
|
+
"category": "root-theme",
|
|
342
|
+
"description": "Second categorical data-series color."
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "--esp-color-series-3",
|
|
346
|
+
"category": "root-theme",
|
|
347
|
+
"description": "Third categorical data-series color."
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "--esp-color-series-4",
|
|
351
|
+
"category": "root-theme",
|
|
352
|
+
"description": "Fourth categorical data-series color."
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "--esp-color-series-5",
|
|
356
|
+
"category": "root-theme",
|
|
357
|
+
"description": "Fifth categorical data-series color."
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "--esp-color-series-6",
|
|
361
|
+
"category": "root-theme",
|
|
362
|
+
"description": "Sixth categorical data-series color."
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "--esp-color-series-7",
|
|
366
|
+
"category": "root-theme",
|
|
367
|
+
"description": "Seventh categorical data-series color."
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "--esp-color-series-8",
|
|
371
|
+
"category": "root-theme",
|
|
372
|
+
"description": "Eighth categorical data-series color."
|
|
373
|
+
},
|
|
334
374
|
{
|
|
335
375
|
"name": "--esp-color-shadow",
|
|
336
376
|
"category": "root-theme",
|
|
@@ -2455,5 +2495,13 @@
|
|
|
2455
2495
|
"category": "root-theme",
|
|
2456
2496
|
"description": ""
|
|
2457
2497
|
}
|
|
2498
|
+
],
|
|
2499
|
+
"patterns": [
|
|
2500
|
+
{
|
|
2501
|
+
"template": "--esp-color-ramp-<name>-<step>",
|
|
2502
|
+
"pattern": "^--esp-color-ramp-[a-z][a-z0-9-]*-(?:[1-9]|1[01])$",
|
|
2503
|
+
"category": "root-theme",
|
|
2504
|
+
"description": "A generated data-ramp stop. <name> is a declared dataRamps slug and <step> is 1 through that ramp's configured step count (maximum 11)."
|
|
2505
|
+
}
|
|
2458
2506
|
]
|
|
2459
2507
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taprootio/espalier",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.19.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",
|
|
@@ -266,6 +266,10 @@
|
|
|
266
266
|
"types": "./dist/shared/theme.d.ts",
|
|
267
267
|
"import": "./dist/shared/theme.js"
|
|
268
268
|
},
|
|
269
|
+
"./shared/data-colors": {
|
|
270
|
+
"types": "./dist/shared/data-colors.d.ts",
|
|
271
|
+
"import": "./dist/shared/data-colors.js"
|
|
272
|
+
},
|
|
269
273
|
"./shared/font-helpers": {
|
|
270
274
|
"types": "./dist/shared/font-helpers.d.ts",
|
|
271
275
|
"import": "./dist/shared/font-helpers.js"
|