-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d598f5
commit e1c4bfc
Showing
26 changed files
with
170 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
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
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/button-select.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class ButtonSelect extends CustomField { | ||
|
||
static get is() {return 'button-select'} | ||
|
||
} | ||
|
||
customElements.define(ButtonSelect.is, ButtonSelect); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/collection-field.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class CollectionField extends CustomField { | ||
|
||
static get is() {return 'collection-field'} | ||
|
||
} | ||
|
||
customElements.define(CollectionField.is, CollectionField); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/component-select.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class ComponentSelect extends CustomField { | ||
|
||
static get is() {return 'component-select'} | ||
|
||
} | ||
|
||
customElements.define(ComponentSelect.is, ComponentSelect); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/grid-multi-select.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class GridMultiSelect extends CustomField { | ||
|
||
static get is() {return 'grid-multi-select'} | ||
|
||
} | ||
|
||
customElements.define(GridMultiSelect.is, GridMultiSelect); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/grid-select.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class GridSelect extends CustomField { | ||
|
||
static get is() {return 'grid-select'} | ||
|
||
} | ||
|
||
customElements.define(GridSelect.is, GridSelect); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/header-footer-field-wrapper.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class HeaderFooterFieldWrapper extends CustomField { | ||
|
||
static get is() {return 'header-footer-field-wrapper'} | ||
|
||
} | ||
|
||
customElements.define(HeaderFooterFieldWrapper.is, HeaderFooterFieldWrapper); |
11 changes: 11 additions & 0 deletions
11
superfields/src/main/resources/META-INF/resources/frontend/item-grid.js
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,11 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
export class ItemGrid extends CustomField { | ||
|
||
static get is() { | ||
return 'item-grid'; | ||
} | ||
|
||
} | ||
|
||
customElements.define(ItemGrid.is, ItemGrid); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/label-field.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class LabelField extends CustomField { | ||
|
||
static get is() {return 'label-field'} | ||
|
||
} | ||
|
||
customElements.define(LabelField.is, LabelField); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/map-entry-field.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class MapEntryField extends CustomField { | ||
|
||
static get is() {return 'map-entry-field'} | ||
|
||
} | ||
|
||
customElements.define(MapEntryField.is, MapEntryField); |
9 changes: 9 additions & 0 deletions
9
superfields/src/main/resources/META-INF/resources/frontend/map-field.js
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,9 @@ | ||
import {CustomField} from '@vaadin/custom-field'; | ||
|
||
class MapField extends CustomField { | ||
|
||
static get is() {return 'map-field'} | ||
|
||
} | ||
|
||
customElements.define(MapField.is, MapField); |
Oops, something went wrong.