-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'DES/enhancement/css-refactor' into DES/enhancement/#705-…
…vl-refactor
- Loading branch information
Showing
32 changed files
with
702 additions
and
58,501 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import Model, { attr } from '@ember-data/model'; | ||
|
||
export default class ConfigModel extends Model { | ||
@attr('string') key; | ||
@attr('string') value; | ||
} |
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,15 +1,20 @@ | ||
import DS from 'ember-data'; | ||
import { alias } from '@ember/object/computed'; | ||
import ModelWithModifier from 'frontend-kaleidos/models/model-with-modifier'; | ||
import { | ||
attr, | ||
hasMany | ||
} from '@ember-data/model'; | ||
|
||
const { | ||
Model, attr, hasMany, | ||
} = DS; | ||
export default class Organization extends ModelWithModifier { | ||
@attr('string') name; | ||
@attr('datetime') created; | ||
|
||
export default Model.extend({ | ||
uri: attr(), | ||
name: attr(), | ||
identifier: attr(), // OVO-code | ||
member: hasMany('user'), | ||
// Has many . | ||
@hasMany('contact-person', { | ||
inverse: null, | ||
}) contactPersons; | ||
|
||
subjectPage: alias('uri'), | ||
}); | ||
// identifier: attr(), // OVO-code not used | ||
// member: hasMany('user'), not used. | ||
// abbreviation: attr('string'), not used. | ||
// subjectPage: alias('uri'), not used. | ||
} |
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
15 changes: 15 additions & 0 deletions
15
app/pods/components/web-components/au-power-select/component.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
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
Oops, something went wrong.