@xdam/ember-partials 2.0.0 → 2.0.3
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/addon/components/xep-dialog-actions.hbs +9 -0
- package/addon/components/xep-dialog-actions.js +2 -17
- package/addon/components/xep-dialog-content.hbs +6 -0
- package/addon/components/xep-dialog-content.js +2 -14
- package/addon/components/xep-dialog-title.hbs +2 -0
- package/addon/components/xep-dialog-title.js +2 -14
- package/addon/components/xep-list-item-graphic.hbs +6 -0
- package/addon/components/xep-list-item-graphic.js +2 -17
- package/addon/templates/components/xep-button.hbs +7 -4
- package/app/styles/ember-partials/xdam-theme.scss +7 -0
- package/app/styles/ember-partials.scss +30 -17
- package/package.json +1 -1
- package/addon/templates/components/xep-dialog-actions.hbs +0 -4
- package/addon/templates/components/xep-dialog-content.hbs +0 -1
- package/addon/templates/components/xep-dialog-title.hbs +0 -1
- package/addon/templates/components/xep-list-item-graphic.hbs +0 -1
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
import Component from '@
|
|
2
|
-
import {
|
|
3
|
-
classNames, layout, tagName, attribute,
|
|
4
|
-
} from '@ember-decorators/component';
|
|
5
|
-
import template from '@xdam/ember-partials/templates/components/xep-dialog-actions';
|
|
1
|
+
import Component from '@glimmer/component';
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
@layout(template)
|
|
9
|
-
@classNames('xep-dialog-actions', 'mdc-dialog__actions')
|
|
10
|
-
export default class XepDialogActionsComponent extends Component {
|
|
11
|
-
/**
|
|
12
|
-
* Add a test selector for data attribute: `[data-test-dialog-actions]`
|
|
13
|
-
* @argument [testSelector]
|
|
14
|
-
* @type {String}
|
|
15
|
-
*/
|
|
16
|
-
@attribute('data-test-dialog-actions')
|
|
17
|
-
testSelector;
|
|
18
|
-
}
|
|
3
|
+
export default class XepDialogActionsComponent extends Component {}
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
import Component from '@
|
|
2
|
-
import { classNames, layout, attribute } from '@ember-decorators/component';
|
|
3
|
-
import template from '@xdam/ember-partials/templates/components/xep-dialog-content';
|
|
1
|
+
import Component from '@glimmer/component';
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
@classNames('xep-dialog-content', 'mdc-dialog__content')
|
|
7
|
-
export default class XepDialogContentComponent extends Component {
|
|
8
|
-
/**
|
|
9
|
-
* Add a test selector for data attribute: `[data-test-dialog-content]`
|
|
10
|
-
* @argument [testSelector]
|
|
11
|
-
* @type {String}
|
|
12
|
-
*/
|
|
13
|
-
@attribute('data-test-dialog-content')
|
|
14
|
-
testSelector;
|
|
15
|
-
}
|
|
3
|
+
export default class XepDialogContentComponent extends Component {}
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
import Component from '@
|
|
2
|
-
import { classNames, layout, attribute } from '@ember-decorators/component';
|
|
3
|
-
import template from '@xdam/ember-partials/templates/components/xep-dialog-title';
|
|
1
|
+
import Component from '@glimmer/component';
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
@classNames('xep-dialog-title', 'mdc-dialog__title')
|
|
7
|
-
export default class XepDialogTitleComponent extends Component {
|
|
8
|
-
/**
|
|
9
|
-
* Add a test selector for data attribute: `[data-test-dialog-title]`
|
|
10
|
-
* @argument [testSelector]
|
|
11
|
-
* @type {String}
|
|
12
|
-
*/
|
|
13
|
-
@attribute('data-test-dialog-title')
|
|
14
|
-
testSelector;
|
|
15
|
-
}
|
|
3
|
+
export default class XepDialogTitleComponent extends Component {}
|
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
import Component from '@
|
|
2
|
-
import {
|
|
3
|
-
classNames, layout, tagName, attribute,
|
|
4
|
-
} from '@ember-decorators/component';
|
|
5
|
-
import template from '@xdam/ember-partials/templates/components/xep-list-item-graphic';
|
|
1
|
+
import Component from '@glimmer/component';
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
@layout(template)
|
|
9
|
-
@classNames('xep-list-item-graphic', 'mdc-list-item__graphic')
|
|
10
|
-
export default class XepListItemGraphicComponent extends Component {
|
|
11
|
-
/**
|
|
12
|
-
* Add a test selector for data attribute: `[data-test-list-item-graphic]`
|
|
13
|
-
* @argument [testSelector]
|
|
14
|
-
* @type {String}
|
|
15
|
-
*/
|
|
16
|
-
@attribute('data-test-list-item-graphic')
|
|
17
|
-
testSelector;
|
|
18
|
-
}
|
|
3
|
+
export default class XepListItemGraphicComponent extends Component {}
|
|
@@ -1,24 +1,37 @@
|
|
|
1
|
+
@use "@material/animation";
|
|
2
|
+
@use "@material/typography/mdc-typography";
|
|
3
|
+
@use "@material/button/styles" as button-styles;
|
|
4
|
+
@use "@material/line-ripple/mdc-line-ripple";
|
|
5
|
+
@use "@material/notched-outline/mdc-notched-outline";
|
|
6
|
+
@use "@material/textfield";
|
|
7
|
+
@use "@material/list";
|
|
8
|
+
@use "@material/slider/styles" as slider-styles;
|
|
9
|
+
@use "@material/dialog";
|
|
10
|
+
@use "@material/drawer";
|
|
11
|
+
@use "@material/list/mdc-list";
|
|
12
|
+
@use "@material/menu-surface/mdc-menu-surface";
|
|
13
|
+
@use "@material/menu/mdc-menu";
|
|
14
|
+
@use "@material/checkbox";
|
|
15
|
+
@use "@material/form-field";
|
|
16
|
+
@use "@material/radio/styles" as radio-styles;
|
|
17
|
+
@use '@material/switch/styles' as switch-styles;
|
|
18
|
+
@use "@material/chips/styles" as chips-styles;
|
|
19
|
+
@use "@material/snackbar/mdc-snackbar";
|
|
20
|
+
|
|
1
21
|
@import 'ember-partials/variables';
|
|
2
22
|
@import 'ember-partials/mixins/breakpoints';
|
|
3
23
|
@import 'ember-partials/mixins/strip-unit';
|
|
4
24
|
@import 'ember-partials/helpers/root';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
13
|
-
@
|
|
14
|
-
|
|
15
|
-
@import "@material/form-field/mdc-form-field";
|
|
16
|
-
@import "@material/checkbox/mdc-checkbox";
|
|
17
|
-
@import "@material/radio/mdc-radio";
|
|
18
|
-
@import "@material/switch/styles";
|
|
19
|
-
@import "@material/chips/styles";
|
|
20
|
-
@import "@material/snackbar/mdc-snackbar";
|
|
21
|
-
@import "@material/animation/variables";
|
|
25
|
+
|
|
26
|
+
// material design components
|
|
27
|
+
@include textfield.core-styles;
|
|
28
|
+
@include dialog.core-styles;
|
|
29
|
+
@include drawer.core-styles;
|
|
30
|
+
@include drawer.dismissible-core-styles;
|
|
31
|
+
@include drawer.modal-core-styles;
|
|
32
|
+
@include checkbox.core-styles;
|
|
33
|
+
@include form-field.core-styles;
|
|
34
|
+
|
|
22
35
|
@import 'ember-partials/components/xep-avatar';
|
|
23
36
|
@import 'ember-partials/components/xep-drawer';
|
|
24
37
|
@import 'ember-partials/components/xep-bubble';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{yield}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{yield}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{yield}}
|