@jack-henry/jh-elements 2.0.0-beta.11 → 2.0.0-beta.13
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/components/checkbox-group/checkbox-group.js +16 -4
- package/components/input/input.js +313 -252
- package/components/input-email/input-email.js +3 -4
- package/components/input-password/input-password.js +64 -54
- package/components/input-search/input-search.js +11 -8
- package/components/input-textarea/input-textarea.js +67 -175
- package/components/list-item/list-item.js +4 -1
- package/components/menu/menu.js +12 -1
- package/components/radio-group/radio-group.js +61 -6
- package/components/select/filtering.js +92 -0
- package/components/select/select.js +660 -0
- package/components/toast/toast.js +1 -5
- package/components/tooltip/tooltip.js +46 -65
- package/custom-elements.json +820 -183
- package/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -30,10 +30,14 @@ export class JhCheckboxGroup extends LitElement {
|
|
|
30
30
|
static get styles() {
|
|
31
31
|
return css`
|
|
32
32
|
:host {
|
|
33
|
-
font-family: var(--jh-font-helper-regular-font-family);
|
|
34
|
-
font-weight: var(--jh-font-helper-regular-font-weight);
|
|
35
|
-
font-size: var(--jh-font-helper-regular-font-size);
|
|
36
|
-
line-height: var(--jh-font-helper-regular-line-height);
|
|
33
|
+
--checkbox-group-helper-regular-font-family: var(--jh-font-helper-regular-font-family);
|
|
34
|
+
--checkbox-group-helper-regular-font-weight: var(--jh-font-helper-regular-font-weight);
|
|
35
|
+
--checkbox-group-helper-regular-font-size: var(--jh-font-helper-regular-font-size);
|
|
36
|
+
--checkbox-group-helper-regular-line-height: var(--jh-font-helper-regular-line-height);
|
|
37
|
+
font-family: var(--checkbox-group-helper-regular-font-family);
|
|
38
|
+
font-weight: var(--checkbox-group-helper-regular-font-weight);
|
|
39
|
+
font-size: var(--checkbox-group-helper-regular-font-size);
|
|
40
|
+
line-height: var(--checkbox-group-helper-regular-line-height);
|
|
37
41
|
display: block;
|
|
38
42
|
}
|
|
39
43
|
/* reset fieldset and legend for styling */
|
|
@@ -91,6 +95,10 @@ export class JhCheckboxGroup extends LitElement {
|
|
|
91
95
|
--jh-checkbox-group-label-color-text,
|
|
92
96
|
var(--jh-color-content-primary-enabled)
|
|
93
97
|
);
|
|
98
|
+
font-family: var(--jh-font-helper-medium-font-family);
|
|
99
|
+
font-weight: var(--jh-font-helper-medium-font-weight);
|
|
100
|
+
font-size: var(--jh-font-helper-medium-font-size);
|
|
101
|
+
line-height: var(--jh-font-helper-medium-line-height);
|
|
94
102
|
}
|
|
95
103
|
.helper-text {
|
|
96
104
|
color: var(
|
|
@@ -115,6 +123,10 @@ export class JhCheckboxGroup extends LitElement {
|
|
|
115
123
|
--jh-checkbox-group-required-color-text-optional,
|
|
116
124
|
var(--jh-color-content-primary-enabled)
|
|
117
125
|
);
|
|
126
|
+
font-family: var(--checkbox-group-helper-regular-font-family);
|
|
127
|
+
font-weight: var(--checkbox-group-helper-regular-font-weight);
|
|
128
|
+
font-size: var(--checkbox-group-helper-regular-font-size);
|
|
129
|
+
line-height: var(--checkbox-group-helper-regular-line-height);
|
|
118
130
|
}
|
|
119
131
|
:host([show-indicator][required]) .indicator {
|
|
120
132
|
color: var(
|