-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from timekit-io/VS-52235
VS-52233 fix for multi select
- Loading branch information
Showing
9 changed files
with
193 additions
and
55 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<div class="bookingjs-form-field bookingjs-form-field--checkbox"> | ||
<input | ||
id="input-{{ key }}" | ||
class="bookingjs-form-input--checkbox input-{{ key }}" | ||
type="checkbox" | ||
name="{{ key }}" | ||
value="true" | ||
{{# prefilled }} checked {{/ prefilled }} | ||
{{# readonly }} disabled {{/ readonly }} | ||
{{# required }} required {{/ required }} | ||
/> | ||
<div class="bookingjs-form-field bookingjs-form-field--checkbox"> | ||
<label | ||
for="input-{{ key }}" | ||
class="bookingjs-form-label--checkbox label-{{ key }}"> | ||
{{ title }} | ||
<input | ||
id="input-{{ key }}" | ||
class="bookingjs-form-input--checkbox input-{{ key }}" | ||
type="checkbox" | ||
name="{{ key }}" | ||
value="true" | ||
{{# prefilled }} checked {{/ prefilled }} | ||
{{# readonly }} disabled {{/ readonly }} | ||
{{# required }} required {{/ required }} | ||
/> | ||
</label> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div class="bookingjs-form-field {{# prefilled }}bookingjs-form-field--dirty{{/ prefilled }}"> | ||
<p | ||
for="input-{{ key }}" | ||
class="bookingjs-form-text label-{{ key }}"> | ||
{{& title }} | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<div class="bookingjs-form-field bookingjs-form-field--checkbox-multi"> | ||
<legend class="bookingjs-form-label">{{ title }}</legend> | ||
{{# enum }} | ||
<label | ||
for="input-{{ key }}-{{ . }}" | ||
class="bookingjs-form-label--checkbox label-{{ key }}"> | ||
<input | ||
type="checkbox" | ||
value="{{ . }}" | ||
name="{{ key }}" | ||
id="input-{{ key }}-{{ . }}" | ||
{{# prefilled }} checked {{/ prefilled }} | ||
{{# readonly }} disabled {{/ readonly }} | ||
{{# required }} required {{/ required }} | ||
class="bookingjs-form-input--checkbox input-{{ key }}" | ||
/> | ||
{{ . }} | ||
</label> | ||
{{/ enum }} | ||
</div> |