@latty-ds/web 0.2.0 → 0.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/custom-elements.json +877 -503
- package/dist/components/accordion/index.js +1 -1
- package/dist/components/avatar/index.js +1 -1
- package/dist/components/checkbox/checkbox.d.ts +7 -5
- package/dist/components/checkbox/index.js +22 -9
- package/dist/components/color-input/color-input.d.ts +17 -0
- package/dist/components/color-input/index.js +32 -4
- package/dist/components/combobox/combobox.d.ts +8 -1
- package/dist/components/combobox/index.js +26 -7
- package/dist/components/date-input/date-input.d.ts +7 -0
- package/dist/components/date-input/index.js +24 -5
- package/dist/components/datepicker/datepicker.d.ts +8 -0
- package/dist/components/datepicker/index.js +27 -7
- package/dist/components/dialog/dialog.d.ts +4 -2
- package/dist/components/dialog/index.js +5 -12
- package/dist/components/divider/index.js +1 -1
- package/dist/components/nav/index.js +2 -2
- package/dist/components/progress/index.js +2 -2
- package/dist/components/radio/index.js +24 -4
- package/dist/components/radio/radio.d.ts +7 -0
- package/dist/components/radio-group/index.js +3 -3
- package/dist/components/select/index.js +28 -9
- package/dist/components/select/select.d.ts +11 -3
- package/dist/components/sidepanel/index.js +1 -1
- package/dist/components/slider/index.js +17 -4
- package/dist/components/slider/slider.d.ts +6 -0
- package/dist/components/switch/index.js +24 -4
- package/dist/components/switch/switch.d.ts +7 -0
- package/dist/components/tab/index.js +2 -2
- package/dist/components/tab-group/index.js +3 -3
- package/dist/components/textfield/index.js +26 -4
- package/dist/components/textfield/textfield.d.ts +11 -0
- package/dist/index.cjs +269 -83
- package/dist/index.js +269 -83
- package/dist/manifest.json +140 -116
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -2,6 +2,197 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "src/components/alert/alert.styles.ts",
|
|
8
|
+
"declarations": [
|
|
9
|
+
{
|
|
10
|
+
"kind": "variable",
|
|
11
|
+
"name": "alertStyles",
|
|
12
|
+
"default": "css` :host { display: block; font-family: 'Hanken Grotesk', sans-serif; opacity: 1; transform: translateY(0); transition: opacity 200ms ease, transform 200ms ease; /* Default variant tokens — public props override first, then variant defaults */ --_bg-subtle: var(--lt-alert-bg, var(--lt-bg-neutral-subtle)); --_bg-solid: var(--lt-alert-bg, var(--lt-bg-inverse)); --_border: var(--lt-alert-border-color, var(--lt-border-strong)); --_color: var(--lt-alert-color, var(--lt-text-default)); --_color-solid: var(--lt-alert-color, var(--lt-text-inverse)); } :host([dismissed]) { opacity: 0; transform: translateY(-4px); } /* ── Per-variant tokens ──────────────────────────────────── */ :host([variant='success']) { --_bg-subtle: var(--lt-alert-bg, var(--lt-bg-success-subtle)); --_bg-solid: var(--lt-alert-bg, var(--lt-bg-success)); --_border: var(--lt-alert-border-color, var(--lt-border-success-strong)); --_color: var(--lt-alert-color, var(--lt-text-success)); --_color-solid: var(--lt-alert-color, var(--lt-text-on-success)); } :host([variant='warning']) { --_bg-subtle: var(--lt-alert-bg, var(--lt-bg-warning-subtle)); --_bg-solid: var(--lt-alert-bg, var(--lt-bg-warning)); --_border: var(--lt-alert-border-color, var(--lt-border-warning-strong)); --_color: var(--lt-alert-color, var(--lt-text-warning)); --_color-solid: var(--lt-alert-color, var(--lt-text-on-warning)); } :host([variant='error']) { --_bg-subtle: var(--lt-alert-bg, var(--lt-bg-error-subtle)); --_bg-solid: var(--lt-alert-bg, var(--lt-bg-error)); --_border: var(--lt-alert-border-color, var(--lt-border-error-strong)); --_color: var(--lt-alert-color, var(--lt-text-error)); --_color-solid: var(--lt-alert-color, var(--lt-text-on-error)); } :host([variant='info']) { --_bg-subtle: var(--lt-alert-bg, var(--lt-bg-info-subtle)); --_bg-solid: var(--lt-alert-bg, var(--lt-bg-info)); --_border: var(--lt-alert-border-color, var(--lt-border-info-strong)); --_color: var(--lt-alert-color, var(--lt-text-info)); --_color-solid: var(--lt-alert-color, var(--lt-text-on-info)); } /* ── Layout ──────────────────────────────────────────────── */ .inner { align-items: flex-start; border-radius: var(--lt-border-radius); display: flex; gap: var(--lt-spacing-3); padding: var(--lt-spacing-3) var(--lt-spacing-4); } /* ── Appearances ─────────────────────────────────────────── */ /* filled (default) — subtle tinted bg + full border */ :host([appearance='filled']) .inner, :host(:not([appearance])) .inner { background: var(--_bg-subtle); border: 1px solid var(--_border); color: var(--_color); } /* outlined — white bg + colored border */ :host([appearance='outlined']) .inner { background: var(--lt-bg-default); border: 1px solid var(--_border); color: var(--_color); } /* solid — solid color bg, no border */ :host([appearance='solid']) .inner { background: var(--_bg-solid); border: none; color: var(--_color-solid); } /* ── Icon ────────────────────────────────────────────────── */ .icon { flex-shrink: 0; font-size: 1.125rem; margin-top: 1px; } /* ── Body ────────────────────────────────────────────────── */ .body { flex: 1; min-width: 0; } .title { margin: 0 0 var(--lt-spacing-1); } .content { font-size: 0.875rem; line-height: 1.5; } .title + .content { opacity: 0.8; } /* ── Close button ────────────────────────────────────────── */ .close { flex-shrink: 0; margin-top: 1px; opacity: 0.7; } .close:hover { opacity: 1; } :host([uppercase]) .title::part(base) { font-variant-caps: small-caps; letter-spacing: 0.05rem; text-transform: lowercase; } `"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"exports": [
|
|
16
|
+
{
|
|
17
|
+
"kind": "js",
|
|
18
|
+
"name": "alertStyles",
|
|
19
|
+
"declaration": {
|
|
20
|
+
"name": "alertStyles",
|
|
21
|
+
"module": "src/components/alert/alert.styles.ts"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"kind": "javascript-module",
|
|
28
|
+
"path": "src/components/alert/alert.ts",
|
|
29
|
+
"declarations": [
|
|
30
|
+
{
|
|
31
|
+
"kind": "class",
|
|
32
|
+
"description": "Inline notification for persistent contextual feedback.",
|
|
33
|
+
"name": "Alert",
|
|
34
|
+
"slots": [
|
|
35
|
+
{
|
|
36
|
+
"description": "Alert body. Accepts any HTML — bold, links, lists, etc.",
|
|
37
|
+
"name": ""
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"members": [
|
|
41
|
+
{
|
|
42
|
+
"kind": "field",
|
|
43
|
+
"name": "styles",
|
|
44
|
+
"static": true,
|
|
45
|
+
"default": "alertStyles"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"kind": "field",
|
|
49
|
+
"name": "variant",
|
|
50
|
+
"type": {
|
|
51
|
+
"text": "AlertVariant"
|
|
52
|
+
},
|
|
53
|
+
"default": "'default'",
|
|
54
|
+
"description": "Visual style."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"kind": "field",
|
|
58
|
+
"name": "appearance",
|
|
59
|
+
"type": {
|
|
60
|
+
"text": "AlertAppearance"
|
|
61
|
+
},
|
|
62
|
+
"default": "'filled'",
|
|
63
|
+
"description": "Visual treatment. `filled` uses a tinted background with border, `outlined` uses a white background with border, `solid` uses a solid color background with no border."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"kind": "field",
|
|
67
|
+
"name": "title",
|
|
68
|
+
"type": {
|
|
69
|
+
"text": "string"
|
|
70
|
+
},
|
|
71
|
+
"default": "''",
|
|
72
|
+
"description": "Optional bold heading above the body content."
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"kind": "field",
|
|
76
|
+
"name": "icon",
|
|
77
|
+
"type": {
|
|
78
|
+
"text": "string"
|
|
79
|
+
},
|
|
80
|
+
"default": "''",
|
|
81
|
+
"description": "Icon to show before the body. Leave empty for auto (shows variant icon for status variants),\nset to `\"none\"` to suppress, or pass any icon name to override."
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"kind": "field",
|
|
85
|
+
"name": "closable",
|
|
86
|
+
"type": {
|
|
87
|
+
"text": "boolean"
|
|
88
|
+
},
|
|
89
|
+
"default": "false",
|
|
90
|
+
"description": "Show a dismiss button. Clicking it fires lt-close and removes the element."
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"kind": "field",
|
|
94
|
+
"name": "background",
|
|
95
|
+
"type": {
|
|
96
|
+
"text": "string"
|
|
97
|
+
},
|
|
98
|
+
"default": "''",
|
|
99
|
+
"description": "Background color override. Accepts a hex value (#1a1a2e) or a CSS token name (--lt-color-primary-600)."
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"kind": "field",
|
|
103
|
+
"name": "uppercase",
|
|
104
|
+
"type": {
|
|
105
|
+
"text": "boolean"
|
|
106
|
+
},
|
|
107
|
+
"default": "false",
|
|
108
|
+
"description": "Renders the title in small caps with wider letter spacing."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"kind": "field",
|
|
112
|
+
"name": "_iconMap",
|
|
113
|
+
"type": {
|
|
114
|
+
"text": "Record<AlertVariant, string>"
|
|
115
|
+
},
|
|
116
|
+
"privacy": "private",
|
|
117
|
+
"static": true,
|
|
118
|
+
"readonly": true,
|
|
119
|
+
"default": "{ default: 'info-circle', success: 'check-circle', warning: 'warning-triangle', error: 'xmark-circle', info: 'info-circle' }"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"kind": "method",
|
|
123
|
+
"name": "_handleClose",
|
|
124
|
+
"privacy": "private"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"kind": "field",
|
|
128
|
+
"name": "_resolvedIcon",
|
|
129
|
+
"type": {
|
|
130
|
+
"text": "string"
|
|
131
|
+
},
|
|
132
|
+
"privacy": "private",
|
|
133
|
+
"readonly": true
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"kind": "method",
|
|
137
|
+
"name": "render"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"events": [
|
|
141
|
+
{
|
|
142
|
+
"description": "Fired when the dismiss button is clicked, just before the element is removed.",
|
|
143
|
+
"name": "close"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"superclass": {
|
|
147
|
+
"name": "ThemeableElement",
|
|
148
|
+
"module": "/src/base"
|
|
149
|
+
},
|
|
150
|
+
"tagName": "lt-alert",
|
|
151
|
+
"customElement": true
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"exports": [
|
|
155
|
+
{
|
|
156
|
+
"kind": "js",
|
|
157
|
+
"name": "Alert",
|
|
158
|
+
"declaration": {
|
|
159
|
+
"name": "Alert",
|
|
160
|
+
"module": "src/components/alert/alert.ts"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"kind": "javascript-module",
|
|
167
|
+
"path": "src/components/alert/index.ts",
|
|
168
|
+
"declarations": [],
|
|
169
|
+
"exports": [
|
|
170
|
+
{
|
|
171
|
+
"kind": "js",
|
|
172
|
+
"name": "Alert",
|
|
173
|
+
"declaration": {
|
|
174
|
+
"name": "Alert",
|
|
175
|
+
"module": "./alert"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"kind": "js",
|
|
180
|
+
"name": "AlertVariant",
|
|
181
|
+
"declaration": {
|
|
182
|
+
"name": "AlertVariant",
|
|
183
|
+
"module": "./alert.types"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"kind": "js",
|
|
188
|
+
"name": "AlertAppearance",
|
|
189
|
+
"declaration": {
|
|
190
|
+
"name": "AlertAppearance",
|
|
191
|
+
"module": "./alert.types"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
},
|
|
5
196
|
{
|
|
6
197
|
"kind": "javascript-module",
|
|
7
198
|
"path": "src/components/avatar/avatar.styles.ts",
|
|
@@ -546,191 +737,183 @@
|
|
|
546
737
|
},
|
|
547
738
|
{
|
|
548
739
|
"kind": "javascript-module",
|
|
549
|
-
"path": "src/components/
|
|
740
|
+
"path": "src/components/breadcrumb/breadcrumb.styles.ts",
|
|
550
741
|
"declarations": [
|
|
551
742
|
{
|
|
552
743
|
"kind": "variable",
|
|
553
|
-
"name": "
|
|
554
|
-
"default": "css` :host { display: block;
|
|
744
|
+
"name": "breadcrumbStyles",
|
|
745
|
+
"default": "css` :host { display: block; } [part='list'] { align-items: center; display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 0; } `"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"kind": "variable",
|
|
749
|
+
"name": "breadcrumbItemStyles",
|
|
750
|
+
"default": "css` :host { align-items: center; display: inline-flex; font-family: var(--lt-typography-fontfamily); font-size: 0.875rem; } [part='link'] { color: var(--lt-interactive-primary-bg); text-decoration: none; transition: color 120ms ease; } [part='link']:hover { color: var(--lt-interactive-primary-bg-hover); text-decoration: underline; } [part='text'] { color: var(--lt-text-default); font-weight: 600; } [part='separator'] { color: var(--lt-text-muted); margin-inline: var(--lt-spacing-2); user-select: none; } [part='separator']::after { content: var(--lt-breadcrumb-separator, '/'); } :host(:last-child) [part='separator'] { display: none; } `"
|
|
555
751
|
}
|
|
556
752
|
],
|
|
557
753
|
"exports": [
|
|
558
754
|
{
|
|
559
755
|
"kind": "js",
|
|
560
|
-
"name": "
|
|
756
|
+
"name": "breadcrumbStyles",
|
|
561
757
|
"declaration": {
|
|
562
|
-
"name": "
|
|
563
|
-
"module": "src/components/
|
|
758
|
+
"name": "breadcrumbStyles",
|
|
759
|
+
"module": "src/components/breadcrumb/breadcrumb.styles.ts"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"kind": "js",
|
|
764
|
+
"name": "breadcrumbItemStyles",
|
|
765
|
+
"declaration": {
|
|
766
|
+
"name": "breadcrumbItemStyles",
|
|
767
|
+
"module": "src/components/breadcrumb/breadcrumb.styles.ts"
|
|
564
768
|
}
|
|
565
769
|
}
|
|
566
770
|
]
|
|
567
771
|
},
|
|
568
772
|
{
|
|
569
773
|
"kind": "javascript-module",
|
|
570
|
-
"path": "src/components/
|
|
774
|
+
"path": "src/components/breadcrumb/breadcrumb.ts",
|
|
571
775
|
"declarations": [
|
|
572
776
|
{
|
|
573
777
|
"kind": "class",
|
|
574
|
-
"description": "
|
|
575
|
-
"name": "
|
|
576
|
-
"slots": [
|
|
577
|
-
{
|
|
578
|
-
"description": "Alert body. Accepts any HTML — bold, links, lists, etc.",
|
|
579
|
-
"name": ""
|
|
580
|
-
}
|
|
581
|
-
],
|
|
778
|
+
"description": "Navigation breadcrumb trail container.\nPlace `lt-breadcrumb-item` elements inside as direct children.",
|
|
779
|
+
"name": "Breadcrumb",
|
|
582
780
|
"members": [
|
|
583
781
|
{
|
|
584
782
|
"kind": "field",
|
|
585
783
|
"name": "styles",
|
|
586
784
|
"static": true,
|
|
587
|
-
"default": "
|
|
785
|
+
"default": "breadcrumbStyles"
|
|
588
786
|
},
|
|
589
787
|
{
|
|
590
788
|
"kind": "field",
|
|
591
|
-
"name": "
|
|
789
|
+
"name": "separator",
|
|
592
790
|
"type": {
|
|
593
|
-
"text": "
|
|
791
|
+
"text": "string"
|
|
594
792
|
},
|
|
595
|
-
"default": "'
|
|
596
|
-
"description": "
|
|
793
|
+
"default": "'/'",
|
|
794
|
+
"description": "The character or element to use as a separator between breadcrumb items.\nThis is passed down to all children items via CSS variables."
|
|
597
795
|
},
|
|
598
796
|
{
|
|
599
|
-
"kind": "
|
|
600
|
-
"name": "
|
|
601
|
-
"
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
797
|
+
"kind": "method",
|
|
798
|
+
"name": "updated",
|
|
799
|
+
"parameters": [
|
|
800
|
+
{
|
|
801
|
+
"name": "changed",
|
|
802
|
+
"type": {
|
|
803
|
+
"text": "PropertyValues<this>"
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
]
|
|
606
807
|
},
|
|
607
808
|
{
|
|
608
|
-
"kind": "
|
|
609
|
-
"name": "
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
},
|
|
809
|
+
"kind": "method",
|
|
810
|
+
"name": "render"
|
|
811
|
+
}
|
|
812
|
+
],
|
|
813
|
+
"superclass": {
|
|
814
|
+
"name": "ThemeableElement",
|
|
815
|
+
"module": "/src/base"
|
|
816
|
+
},
|
|
817
|
+
"tagName": "lt-breadcrumb",
|
|
818
|
+
"customElement": true
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"kind": "class",
|
|
822
|
+
"description": "A single step in a breadcrumb trail.\nRenders as a link when `href` is provided, or as plain text when `current`.",
|
|
823
|
+
"name": "BreadcrumbItem",
|
|
824
|
+
"members": [
|
|
625
825
|
{
|
|
626
826
|
"kind": "field",
|
|
627
|
-
"name": "
|
|
628
|
-
"
|
|
629
|
-
|
|
630
|
-
},
|
|
631
|
-
"default": "false",
|
|
632
|
-
"description": "Show a dismiss button. Clicking it fires lt-close and removes the element."
|
|
827
|
+
"name": "styles",
|
|
828
|
+
"static": true,
|
|
829
|
+
"default": "breadcrumbItemStyles"
|
|
633
830
|
},
|
|
634
831
|
{
|
|
635
832
|
"kind": "field",
|
|
636
|
-
"name": "
|
|
833
|
+
"name": "href",
|
|
637
834
|
"type": {
|
|
638
835
|
"text": "string"
|
|
639
836
|
},
|
|
640
837
|
"default": "''",
|
|
641
|
-
"description": "
|
|
838
|
+
"description": "URL this item links to. Omit for the current (last) item."
|
|
642
839
|
},
|
|
643
840
|
{
|
|
644
841
|
"kind": "field",
|
|
645
|
-
"name": "
|
|
842
|
+
"name": "current",
|
|
646
843
|
"type": {
|
|
647
844
|
"text": "boolean"
|
|
648
845
|
},
|
|
649
846
|
"default": "false",
|
|
650
|
-
"description": "
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"kind": "field",
|
|
654
|
-
"name": "_iconMap",
|
|
655
|
-
"type": {
|
|
656
|
-
"text": "Record<AlertVariant, string>"
|
|
657
|
-
},
|
|
658
|
-
"privacy": "private",
|
|
659
|
-
"static": true,
|
|
660
|
-
"readonly": true,
|
|
661
|
-
"default": "{ default: 'info-circle', success: 'check-circle', warning: 'warning-triangle', error: 'xmark-circle', info: 'info-circle' }"
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"kind": "method",
|
|
665
|
-
"name": "_handleClose",
|
|
666
|
-
"privacy": "private"
|
|
847
|
+
"description": "Marks this item as the current page. Renders as non-linked text with `aria-current=\"page\"`."
|
|
667
848
|
},
|
|
668
849
|
{
|
|
669
850
|
"kind": "field",
|
|
670
|
-
"name": "
|
|
851
|
+
"name": "separator",
|
|
671
852
|
"type": {
|
|
672
853
|
"text": "string"
|
|
673
854
|
},
|
|
674
|
-
"
|
|
675
|
-
"
|
|
855
|
+
"default": "''",
|
|
856
|
+
"description": "Custom separator for this specific item. Overrides the parent's separator."
|
|
676
857
|
},
|
|
677
858
|
{
|
|
678
859
|
"kind": "method",
|
|
679
860
|
"name": "render"
|
|
680
861
|
}
|
|
681
862
|
],
|
|
682
|
-
"events": [
|
|
683
|
-
{
|
|
684
|
-
"description": "Fired when the dismiss button is clicked, just before the element is removed.",
|
|
685
|
-
"name": "close"
|
|
686
|
-
}
|
|
687
|
-
],
|
|
688
863
|
"superclass": {
|
|
689
864
|
"name": "ThemeableElement",
|
|
690
865
|
"module": "/src/base"
|
|
691
866
|
},
|
|
692
|
-
"tagName": "lt-
|
|
867
|
+
"tagName": "lt-breadcrumb-item",
|
|
693
868
|
"customElement": true
|
|
694
869
|
}
|
|
695
870
|
],
|
|
696
871
|
"exports": [
|
|
697
872
|
{
|
|
698
873
|
"kind": "js",
|
|
699
|
-
"name": "
|
|
874
|
+
"name": "Breadcrumb",
|
|
700
875
|
"declaration": {
|
|
701
|
-
"name": "
|
|
702
|
-
"module": "src/components/
|
|
876
|
+
"name": "Breadcrumb",
|
|
877
|
+
"module": "src/components/breadcrumb/breadcrumb.ts"
|
|
878
|
+
}
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"kind": "js",
|
|
882
|
+
"name": "BreadcrumbItem",
|
|
883
|
+
"declaration": {
|
|
884
|
+
"name": "BreadcrumbItem",
|
|
885
|
+
"module": "src/components/breadcrumb/breadcrumb.ts"
|
|
703
886
|
}
|
|
704
887
|
}
|
|
705
888
|
]
|
|
706
889
|
},
|
|
707
890
|
{
|
|
708
891
|
"kind": "javascript-module",
|
|
709
|
-
"path": "src/components/
|
|
892
|
+
"path": "src/components/breadcrumb/index.ts",
|
|
710
893
|
"declarations": [],
|
|
711
894
|
"exports": [
|
|
712
895
|
{
|
|
713
896
|
"kind": "js",
|
|
714
|
-
"name": "
|
|
897
|
+
"name": "Breadcrumb",
|
|
715
898
|
"declaration": {
|
|
716
|
-
"name": "
|
|
717
|
-
"module": "./
|
|
899
|
+
"name": "Breadcrumb",
|
|
900
|
+
"module": "./breadcrumb"
|
|
718
901
|
}
|
|
719
902
|
},
|
|
720
903
|
{
|
|
721
904
|
"kind": "js",
|
|
722
|
-
"name": "
|
|
905
|
+
"name": "BreadcrumbItem",
|
|
723
906
|
"declaration": {
|
|
724
|
-
"name": "
|
|
725
|
-
"module": "./
|
|
907
|
+
"name": "BreadcrumbItem",
|
|
908
|
+
"module": "./breadcrumb"
|
|
726
909
|
}
|
|
727
910
|
},
|
|
728
911
|
{
|
|
729
912
|
"kind": "js",
|
|
730
|
-
"name": "
|
|
913
|
+
"name": "BreadcrumbSeparator",
|
|
731
914
|
"declaration": {
|
|
732
|
-
"name": "
|
|
733
|
-
"module": "./
|
|
915
|
+
"name": "BreadcrumbSeparator",
|
|
916
|
+
"module": "./breadcrumb.types"
|
|
734
917
|
}
|
|
735
918
|
}
|
|
736
919
|
]
|
|
@@ -881,231 +1064,40 @@
|
|
|
881
1064
|
"type": {
|
|
882
1065
|
"text": "string"
|
|
883
1066
|
},
|
|
884
|
-
"default": "''",
|
|
885
|
-
"description": "When set, renders an `<a>` tag instead of `<button>`.\nAll visual styles and states are preserved."
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"kind": "field",
|
|
889
|
-
"name": "target",
|
|
890
|
-
"type": {
|
|
891
|
-
"text": "string"
|
|
892
|
-
},
|
|
893
|
-
"default": "''",
|
|
894
|
-
"description": "Forwarded to the anchor's `target` attribute when `href` is set."
|
|
895
|
-
},
|
|
896
|
-
{
|
|
897
|
-
"kind": "field",
|
|
898
|
-
"name": "rel",
|
|
899
|
-
"type": {
|
|
900
|
-
"text": "string"
|
|
901
|
-
},
|
|
902
|
-
"default": "''",
|
|
903
|
-
"description": "Forwarded to the anchor's `rel` attribute when `href` is set.\nDefaults to `noopener noreferrer` when `target=\"_blank\"` and `rel` is not specified."
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"kind": "field",
|
|
907
|
-
"name": "type",
|
|
908
|
-
"type": {
|
|
909
|
-
"text": "ButtonType"
|
|
910
|
-
},
|
|
911
|
-
"default": "'button'",
|
|
912
|
-
"description": "Form behaviour when the button is inside a `<form>`.\n`submit` triggers form validation and submission; `reset` restores initial values."
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"kind": "method",
|
|
916
|
-
"name": "_handleClick",
|
|
917
|
-
"privacy": "private"
|
|
918
|
-
},
|
|
919
|
-
{
|
|
920
|
-
"kind": "method",
|
|
921
|
-
"name": "render"
|
|
922
|
-
}
|
|
923
|
-
],
|
|
924
|
-
"superclass": {
|
|
925
|
-
"name": "ThemeableElement",
|
|
926
|
-
"module": "/src/base"
|
|
927
|
-
},
|
|
928
|
-
"tagName": "lt-button",
|
|
929
|
-
"customElement": true
|
|
930
|
-
}
|
|
931
|
-
],
|
|
932
|
-
"exports": [
|
|
933
|
-
{
|
|
934
|
-
"kind": "js",
|
|
935
|
-
"name": "Button",
|
|
936
|
-
"declaration": {
|
|
937
|
-
"name": "Button",
|
|
938
|
-
"module": "src/components/button/button.ts"
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
]
|
|
942
|
-
},
|
|
943
|
-
{
|
|
944
|
-
"kind": "javascript-module",
|
|
945
|
-
"path": "src/components/button/index.ts",
|
|
946
|
-
"declarations": [],
|
|
947
|
-
"exports": [
|
|
948
|
-
{
|
|
949
|
-
"kind": "js",
|
|
950
|
-
"name": "Button",
|
|
951
|
-
"declaration": {
|
|
952
|
-
"name": "Button",
|
|
953
|
-
"module": "./button"
|
|
954
|
-
}
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"kind": "js",
|
|
958
|
-
"name": "ButtonAppearance",
|
|
959
|
-
"declaration": {
|
|
960
|
-
"name": "ButtonAppearance",
|
|
961
|
-
"module": "./button.types"
|
|
962
|
-
}
|
|
963
|
-
},
|
|
964
|
-
{
|
|
965
|
-
"kind": "js",
|
|
966
|
-
"name": "ButtonSize",
|
|
967
|
-
"declaration": {
|
|
968
|
-
"name": "ButtonSize",
|
|
969
|
-
"module": "./button.types"
|
|
970
|
-
}
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
"kind": "js",
|
|
974
|
-
"name": "ButtonType",
|
|
975
|
-
"declaration": {
|
|
976
|
-
"name": "ButtonType",
|
|
977
|
-
"module": "./button.types"
|
|
978
|
-
}
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"kind": "js",
|
|
982
|
-
"name": "ButtonVariant",
|
|
983
|
-
"declaration": {
|
|
984
|
-
"name": "ButtonVariant",
|
|
985
|
-
"module": "./button.types"
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
]
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"kind": "javascript-module",
|
|
992
|
-
"path": "src/components/breadcrumb/breadcrumb.styles.ts",
|
|
993
|
-
"declarations": [
|
|
994
|
-
{
|
|
995
|
-
"kind": "variable",
|
|
996
|
-
"name": "breadcrumbStyles",
|
|
997
|
-
"default": "css` :host { display: block; } [part='list'] { align-items: center; display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 0; } `"
|
|
998
|
-
},
|
|
999
|
-
{
|
|
1000
|
-
"kind": "variable",
|
|
1001
|
-
"name": "breadcrumbItemStyles",
|
|
1002
|
-
"default": "css` :host { align-items: center; display: inline-flex; font-family: var(--lt-typography-fontfamily); font-size: 0.875rem; } [part='link'] { color: var(--lt-interactive-primary-bg); text-decoration: none; transition: color 120ms ease; } [part='link']:hover { color: var(--lt-interactive-primary-bg-hover); text-decoration: underline; } [part='text'] { color: var(--lt-text-default); font-weight: 600; } [part='separator'] { color: var(--lt-text-muted); margin-inline: var(--lt-spacing-2); user-select: none; } [part='separator']::after { content: var(--lt-breadcrumb-separator, '/'); } :host(:last-child) [part='separator'] { display: none; } `"
|
|
1003
|
-
}
|
|
1004
|
-
],
|
|
1005
|
-
"exports": [
|
|
1006
|
-
{
|
|
1007
|
-
"kind": "js",
|
|
1008
|
-
"name": "breadcrumbStyles",
|
|
1009
|
-
"declaration": {
|
|
1010
|
-
"name": "breadcrumbStyles",
|
|
1011
|
-
"module": "src/components/breadcrumb/breadcrumb.styles.ts"
|
|
1012
|
-
}
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"kind": "js",
|
|
1016
|
-
"name": "breadcrumbItemStyles",
|
|
1017
|
-
"declaration": {
|
|
1018
|
-
"name": "breadcrumbItemStyles",
|
|
1019
|
-
"module": "src/components/breadcrumb/breadcrumb.styles.ts"
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
]
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
"kind": "javascript-module",
|
|
1026
|
-
"path": "src/components/breadcrumb/breadcrumb.ts",
|
|
1027
|
-
"declarations": [
|
|
1028
|
-
{
|
|
1029
|
-
"kind": "class",
|
|
1030
|
-
"description": "Navigation breadcrumb trail container.\nPlace `lt-breadcrumb-item` elements inside as direct children.",
|
|
1031
|
-
"name": "Breadcrumb",
|
|
1032
|
-
"members": [
|
|
1033
|
-
{
|
|
1034
|
-
"kind": "field",
|
|
1035
|
-
"name": "styles",
|
|
1036
|
-
"static": true,
|
|
1037
|
-
"default": "breadcrumbStyles"
|
|
1038
|
-
},
|
|
1039
|
-
{
|
|
1040
|
-
"kind": "field",
|
|
1041
|
-
"name": "separator",
|
|
1042
|
-
"type": {
|
|
1043
|
-
"text": "string"
|
|
1044
|
-
},
|
|
1045
|
-
"default": "'/'",
|
|
1046
|
-
"description": "The character or element to use as a separator between breadcrumb items.\nThis is passed down to all children items via CSS variables."
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
"kind": "method",
|
|
1050
|
-
"name": "updated",
|
|
1051
|
-
"parameters": [
|
|
1052
|
-
{
|
|
1053
|
-
"name": "changed",
|
|
1054
|
-
"type": {
|
|
1055
|
-
"text": "PropertyValues<this>"
|
|
1056
|
-
}
|
|
1057
|
-
}
|
|
1058
|
-
]
|
|
1059
|
-
},
|
|
1060
|
-
{
|
|
1061
|
-
"kind": "method",
|
|
1062
|
-
"name": "render"
|
|
1063
|
-
}
|
|
1064
|
-
],
|
|
1065
|
-
"superclass": {
|
|
1066
|
-
"name": "ThemeableElement",
|
|
1067
|
-
"module": "/src/base"
|
|
1068
|
-
},
|
|
1069
|
-
"tagName": "lt-breadcrumb",
|
|
1070
|
-
"customElement": true
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"kind": "class",
|
|
1074
|
-
"description": "A single step in a breadcrumb trail.\nRenders as a link when `href` is provided, or as plain text when `current`.",
|
|
1075
|
-
"name": "BreadcrumbItem",
|
|
1076
|
-
"members": [
|
|
1077
|
-
{
|
|
1078
|
-
"kind": "field",
|
|
1079
|
-
"name": "styles",
|
|
1080
|
-
"static": true,
|
|
1081
|
-
"default": "breadcrumbItemStyles"
|
|
1067
|
+
"default": "''",
|
|
1068
|
+
"description": "When set, renders an `<a>` tag instead of `<button>`.\nAll visual styles and states are preserved."
|
|
1082
1069
|
},
|
|
1083
1070
|
{
|
|
1084
1071
|
"kind": "field",
|
|
1085
|
-
"name": "
|
|
1072
|
+
"name": "target",
|
|
1086
1073
|
"type": {
|
|
1087
1074
|
"text": "string"
|
|
1088
1075
|
},
|
|
1089
1076
|
"default": "''",
|
|
1090
|
-
"description": "
|
|
1077
|
+
"description": "Forwarded to the anchor's `target` attribute when `href` is set."
|
|
1091
1078
|
},
|
|
1092
1079
|
{
|
|
1093
1080
|
"kind": "field",
|
|
1094
|
-
"name": "
|
|
1081
|
+
"name": "rel",
|
|
1095
1082
|
"type": {
|
|
1096
|
-
"text": "
|
|
1083
|
+
"text": "string"
|
|
1097
1084
|
},
|
|
1098
|
-
"default": "
|
|
1099
|
-
"description": "
|
|
1085
|
+
"default": "''",
|
|
1086
|
+
"description": "Forwarded to the anchor's `rel` attribute when `href` is set.\nDefaults to `noopener noreferrer` when `target=\"_blank\"` and `rel` is not specified."
|
|
1100
1087
|
},
|
|
1101
1088
|
{
|
|
1102
1089
|
"kind": "field",
|
|
1103
|
-
"name": "
|
|
1090
|
+
"name": "type",
|
|
1104
1091
|
"type": {
|
|
1105
|
-
"text": "
|
|
1092
|
+
"text": "ButtonType"
|
|
1106
1093
|
},
|
|
1107
|
-
"default": "''",
|
|
1108
|
-
"description": "
|
|
1094
|
+
"default": "'button'",
|
|
1095
|
+
"description": "Form behaviour when the button is inside a `<form>`.\n`submit` triggers form validation and submission; `reset` restores initial values."
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"kind": "method",
|
|
1099
|
+
"name": "_handleClick",
|
|
1100
|
+
"privacy": "private"
|
|
1109
1101
|
},
|
|
1110
1102
|
{
|
|
1111
1103
|
"kind": "method",
|
|
@@ -1116,56 +1108,64 @@
|
|
|
1116
1108
|
"name": "ThemeableElement",
|
|
1117
1109
|
"module": "/src/base"
|
|
1118
1110
|
},
|
|
1119
|
-
"tagName": "lt-
|
|
1111
|
+
"tagName": "lt-button",
|
|
1120
1112
|
"customElement": true
|
|
1121
1113
|
}
|
|
1122
1114
|
],
|
|
1123
1115
|
"exports": [
|
|
1124
1116
|
{
|
|
1125
1117
|
"kind": "js",
|
|
1126
|
-
"name": "
|
|
1127
|
-
"declaration": {
|
|
1128
|
-
"name": "Breadcrumb",
|
|
1129
|
-
"module": "src/components/breadcrumb/breadcrumb.ts"
|
|
1130
|
-
}
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"kind": "js",
|
|
1134
|
-
"name": "BreadcrumbItem",
|
|
1118
|
+
"name": "Button",
|
|
1135
1119
|
"declaration": {
|
|
1136
|
-
"name": "
|
|
1137
|
-
"module": "src/components/
|
|
1120
|
+
"name": "Button",
|
|
1121
|
+
"module": "src/components/button/button.ts"
|
|
1138
1122
|
}
|
|
1139
1123
|
}
|
|
1140
1124
|
]
|
|
1141
1125
|
},
|
|
1142
1126
|
{
|
|
1143
1127
|
"kind": "javascript-module",
|
|
1144
|
-
"path": "src/components/
|
|
1128
|
+
"path": "src/components/button/index.ts",
|
|
1145
1129
|
"declarations": [],
|
|
1146
1130
|
"exports": [
|
|
1147
1131
|
{
|
|
1148
1132
|
"kind": "js",
|
|
1149
|
-
"name": "
|
|
1133
|
+
"name": "Button",
|
|
1150
1134
|
"declaration": {
|
|
1151
|
-
"name": "
|
|
1152
|
-
"module": "./
|
|
1135
|
+
"name": "Button",
|
|
1136
|
+
"module": "./button"
|
|
1153
1137
|
}
|
|
1154
1138
|
},
|
|
1155
1139
|
{
|
|
1156
1140
|
"kind": "js",
|
|
1157
|
-
"name": "
|
|
1141
|
+
"name": "ButtonAppearance",
|
|
1158
1142
|
"declaration": {
|
|
1159
|
-
"name": "
|
|
1160
|
-
"module": "./
|
|
1143
|
+
"name": "ButtonAppearance",
|
|
1144
|
+
"module": "./button.types"
|
|
1161
1145
|
}
|
|
1162
1146
|
},
|
|
1163
1147
|
{
|
|
1164
1148
|
"kind": "js",
|
|
1165
|
-
"name": "
|
|
1149
|
+
"name": "ButtonSize",
|
|
1166
1150
|
"declaration": {
|
|
1167
|
-
"name": "
|
|
1168
|
-
"module": "./
|
|
1151
|
+
"name": "ButtonSize",
|
|
1152
|
+
"module": "./button.types"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"kind": "js",
|
|
1157
|
+
"name": "ButtonType",
|
|
1158
|
+
"declaration": {
|
|
1159
|
+
"name": "ButtonType",
|
|
1160
|
+
"module": "./button.types"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"kind": "js",
|
|
1165
|
+
"name": "ButtonVariant",
|
|
1166
|
+
"declaration": {
|
|
1167
|
+
"name": "ButtonVariant",
|
|
1168
|
+
"module": "./button.types"
|
|
1169
1169
|
}
|
|
1170
1170
|
}
|
|
1171
1171
|
]
|
|
@@ -1740,6 +1740,23 @@
|
|
|
1740
1740
|
"static": true,
|
|
1741
1741
|
"default": "checkboxStyles"
|
|
1742
1742
|
},
|
|
1743
|
+
{
|
|
1744
|
+
"kind": "field",
|
|
1745
|
+
"name": "formAssociated",
|
|
1746
|
+
"type": {
|
|
1747
|
+
"text": "boolean"
|
|
1748
|
+
},
|
|
1749
|
+
"static": true,
|
|
1750
|
+
"default": "true"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"kind": "field",
|
|
1754
|
+
"name": "_internals",
|
|
1755
|
+
"type": {
|
|
1756
|
+
"text": "ElementInternals"
|
|
1757
|
+
},
|
|
1758
|
+
"privacy": "private"
|
|
1759
|
+
},
|
|
1743
1760
|
{
|
|
1744
1761
|
"kind": "field",
|
|
1745
1762
|
"name": "variant",
|
|
@@ -1849,8 +1866,19 @@
|
|
|
1849
1866
|
"text": "Map<string, unknown>"
|
|
1850
1867
|
}
|
|
1851
1868
|
}
|
|
1852
|
-
]
|
|
1853
|
-
|
|
1869
|
+
]
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"kind": "method",
|
|
1873
|
+
"name": "formResetCallback"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"kind": "method",
|
|
1877
|
+
"name": "checkValidity"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"kind": "method",
|
|
1881
|
+
"name": "reportValidity"
|
|
1854
1882
|
},
|
|
1855
1883
|
{
|
|
1856
1884
|
"kind": "method",
|
|
@@ -1882,7 +1910,7 @@
|
|
|
1882
1910
|
{
|
|
1883
1911
|
"name": "change",
|
|
1884
1912
|
"type": {
|
|
1885
|
-
"text": "CustomEvent<{checked: boolean
|
|
1913
|
+
"text": "CustomEvent<{checked: boolean}>"
|
|
1886
1914
|
},
|
|
1887
1915
|
"description": "Dispatched when the checked state changes"
|
|
1888
1916
|
}
|
|
@@ -2161,6 +2189,23 @@
|
|
|
2161
2189
|
"static": true,
|
|
2162
2190
|
"default": "colorInputStyles"
|
|
2163
2191
|
},
|
|
2192
|
+
{
|
|
2193
|
+
"kind": "field",
|
|
2194
|
+
"name": "formAssociated",
|
|
2195
|
+
"type": {
|
|
2196
|
+
"text": "boolean"
|
|
2197
|
+
},
|
|
2198
|
+
"static": true,
|
|
2199
|
+
"default": "true"
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"kind": "field",
|
|
2203
|
+
"name": "_internals",
|
|
2204
|
+
"type": {
|
|
2205
|
+
"text": "ElementInternals"
|
|
2206
|
+
},
|
|
2207
|
+
"privacy": "private"
|
|
2208
|
+
},
|
|
2164
2209
|
{
|
|
2165
2210
|
"kind": "field",
|
|
2166
2211
|
"name": "value",
|
|
@@ -2206,6 +2251,24 @@
|
|
|
2206
2251
|
"default": "false",
|
|
2207
2252
|
"description": "Whether the input is disabled."
|
|
2208
2253
|
},
|
|
2254
|
+
{
|
|
2255
|
+
"kind": "field",
|
|
2256
|
+
"name": "required",
|
|
2257
|
+
"type": {
|
|
2258
|
+
"text": "boolean"
|
|
2259
|
+
},
|
|
2260
|
+
"default": "false",
|
|
2261
|
+
"description": "Whether the field is required."
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"kind": "field",
|
|
2265
|
+
"name": "name",
|
|
2266
|
+
"type": {
|
|
2267
|
+
"text": "string"
|
|
2268
|
+
},
|
|
2269
|
+
"default": "''",
|
|
2270
|
+
"description": "Name used when submitting a form."
|
|
2271
|
+
},
|
|
2209
2272
|
{
|
|
2210
2273
|
"kind": "field",
|
|
2211
2274
|
"name": "size",
|
|
@@ -2215,6 +2278,22 @@
|
|
|
2215
2278
|
"default": "'md'",
|
|
2216
2279
|
"description": "Size of the input — affects height and padding."
|
|
2217
2280
|
},
|
|
2281
|
+
{
|
|
2282
|
+
"kind": "method",
|
|
2283
|
+
"name": "updated"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"kind": "method",
|
|
2287
|
+
"name": "formResetCallback"
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
"kind": "method",
|
|
2291
|
+
"name": "checkValidity"
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"kind": "method",
|
|
2295
|
+
"name": "reportValidity"
|
|
2296
|
+
},
|
|
2218
2297
|
{
|
|
2219
2298
|
"kind": "method",
|
|
2220
2299
|
"name": "_handleChange",
|
|
@@ -2315,6 +2394,23 @@
|
|
|
2315
2394
|
"static": true,
|
|
2316
2395
|
"default": "comboboxStyles"
|
|
2317
2396
|
},
|
|
2397
|
+
{
|
|
2398
|
+
"kind": "field",
|
|
2399
|
+
"name": "formAssociated",
|
|
2400
|
+
"type": {
|
|
2401
|
+
"text": "boolean"
|
|
2402
|
+
},
|
|
2403
|
+
"static": true,
|
|
2404
|
+
"default": "true"
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"kind": "field",
|
|
2408
|
+
"name": "_internals",
|
|
2409
|
+
"type": {
|
|
2410
|
+
"text": "ElementInternals"
|
|
2411
|
+
},
|
|
2412
|
+
"privacy": "private"
|
|
2413
|
+
},
|
|
2318
2414
|
{
|
|
2319
2415
|
"kind": "field",
|
|
2320
2416
|
"name": "options",
|
|
@@ -2522,6 +2618,22 @@
|
|
|
2522
2618
|
}
|
|
2523
2619
|
]
|
|
2524
2620
|
},
|
|
2621
|
+
{
|
|
2622
|
+
"kind": "method",
|
|
2623
|
+
"name": "updated"
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"kind": "method",
|
|
2627
|
+
"name": "formResetCallback"
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"kind": "method",
|
|
2631
|
+
"name": "checkValidity"
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"kind": "method",
|
|
2635
|
+
"name": "reportValidity"
|
|
2636
|
+
},
|
|
2525
2637
|
{
|
|
2526
2638
|
"kind": "method",
|
|
2527
2639
|
"name": "render"
|
|
@@ -2530,7 +2642,7 @@
|
|
|
2530
2642
|
"events": [
|
|
2531
2643
|
{
|
|
2532
2644
|
"type": {
|
|
2533
|
-
"text": "CustomEvent<{value: string
|
|
2645
|
+
"text": "CustomEvent<{value: string}>"
|
|
2534
2646
|
},
|
|
2535
2647
|
"description": "Fired when the selected value changes.",
|
|
2536
2648
|
"name": "change"
|
|
@@ -2633,6 +2745,23 @@
|
|
|
2633
2745
|
"static": true,
|
|
2634
2746
|
"default": "dateInputStyles"
|
|
2635
2747
|
},
|
|
2748
|
+
{
|
|
2749
|
+
"kind": "field",
|
|
2750
|
+
"name": "formAssociated",
|
|
2751
|
+
"type": {
|
|
2752
|
+
"text": "boolean"
|
|
2753
|
+
},
|
|
2754
|
+
"static": true,
|
|
2755
|
+
"default": "true"
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"kind": "field",
|
|
2759
|
+
"name": "_internals",
|
|
2760
|
+
"type": {
|
|
2761
|
+
"text": "ElementInternals"
|
|
2762
|
+
},
|
|
2763
|
+
"privacy": "private"
|
|
2764
|
+
},
|
|
2636
2765
|
{
|
|
2637
2766
|
"kind": "field",
|
|
2638
2767
|
"name": "value",
|
|
@@ -2840,6 +2969,22 @@
|
|
|
2840
2969
|
}
|
|
2841
2970
|
]
|
|
2842
2971
|
},
|
|
2972
|
+
{
|
|
2973
|
+
"kind": "method",
|
|
2974
|
+
"name": "updated"
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "method",
|
|
2978
|
+
"name": "formResetCallback"
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"kind": "method",
|
|
2982
|
+
"name": "checkValidity"
|
|
2983
|
+
},
|
|
2984
|
+
{
|
|
2985
|
+
"kind": "method",
|
|
2986
|
+
"name": "reportValidity"
|
|
2987
|
+
},
|
|
2843
2988
|
{
|
|
2844
2989
|
"kind": "method",
|
|
2845
2990
|
"name": "render"
|
|
@@ -2948,6 +3093,23 @@
|
|
|
2948
3093
|
"static": true,
|
|
2949
3094
|
"default": "datepickerStyles"
|
|
2950
3095
|
},
|
|
3096
|
+
{
|
|
3097
|
+
"kind": "field",
|
|
3098
|
+
"name": "formAssociated",
|
|
3099
|
+
"type": {
|
|
3100
|
+
"text": "boolean"
|
|
3101
|
+
},
|
|
3102
|
+
"static": true,
|
|
3103
|
+
"default": "true"
|
|
3104
|
+
},
|
|
3105
|
+
{
|
|
3106
|
+
"kind": "field",
|
|
3107
|
+
"name": "_internals",
|
|
3108
|
+
"type": {
|
|
3109
|
+
"text": "ElementInternals"
|
|
3110
|
+
},
|
|
3111
|
+
"privacy": "private"
|
|
3112
|
+
},
|
|
2951
3113
|
{
|
|
2952
3114
|
"kind": "field",
|
|
2953
3115
|
"name": "type",
|
|
@@ -3057,12 +3219,37 @@
|
|
|
3057
3219
|
"description": "Name used in form submission."
|
|
3058
3220
|
},
|
|
3059
3221
|
{
|
|
3060
|
-
"kind": "field",
|
|
3061
|
-
"name": "input",
|
|
3062
|
-
"type": {
|
|
3063
|
-
"text": "HTMLInputElement"
|
|
3064
|
-
},
|
|
3065
|
-
"privacy": "private"
|
|
3222
|
+
"kind": "field",
|
|
3223
|
+
"name": "input",
|
|
3224
|
+
"type": {
|
|
3225
|
+
"text": "HTMLInputElement"
|
|
3226
|
+
},
|
|
3227
|
+
"privacy": "private"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"kind": "method",
|
|
3231
|
+
"name": "updated",
|
|
3232
|
+
"privacy": "protected",
|
|
3233
|
+
"parameters": [
|
|
3234
|
+
{
|
|
3235
|
+
"name": "changed",
|
|
3236
|
+
"type": {
|
|
3237
|
+
"text": "PropertyValues"
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
]
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"kind": "method",
|
|
3244
|
+
"name": "formResetCallback"
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"kind": "method",
|
|
3248
|
+
"name": "checkValidity"
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"kind": "method",
|
|
3252
|
+
"name": "reportValidity"
|
|
3066
3253
|
},
|
|
3067
3254
|
{
|
|
3068
3255
|
"kind": "method",
|
|
@@ -3391,14 +3578,25 @@
|
|
|
3391
3578
|
"type": {
|
|
3392
3579
|
"text": "CustomEvent"
|
|
3393
3580
|
},
|
|
3394
|
-
"description": "Fired when dialog opens"
|
|
3581
|
+
"description": "Fired when dialog opens (deprecated, use `open`)"
|
|
3395
3582
|
},
|
|
3396
3583
|
{
|
|
3397
|
-
"name": "
|
|
3584
|
+
"name": "close",
|
|
3398
3585
|
"type": {
|
|
3399
3586
|
"text": "CustomEvent"
|
|
3400
3587
|
},
|
|
3401
3588
|
"description": "Fired when dialog closes"
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "dialog-close",
|
|
3592
|
+
"type": {
|
|
3593
|
+
"text": "CustomEvent"
|
|
3594
|
+
},
|
|
3595
|
+
"description": "Fired when dialog closes (deprecated, use `close`)"
|
|
3596
|
+
},
|
|
3597
|
+
{
|
|
3598
|
+
"description": "Fired when dialog opens",
|
|
3599
|
+
"name": "open"
|
|
3402
3600
|
}
|
|
3403
3601
|
],
|
|
3404
3602
|
"superclass": {
|
|
@@ -4283,99 +4481,6 @@
|
|
|
4283
4481
|
}
|
|
4284
4482
|
]
|
|
4285
4483
|
},
|
|
4286
|
-
{
|
|
4287
|
-
"kind": "javascript-module",
|
|
4288
|
-
"path": "src/components/link/index.ts",
|
|
4289
|
-
"declarations": [],
|
|
4290
|
-
"exports": [
|
|
4291
|
-
{
|
|
4292
|
-
"kind": "js",
|
|
4293
|
-
"name": "Link",
|
|
4294
|
-
"declaration": {
|
|
4295
|
-
"name": "Link",
|
|
4296
|
-
"module": "./link"
|
|
4297
|
-
}
|
|
4298
|
-
}
|
|
4299
|
-
]
|
|
4300
|
-
},
|
|
4301
|
-
{
|
|
4302
|
-
"kind": "javascript-module",
|
|
4303
|
-
"path": "src/components/link/link.styles.ts",
|
|
4304
|
-
"declarations": [
|
|
4305
|
-
{
|
|
4306
|
-
"kind": "variable",
|
|
4307
|
-
"name": "linkStyles",
|
|
4308
|
-
"default": "css` :host { display: inline; } a[part='base'] { align-items: center; color: var(--lt-text-primary); cursor: pointer; display: inline-flex; font: inherit; gap: 0.25em; text-decoration: none; vertical-align: baseline; } a[part='base']:hover { color: var(--lt-text-primary); text-decoration: underline; } a[part='base']:focus-visible { border-radius: 2px; outline: 2px solid var(--lt-border-focus); outline-offset: 2px; } lt-icon[part='icon'] { flex-shrink: 0; } `"
|
|
4309
|
-
}
|
|
4310
|
-
],
|
|
4311
|
-
"exports": [
|
|
4312
|
-
{
|
|
4313
|
-
"kind": "js",
|
|
4314
|
-
"name": "linkStyles",
|
|
4315
|
-
"declaration": {
|
|
4316
|
-
"name": "linkStyles",
|
|
4317
|
-
"module": "src/components/link/link.styles.ts"
|
|
4318
|
-
}
|
|
4319
|
-
}
|
|
4320
|
-
]
|
|
4321
|
-
},
|
|
4322
|
-
{
|
|
4323
|
-
"kind": "javascript-module",
|
|
4324
|
-
"path": "src/components/link/link.ts",
|
|
4325
|
-
"declarations": [
|
|
4326
|
-
{
|
|
4327
|
-
"kind": "class",
|
|
4328
|
-
"description": "A styled anchor element. Uses the primary color by default with an underline on hover.\nSet `external` to open in a new tab and display a trailing external-link icon.",
|
|
4329
|
-
"name": "Link",
|
|
4330
|
-
"members": [
|
|
4331
|
-
{
|
|
4332
|
-
"kind": "field",
|
|
4333
|
-
"name": "styles",
|
|
4334
|
-
"static": true,
|
|
4335
|
-
"default": "linkStyles"
|
|
4336
|
-
},
|
|
4337
|
-
{
|
|
4338
|
-
"kind": "field",
|
|
4339
|
-
"name": "href",
|
|
4340
|
-
"type": {
|
|
4341
|
-
"text": "string"
|
|
4342
|
-
},
|
|
4343
|
-
"default": "''",
|
|
4344
|
-
"description": "Destination URL forwarded to the underlying `<a>` element."
|
|
4345
|
-
},
|
|
4346
|
-
{
|
|
4347
|
-
"kind": "field",
|
|
4348
|
-
"name": "external",
|
|
4349
|
-
"type": {
|
|
4350
|
-
"text": "boolean"
|
|
4351
|
-
},
|
|
4352
|
-
"default": "false",
|
|
4353
|
-
"description": "Opens the link in a new tab and appends an external-link icon."
|
|
4354
|
-
},
|
|
4355
|
-
{
|
|
4356
|
-
"kind": "method",
|
|
4357
|
-
"name": "render"
|
|
4358
|
-
}
|
|
4359
|
-
],
|
|
4360
|
-
"superclass": {
|
|
4361
|
-
"name": "ThemeableElement",
|
|
4362
|
-
"module": "/src/base"
|
|
4363
|
-
},
|
|
4364
|
-
"tagName": "lt-link",
|
|
4365
|
-
"customElement": true
|
|
4366
|
-
}
|
|
4367
|
-
],
|
|
4368
|
-
"exports": [
|
|
4369
|
-
{
|
|
4370
|
-
"kind": "js",
|
|
4371
|
-
"name": "Link",
|
|
4372
|
-
"declaration": {
|
|
4373
|
-
"name": "Link",
|
|
4374
|
-
"module": "src/components/link/link.ts"
|
|
4375
|
-
}
|
|
4376
|
-
}
|
|
4377
|
-
]
|
|
4378
|
-
},
|
|
4379
4484
|
{
|
|
4380
4485
|
"kind": "javascript-module",
|
|
4381
4486
|
"path": "src/components/list/index.ts",
|
|
@@ -4995,124 +5100,217 @@
|
|
|
4995
5100
|
"declarations": [
|
|
4996
5101
|
{
|
|
4997
5102
|
"kind": "variable",
|
|
4998
|
-
"name": "paginationStyles",
|
|
4999
|
-
"default": "css` :host { display: inline-flex; font-family: 'Hanken Grotesk', sans-serif; } nav { align-items: center; display: flex; gap: var(--lt-spacing-1); } button { align-items: center; background: transparent; border-radius: var(--lt-border-radius); border: 1px solid transparent; color: var(--lt-text-default); cursor: pointer; display: inline-flex; font-family: inherit; font-weight: 500; justify-content: center; line-height: 1; transition: background 120ms ease, border-color 120ms ease, color 120ms ease; user-select: none; } /* Sizes */ :host([size='sm']) button { font-size: 0.75rem; height: 28px; min-width: 28px; padding: 0 var(--lt-spacing-1); } :host([size='md']) button, :host(:not([size])) button { font-size: 0.8125rem; height: 36px; min-width: 36px; padding: 0 var(--lt-spacing-2); } :host([size='lg']) button { font-size: 0.9375rem; height: 44px; min-width: 44px; padding: 0 var(--lt-spacing-3); } button:hover:not(:disabled) { background: var(--lt-bg-neutral-subtle); border-color: var(--lt-border-default); } button[aria-current='page'] { background: var(--lt-bg-primary-subtle); border-color: var(--lt-border-primary); color: var(--lt-color-primary-700); font-weight: 600; } button.ellipsis { cursor: default; pointer-events: none; } button:disabled { color: var(--lt-color-neutral-400); cursor: not-allowed; } :host([disabled]) button { color: var(--lt-color-neutral-400); cursor: not-allowed; pointer-events: none; } `"
|
|
5103
|
+
"name": "paginationStyles",
|
|
5104
|
+
"default": "css` :host { display: inline-flex; font-family: 'Hanken Grotesk', sans-serif; } nav { align-items: center; display: flex; gap: var(--lt-spacing-1); } button { align-items: center; background: transparent; border-radius: var(--lt-border-radius); border: 1px solid transparent; color: var(--lt-text-default); cursor: pointer; display: inline-flex; font-family: inherit; font-weight: 500; justify-content: center; line-height: 1; transition: background 120ms ease, border-color 120ms ease, color 120ms ease; user-select: none; } /* Sizes */ :host([size='sm']) button { font-size: 0.75rem; height: 28px; min-width: 28px; padding: 0 var(--lt-spacing-1); } :host([size='md']) button, :host(:not([size])) button { font-size: 0.8125rem; height: 36px; min-width: 36px; padding: 0 var(--lt-spacing-2); } :host([size='lg']) button { font-size: 0.9375rem; height: 44px; min-width: 44px; padding: 0 var(--lt-spacing-3); } button:hover:not(:disabled) { background: var(--lt-bg-neutral-subtle); border-color: var(--lt-border-default); } button[aria-current='page'] { background: var(--lt-bg-primary-subtle); border-color: var(--lt-border-primary); color: var(--lt-color-primary-700); font-weight: 600; } button.ellipsis { cursor: default; pointer-events: none; } button:disabled { color: var(--lt-color-neutral-400); cursor: not-allowed; } :host([disabled]) button { color: var(--lt-color-neutral-400); cursor: not-allowed; pointer-events: none; } `"
|
|
5105
|
+
}
|
|
5106
|
+
],
|
|
5107
|
+
"exports": [
|
|
5108
|
+
{
|
|
5109
|
+
"kind": "js",
|
|
5110
|
+
"name": "paginationStyles",
|
|
5111
|
+
"declaration": {
|
|
5112
|
+
"name": "paginationStyles",
|
|
5113
|
+
"module": "src/components/pagination/pagination.styles.ts"
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
]
|
|
5117
|
+
},
|
|
5118
|
+
{
|
|
5119
|
+
"kind": "javascript-module",
|
|
5120
|
+
"path": "src/components/pagination/pagination.ts",
|
|
5121
|
+
"declarations": [
|
|
5122
|
+
{
|
|
5123
|
+
"kind": "class",
|
|
5124
|
+
"description": "Page navigation control for paged data sets.",
|
|
5125
|
+
"name": "Pagination",
|
|
5126
|
+
"members": [
|
|
5127
|
+
{
|
|
5128
|
+
"kind": "field",
|
|
5129
|
+
"name": "styles",
|
|
5130
|
+
"static": true,
|
|
5131
|
+
"default": "paginationStyles"
|
|
5132
|
+
},
|
|
5133
|
+
{
|
|
5134
|
+
"kind": "field",
|
|
5135
|
+
"name": "page",
|
|
5136
|
+
"type": {
|
|
5137
|
+
"text": "number"
|
|
5138
|
+
},
|
|
5139
|
+
"default": "1",
|
|
5140
|
+
"description": "Currently active page (1-indexed)."
|
|
5141
|
+
},
|
|
5142
|
+
{
|
|
5143
|
+
"kind": "field",
|
|
5144
|
+
"name": "totalPages",
|
|
5145
|
+
"type": {
|
|
5146
|
+
"text": "number"
|
|
5147
|
+
},
|
|
5148
|
+
"default": "1",
|
|
5149
|
+
"description": "Total number of pages."
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"kind": "field",
|
|
5153
|
+
"name": "size",
|
|
5154
|
+
"type": {
|
|
5155
|
+
"text": "PaginationSize"
|
|
5156
|
+
},
|
|
5157
|
+
"default": "'md'",
|
|
5158
|
+
"description": "Visual size."
|
|
5159
|
+
},
|
|
5160
|
+
{
|
|
5161
|
+
"kind": "field",
|
|
5162
|
+
"name": "disabled",
|
|
5163
|
+
"type": {
|
|
5164
|
+
"text": "boolean"
|
|
5165
|
+
},
|
|
5166
|
+
"default": "false",
|
|
5167
|
+
"description": "Disable all controls."
|
|
5168
|
+
},
|
|
5169
|
+
{
|
|
5170
|
+
"kind": "method",
|
|
5171
|
+
"name": "_go",
|
|
5172
|
+
"privacy": "private",
|
|
5173
|
+
"parameters": [
|
|
5174
|
+
{
|
|
5175
|
+
"name": "page",
|
|
5176
|
+
"type": {
|
|
5177
|
+
"text": "number"
|
|
5178
|
+
}
|
|
5179
|
+
}
|
|
5180
|
+
]
|
|
5181
|
+
},
|
|
5182
|
+
{
|
|
5183
|
+
"kind": "method",
|
|
5184
|
+
"name": "_pages",
|
|
5185
|
+
"privacy": "private",
|
|
5186
|
+
"return": {
|
|
5187
|
+
"type": {
|
|
5188
|
+
"text": "(number | '…')[]"
|
|
5189
|
+
}
|
|
5190
|
+
}
|
|
5191
|
+
},
|
|
5192
|
+
{
|
|
5193
|
+
"kind": "method",
|
|
5194
|
+
"name": "render"
|
|
5195
|
+
}
|
|
5196
|
+
],
|
|
5197
|
+
"events": [
|
|
5198
|
+
{
|
|
5199
|
+
"type": {
|
|
5200
|
+
"text": "CustomEvent<{page: number}>"
|
|
5201
|
+
},
|
|
5202
|
+
"description": "Fired when the user navigates to a different page.",
|
|
5203
|
+
"name": "change"
|
|
5204
|
+
}
|
|
5205
|
+
],
|
|
5206
|
+
"superclass": {
|
|
5207
|
+
"name": "ThemeableElement",
|
|
5208
|
+
"module": "/src/base"
|
|
5209
|
+
},
|
|
5210
|
+
"tagName": "lt-pagination",
|
|
5211
|
+
"customElement": true
|
|
5212
|
+
}
|
|
5213
|
+
],
|
|
5214
|
+
"exports": [
|
|
5215
|
+
{
|
|
5216
|
+
"kind": "js",
|
|
5217
|
+
"name": "Pagination",
|
|
5218
|
+
"declaration": {
|
|
5219
|
+
"name": "Pagination",
|
|
5220
|
+
"module": "src/components/pagination/pagination.ts"
|
|
5221
|
+
}
|
|
5222
|
+
}
|
|
5223
|
+
]
|
|
5224
|
+
},
|
|
5225
|
+
{
|
|
5226
|
+
"kind": "javascript-module",
|
|
5227
|
+
"path": "src/components/link/index.ts",
|
|
5228
|
+
"declarations": [],
|
|
5229
|
+
"exports": [
|
|
5230
|
+
{
|
|
5231
|
+
"kind": "js",
|
|
5232
|
+
"name": "Link",
|
|
5233
|
+
"declaration": {
|
|
5234
|
+
"name": "Link",
|
|
5235
|
+
"module": "./link"
|
|
5236
|
+
}
|
|
5237
|
+
}
|
|
5238
|
+
]
|
|
5239
|
+
},
|
|
5240
|
+
{
|
|
5241
|
+
"kind": "javascript-module",
|
|
5242
|
+
"path": "src/components/link/link.styles.ts",
|
|
5243
|
+
"declarations": [
|
|
5244
|
+
{
|
|
5245
|
+
"kind": "variable",
|
|
5246
|
+
"name": "linkStyles",
|
|
5247
|
+
"default": "css` :host { display: inline; } a[part='base'] { align-items: center; color: var(--lt-text-primary); cursor: pointer; display: inline-flex; font: inherit; gap: 0.25em; text-decoration: none; vertical-align: baseline; } a[part='base']:hover { color: var(--lt-text-primary); text-decoration: underline; } a[part='base']:focus-visible { border-radius: 2px; outline: 2px solid var(--lt-border-focus); outline-offset: 2px; } lt-icon[part='icon'] { flex-shrink: 0; } `"
|
|
5000
5248
|
}
|
|
5001
5249
|
],
|
|
5002
5250
|
"exports": [
|
|
5003
5251
|
{
|
|
5004
5252
|
"kind": "js",
|
|
5005
|
-
"name": "
|
|
5253
|
+
"name": "linkStyles",
|
|
5006
5254
|
"declaration": {
|
|
5007
|
-
"name": "
|
|
5008
|
-
"module": "src/components/
|
|
5255
|
+
"name": "linkStyles",
|
|
5256
|
+
"module": "src/components/link/link.styles.ts"
|
|
5009
5257
|
}
|
|
5010
5258
|
}
|
|
5011
5259
|
]
|
|
5012
5260
|
},
|
|
5013
5261
|
{
|
|
5014
5262
|
"kind": "javascript-module",
|
|
5015
|
-
"path": "src/components/
|
|
5263
|
+
"path": "src/components/link/link.ts",
|
|
5016
5264
|
"declarations": [
|
|
5017
5265
|
{
|
|
5018
5266
|
"kind": "class",
|
|
5019
|
-
"description": "
|
|
5020
|
-
"name": "
|
|
5267
|
+
"description": "A styled anchor element. Uses the primary color by default with an underline on hover.\nSet `external` to open in a new tab and display a trailing external-link icon.",
|
|
5268
|
+
"name": "Link",
|
|
5021
5269
|
"members": [
|
|
5022
5270
|
{
|
|
5023
5271
|
"kind": "field",
|
|
5024
5272
|
"name": "styles",
|
|
5025
5273
|
"static": true,
|
|
5026
|
-
"default": "
|
|
5027
|
-
},
|
|
5028
|
-
{
|
|
5029
|
-
"kind": "field",
|
|
5030
|
-
"name": "page",
|
|
5031
|
-
"type": {
|
|
5032
|
-
"text": "number"
|
|
5033
|
-
},
|
|
5034
|
-
"default": "1",
|
|
5035
|
-
"description": "Currently active page (1-indexed)."
|
|
5036
|
-
},
|
|
5037
|
-
{
|
|
5038
|
-
"kind": "field",
|
|
5039
|
-
"name": "totalPages",
|
|
5040
|
-
"type": {
|
|
5041
|
-
"text": "number"
|
|
5042
|
-
},
|
|
5043
|
-
"default": "1",
|
|
5044
|
-
"description": "Total number of pages."
|
|
5274
|
+
"default": "linkStyles"
|
|
5045
5275
|
},
|
|
5046
5276
|
{
|
|
5047
5277
|
"kind": "field",
|
|
5048
|
-
"name": "
|
|
5278
|
+
"name": "href",
|
|
5049
5279
|
"type": {
|
|
5050
|
-
"text": "
|
|
5280
|
+
"text": "string"
|
|
5051
5281
|
},
|
|
5052
|
-
"default": "'
|
|
5053
|
-
"description": "
|
|
5282
|
+
"default": "''",
|
|
5283
|
+
"description": "Destination URL forwarded to the underlying `<a>` element."
|
|
5054
5284
|
},
|
|
5055
5285
|
{
|
|
5056
5286
|
"kind": "field",
|
|
5057
|
-
"name": "
|
|
5287
|
+
"name": "external",
|
|
5058
5288
|
"type": {
|
|
5059
5289
|
"text": "boolean"
|
|
5060
5290
|
},
|
|
5061
5291
|
"default": "false",
|
|
5062
|
-
"description": "
|
|
5063
|
-
},
|
|
5064
|
-
{
|
|
5065
|
-
"kind": "method",
|
|
5066
|
-
"name": "_go",
|
|
5067
|
-
"privacy": "private",
|
|
5068
|
-
"parameters": [
|
|
5069
|
-
{
|
|
5070
|
-
"name": "page",
|
|
5071
|
-
"type": {
|
|
5072
|
-
"text": "number"
|
|
5073
|
-
}
|
|
5074
|
-
}
|
|
5075
|
-
]
|
|
5076
|
-
},
|
|
5077
|
-
{
|
|
5078
|
-
"kind": "method",
|
|
5079
|
-
"name": "_pages",
|
|
5080
|
-
"privacy": "private",
|
|
5081
|
-
"return": {
|
|
5082
|
-
"type": {
|
|
5083
|
-
"text": "(number | '…')[]"
|
|
5084
|
-
}
|
|
5085
|
-
}
|
|
5292
|
+
"description": "Opens the link in a new tab and appends an external-link icon."
|
|
5086
5293
|
},
|
|
5087
5294
|
{
|
|
5088
5295
|
"kind": "method",
|
|
5089
5296
|
"name": "render"
|
|
5090
5297
|
}
|
|
5091
5298
|
],
|
|
5092
|
-
"events": [
|
|
5093
|
-
{
|
|
5094
|
-
"type": {
|
|
5095
|
-
"text": "CustomEvent<{page: number}>"
|
|
5096
|
-
},
|
|
5097
|
-
"description": "Fired when the user navigates to a different page.",
|
|
5098
|
-
"name": "change"
|
|
5099
|
-
}
|
|
5100
|
-
],
|
|
5101
5299
|
"superclass": {
|
|
5102
5300
|
"name": "ThemeableElement",
|
|
5103
5301
|
"module": "/src/base"
|
|
5104
5302
|
},
|
|
5105
|
-
"tagName": "lt-
|
|
5303
|
+
"tagName": "lt-link",
|
|
5106
5304
|
"customElement": true
|
|
5107
5305
|
}
|
|
5108
5306
|
],
|
|
5109
5307
|
"exports": [
|
|
5110
5308
|
{
|
|
5111
5309
|
"kind": "js",
|
|
5112
|
-
"name": "
|
|
5310
|
+
"name": "Link",
|
|
5113
5311
|
"declaration": {
|
|
5114
|
-
"name": "
|
|
5115
|
-
"module": "src/components/
|
|
5312
|
+
"name": "Link",
|
|
5313
|
+
"module": "src/components/link/link.ts"
|
|
5116
5314
|
}
|
|
5117
5315
|
}
|
|
5118
5316
|
]
|
|
@@ -5328,6 +5526,23 @@
|
|
|
5328
5526
|
"static": true,
|
|
5329
5527
|
"default": "radioStyles"
|
|
5330
5528
|
},
|
|
5529
|
+
{
|
|
5530
|
+
"kind": "field",
|
|
5531
|
+
"name": "formAssociated",
|
|
5532
|
+
"type": {
|
|
5533
|
+
"text": "boolean"
|
|
5534
|
+
},
|
|
5535
|
+
"static": true,
|
|
5536
|
+
"default": "true"
|
|
5537
|
+
},
|
|
5538
|
+
{
|
|
5539
|
+
"kind": "field",
|
|
5540
|
+
"name": "_internals",
|
|
5541
|
+
"type": {
|
|
5542
|
+
"text": "ElementInternals"
|
|
5543
|
+
},
|
|
5544
|
+
"privacy": "private"
|
|
5545
|
+
},
|
|
5331
5546
|
{
|
|
5332
5547
|
"kind": "field",
|
|
5333
5548
|
"name": "variant",
|
|
@@ -5409,6 +5624,22 @@
|
|
|
5409
5624
|
"default": "''",
|
|
5410
5625
|
"description": "Value attribute for form submission."
|
|
5411
5626
|
},
|
|
5627
|
+
{
|
|
5628
|
+
"kind": "method",
|
|
5629
|
+
"name": "updated"
|
|
5630
|
+
},
|
|
5631
|
+
{
|
|
5632
|
+
"kind": "method",
|
|
5633
|
+
"name": "formResetCallback"
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"kind": "method",
|
|
5637
|
+
"name": "checkValidity"
|
|
5638
|
+
},
|
|
5639
|
+
{
|
|
5640
|
+
"kind": "method",
|
|
5641
|
+
"name": "reportValidity"
|
|
5642
|
+
},
|
|
5412
5643
|
{
|
|
5413
5644
|
"kind": "method",
|
|
5414
5645
|
"name": "handleChange",
|
|
@@ -5738,6 +5969,23 @@
|
|
|
5738
5969
|
"static": true,
|
|
5739
5970
|
"default": "selectStyles"
|
|
5740
5971
|
},
|
|
5972
|
+
{
|
|
5973
|
+
"kind": "field",
|
|
5974
|
+
"name": "formAssociated",
|
|
5975
|
+
"type": {
|
|
5976
|
+
"text": "boolean"
|
|
5977
|
+
},
|
|
5978
|
+
"static": true,
|
|
5979
|
+
"default": "true"
|
|
5980
|
+
},
|
|
5981
|
+
{
|
|
5982
|
+
"kind": "field",
|
|
5983
|
+
"name": "_internals",
|
|
5984
|
+
"type": {
|
|
5985
|
+
"text": "ElementInternals"
|
|
5986
|
+
},
|
|
5987
|
+
"privacy": "private"
|
|
5988
|
+
},
|
|
5741
5989
|
{
|
|
5742
5990
|
"kind": "field",
|
|
5743
5991
|
"name": "variant",
|
|
@@ -5783,6 +6031,15 @@
|
|
|
5783
6031
|
"default": "''",
|
|
5784
6032
|
"description": "Label text displayed above the select."
|
|
5785
6033
|
},
|
|
6034
|
+
{
|
|
6035
|
+
"kind": "field",
|
|
6036
|
+
"name": "name",
|
|
6037
|
+
"type": {
|
|
6038
|
+
"text": "string"
|
|
6039
|
+
},
|
|
6040
|
+
"default": "''",
|
|
6041
|
+
"description": "Name used when submitting a form."
|
|
6042
|
+
},
|
|
5786
6043
|
{
|
|
5787
6044
|
"kind": "field",
|
|
5788
6045
|
"name": "helperText",
|
|
@@ -5910,8 +6167,19 @@
|
|
|
5910
6167
|
"text": "Map<string, unknown>"
|
|
5911
6168
|
}
|
|
5912
6169
|
}
|
|
5913
|
-
]
|
|
5914
|
-
|
|
6170
|
+
]
|
|
6171
|
+
},
|
|
6172
|
+
{
|
|
6173
|
+
"kind": "method",
|
|
6174
|
+
"name": "formResetCallback"
|
|
6175
|
+
},
|
|
6176
|
+
{
|
|
6177
|
+
"kind": "method",
|
|
6178
|
+
"name": "checkValidity"
|
|
6179
|
+
},
|
|
6180
|
+
{
|
|
6181
|
+
"kind": "method",
|
|
6182
|
+
"name": "reportValidity"
|
|
5915
6183
|
},
|
|
5916
6184
|
{
|
|
5917
6185
|
"kind": "method",
|
|
@@ -6477,6 +6745,23 @@
|
|
|
6477
6745
|
"static": true,
|
|
6478
6746
|
"default": "sliderStyles"
|
|
6479
6747
|
},
|
|
6748
|
+
{
|
|
6749
|
+
"kind": "field",
|
|
6750
|
+
"name": "formAssociated",
|
|
6751
|
+
"type": {
|
|
6752
|
+
"text": "boolean"
|
|
6753
|
+
},
|
|
6754
|
+
"static": true,
|
|
6755
|
+
"default": "true"
|
|
6756
|
+
},
|
|
6757
|
+
{
|
|
6758
|
+
"kind": "field",
|
|
6759
|
+
"name": "_internals",
|
|
6760
|
+
"type": {
|
|
6761
|
+
"text": "ElementInternals"
|
|
6762
|
+
},
|
|
6763
|
+
"privacy": "private"
|
|
6764
|
+
},
|
|
6480
6765
|
{
|
|
6481
6766
|
"kind": "field",
|
|
6482
6767
|
"name": "size",
|
|
@@ -6583,6 +6868,18 @@
|
|
|
6583
6868
|
"kind": "method",
|
|
6584
6869
|
"name": "updated"
|
|
6585
6870
|
},
|
|
6871
|
+
{
|
|
6872
|
+
"kind": "method",
|
|
6873
|
+
"name": "formResetCallback"
|
|
6874
|
+
},
|
|
6875
|
+
{
|
|
6876
|
+
"kind": "method",
|
|
6877
|
+
"name": "checkValidity"
|
|
6878
|
+
},
|
|
6879
|
+
{
|
|
6880
|
+
"kind": "method",
|
|
6881
|
+
"name": "reportValidity"
|
|
6882
|
+
},
|
|
6586
6883
|
{
|
|
6587
6884
|
"kind": "method",
|
|
6588
6885
|
"name": "_onInput",
|
|
@@ -7198,6 +7495,23 @@
|
|
|
7198
7495
|
"static": true,
|
|
7199
7496
|
"default": "switchStyles"
|
|
7200
7497
|
},
|
|
7498
|
+
{
|
|
7499
|
+
"kind": "field",
|
|
7500
|
+
"name": "formAssociated",
|
|
7501
|
+
"type": {
|
|
7502
|
+
"text": "boolean"
|
|
7503
|
+
},
|
|
7504
|
+
"static": true,
|
|
7505
|
+
"default": "true"
|
|
7506
|
+
},
|
|
7507
|
+
{
|
|
7508
|
+
"kind": "field",
|
|
7509
|
+
"name": "_internals",
|
|
7510
|
+
"type": {
|
|
7511
|
+
"text": "ElementInternals"
|
|
7512
|
+
},
|
|
7513
|
+
"privacy": "private"
|
|
7514
|
+
},
|
|
7201
7515
|
{
|
|
7202
7516
|
"kind": "field",
|
|
7203
7517
|
"name": "variant",
|
|
@@ -7279,6 +7593,30 @@
|
|
|
7279
7593
|
"default": "'on'",
|
|
7280
7594
|
"description": "Value attribute for form submission."
|
|
7281
7595
|
},
|
|
7596
|
+
{
|
|
7597
|
+
"kind": "method",
|
|
7598
|
+
"name": "updated",
|
|
7599
|
+
"description": "Handles switch change events.\nUpdates the checked state and dispatches a custom change event.",
|
|
7600
|
+
"parameters": [
|
|
7601
|
+
{
|
|
7602
|
+
"description": "The native change event",
|
|
7603
|
+
"name": "e"
|
|
7604
|
+
}
|
|
7605
|
+
],
|
|
7606
|
+
"privacy": "private"
|
|
7607
|
+
},
|
|
7608
|
+
{
|
|
7609
|
+
"kind": "method",
|
|
7610
|
+
"name": "formResetCallback"
|
|
7611
|
+
},
|
|
7612
|
+
{
|
|
7613
|
+
"kind": "method",
|
|
7614
|
+
"name": "checkValidity"
|
|
7615
|
+
},
|
|
7616
|
+
{
|
|
7617
|
+
"kind": "method",
|
|
7618
|
+
"name": "reportValidity"
|
|
7619
|
+
},
|
|
7282
7620
|
{
|
|
7283
7621
|
"kind": "method",
|
|
7284
7622
|
"name": "handleChange",
|
|
@@ -7288,11 +7626,9 @@
|
|
|
7288
7626
|
"name": "e",
|
|
7289
7627
|
"type": {
|
|
7290
7628
|
"text": "Event"
|
|
7291
|
-
}
|
|
7292
|
-
"description": "The native change event"
|
|
7629
|
+
}
|
|
7293
7630
|
}
|
|
7294
|
-
]
|
|
7295
|
-
"description": "Handles switch change events.\nUpdates the checked state and dispatches a custom change event."
|
|
7631
|
+
]
|
|
7296
7632
|
},
|
|
7297
7633
|
{
|
|
7298
7634
|
"kind": "method",
|
|
@@ -8347,6 +8683,23 @@
|
|
|
8347
8683
|
"static": true,
|
|
8348
8684
|
"default": "textfieldStyles"
|
|
8349
8685
|
},
|
|
8686
|
+
{
|
|
8687
|
+
"kind": "field",
|
|
8688
|
+
"name": "formAssociated",
|
|
8689
|
+
"type": {
|
|
8690
|
+
"text": "boolean"
|
|
8691
|
+
},
|
|
8692
|
+
"static": true,
|
|
8693
|
+
"default": "true"
|
|
8694
|
+
},
|
|
8695
|
+
{
|
|
8696
|
+
"kind": "field",
|
|
8697
|
+
"name": "_internals",
|
|
8698
|
+
"type": {
|
|
8699
|
+
"text": "ElementInternals"
|
|
8700
|
+
},
|
|
8701
|
+
"privacy": "private"
|
|
8702
|
+
},
|
|
8350
8703
|
{
|
|
8351
8704
|
"kind": "field",
|
|
8352
8705
|
"name": "variant",
|
|
@@ -8401,6 +8754,15 @@
|
|
|
8401
8754
|
"default": "''",
|
|
8402
8755
|
"description": "Label text displayed above the input."
|
|
8403
8756
|
},
|
|
8757
|
+
{
|
|
8758
|
+
"kind": "field",
|
|
8759
|
+
"name": "name",
|
|
8760
|
+
"type": {
|
|
8761
|
+
"text": "string"
|
|
8762
|
+
},
|
|
8763
|
+
"default": "''",
|
|
8764
|
+
"description": "Name used when submitting a form."
|
|
8765
|
+
},
|
|
8404
8766
|
{
|
|
8405
8767
|
"kind": "field",
|
|
8406
8768
|
"name": "helperText",
|
|
@@ -8588,6 +8950,18 @@
|
|
|
8588
8950
|
}
|
|
8589
8951
|
]
|
|
8590
8952
|
},
|
|
8953
|
+
{
|
|
8954
|
+
"kind": "method",
|
|
8955
|
+
"name": "formResetCallback"
|
|
8956
|
+
},
|
|
8957
|
+
{
|
|
8958
|
+
"kind": "method",
|
|
8959
|
+
"name": "checkValidity"
|
|
8960
|
+
},
|
|
8961
|
+
{
|
|
8962
|
+
"kind": "method",
|
|
8963
|
+
"name": "reportValidity"
|
|
8964
|
+
},
|
|
8591
8965
|
{
|
|
8592
8966
|
"kind": "method",
|
|
8593
8967
|
"name": "render"
|