Skip to content

Commit

Permalink
remove spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
geospatialem committed Jan 15, 2025
1 parent 9ce3f21 commit 58d922f
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class Checkbox

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export class Combobox

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class DatePicker extends LitElement implements LoadableComponent {

/**
* When the component resides in a form,
* specifies the latest allowed date (`"yyyy-mm-dd"`).
* specifies the latest allowed date (`"yyyy-mm-dd"`).
*/
@property({ reflect: true }) max: string;

Expand All @@ -119,7 +119,7 @@ export class DatePicker extends LitElement implements LoadableComponent {

/**
* When the component resides in a form,
* specifies the earliest allowed date (`"yyyy-mm-dd"`).
* specifies the earliest allowed date (`"yyyy-mm-dd"`).
*/
@property({ reflect: true }) min: string;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export class InputDatePicker

/**
* When the component resides in a form,
* specifies the latest allowed date ("yyyy-mm-dd").
* specifies the latest allowed date ("yyyy-mm-dd").
*/
@property({ reflect: true }) max: string;

Expand All @@ -223,7 +223,7 @@ export class InputDatePicker

/**
* When the component resides in a form,
* specifies the earliest allowed date ("yyyy-mm-dd").
* specifies the earliest allowed date ("yyyy-mm-dd").
*/
@property({ reflect: true }) min: string;

Expand Down Expand Up @@ -280,7 +280,7 @@ export class InputDatePicker

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export class InputNumber

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
2 changes: 1 addition & 1 deletion packages/calcite-components/src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ export class Input

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class RadioButtonGroup extends LitElement implements LoadableComponent {

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class RadioButton

/**
* When `true` and the component resides in a form,
* the component must have a value selected from the `calcite-radio-button-group` in order for the form to submit.
* the component must have a value selected from the `calcite-radio-button-group` in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class SegmentedControl

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class Select

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class Slider

/**
* When `true` and the component resides in a form,
* the component must have a value in order for the form to submit.
* the component must have a value in order for the form to submit.
*/
@property({ reflect: true }) required = false;

Expand Down

0 comments on commit 58d922f

Please sign in to comment.