@taprootio/espalier 2.15.1 → 2.15.3

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.
@@ -80,12 +80,10 @@ export type { CalendarDay, DatePickerMode, ParsedValue } from "./helpers/types.j
80
80
  * </script>
81
81
  * ```
82
82
  *
83
- * <esp-info variant="warning" icon="info-i">
84
- * The Temporal API must be available at runtime. If your target
85
- * browsers do not yet ship it natively, load a polyfill such as
86
- * <code>temporal-polyfill</code> in your document
87
- * <code>&lt;head&gt;</code> before using this component.
88
- * </esp-info>
83
+ * > **Runtime requirement:** The Temporal API must be available. If
84
+ * > target browsers do not yet ship it natively, load a polyfill such
85
+ * > as `temporal-polyfill` in the document `<head>` before using this
86
+ * > component.
89
87
  *
90
88
  * @event {CustomEvent<string>} value-changed - Emitted when the
91
89
  * user picks a date, time, or range. The event detail is the new
@@ -13,7 +13,7 @@ import { EspalierElementBase } from "../shared/esp-element-base.js";
13
13
  * </esp-details>
14
14
  * ```
15
15
  *
16
- * Details can have [color variants](/guides/colors/variants):
16
+ * Details can have [color variants](/espalier-guides/):
17
17
  *
18
18
  * ```html
19
19
  * <esp-details summary="Complementary variant" variant="complementary">
@@ -9,7 +9,7 @@ export type EspalierFormField = {
9
9
  /**
10
10
  * Wraps fields with label and error message functionality. For more
11
11
  * information about forms, read our
12
- * [guide work working with forms](/guides/forms).
12
+ * [guide for working with forms](/espalier-guides/#forms).
13
13
  *
14
14
  * ```html
15
15
  * <style>
@@ -116,12 +116,10 @@ export type GridLoadErrorEventDetail<T = GridRow> = GridDataStateEventDetail<T>
116
116
  * scrolls. Search and sort are delegated to the server via the
117
117
  * callback parameters.
118
118
  *
119
- * <esp-info variant="warning" icon="info-i">
120
- * Every column in an infinite-scroll grid must have an explicit
121
- * `width` attribute. Use the `grow` attribute on one or more columns
122
- * to fill remaining horizontal space when the grid is wider than its
123
- * content.
124
- * </esp-info>
119
+ * > **Warning:** Every column in an infinite-scroll grid must have an
120
+ * > explicit `width` attribute. Use the `grow` attribute on one or more
121
+ * > columns to fill remaining horizontal space when the grid is wider
122
+ * > than its content.
125
123
  *
126
124
  * ```html
127
125
  * <esp-grid page-size="50">
@@ -419,9 +417,8 @@ export declare class EspalierGrid extends EspalierElementBase {
419
417
  * filter results by fields displayed in the grid, specify those
420
418
  * fields in the `search-fields` attribute.
421
419
  *
422
- * <esp-info variant="warning" icon="info-i">
423
- * When specifying arrays in plain HTML, the attributes should be wrapped in single quotes.
424
- * </esp-info>
420
+ * > **Warning:** When specifying arrays in plain HTML, the attributes
421
+ * > should be wrapped in single quotes.
425
422
  *
426
423
  * ```html
427
424
  * <esp-grid
@@ -27,7 +27,7 @@ import { EspalierElementBase } from "../shared/esp-element-base.js";
27
27
  * </script>
28
28
  * ```
29
29
  *
30
- * Input can have [color variants](/guides/colors/variants). Here are some examples:
30
+ * Input can have [color variants](/espalier-guides/). Here are some examples:
31
31
  *
32
32
  * ```html
33
33
  * <esp-input variant="split-complementary-left"></esp-input>
@@ -34,7 +34,7 @@ export declare class EspalierElementBase extends LitElement implements SeedColor
34
34
  */
35
35
  scheme: "dark" | "light" | "";
36
36
  /**
37
- * The [color variant](/guides/color/variants) of the element.
37
+ * The [color variant](/espalier-guides/) of the element.
38
38
  * @type {EspalierVariant}
39
39
  */
40
40
  get variant(): EspalierVariant;
@@ -22,7 +22,7 @@ import { EspalierElementBase } from "../shared/esp-element-base.js";
22
22
  * </script>
23
23
  * ```
24
24
  *
25
- * Textarea can have [color variants](/guides/colors/variants).
25
+ * Textarea can have [color variants](/espalier-guides/).
26
26
  * Here are some examples:
27
27
  *
28
28
  * ```html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taprootio/espalier",
3
- "version": "2.15.1",
3
+ "version": "2.15.3",
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",