@syncfusion/ej2-vue-layouts 20.4.53 → 21.1.35

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +0 -12
  2. package/dist/ej2-vue-layouts.umd.min.js +2 -2
  3. package/dist/ej2-vue-layouts.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-layouts.es2015.js +226 -336
  5. package/dist/es6/ej2-vue-layouts.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-layouts.es5.js +257 -401
  7. package/dist/es6/ej2-vue-layouts.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-layouts.min.js +2 -2
  9. package/package.json +9 -9
  10. package/src/dashboard-layout/dashboardlayout.component.d.ts +3 -30
  11. package/src/dashboard-layout/dashboardlayout.component.js +107 -136
  12. package/src/dashboard-layout/panels.directive.d.ts +2 -12
  13. package/src/dashboard-layout/panels.directive.js +22 -71
  14. package/src/splitter/panesettings.directive.d.ts +2 -12
  15. package/src/splitter/panesettings.directive.js +22 -71
  16. package/src/splitter/splitter.component.d.ts +3 -26
  17. package/src/splitter/splitter.component.js +95 -124
  18. package/styles/avatar/bootstrap-dark.css +3 -0
  19. package/styles/avatar/bootstrap.css +3 -0
  20. package/styles/avatar/bootstrap4.css +3 -0
  21. package/styles/avatar/bootstrap5-dark.css +3 -0
  22. package/styles/avatar/bootstrap5.css +3 -0
  23. package/styles/avatar/fabric-dark.css +3 -0
  24. package/styles/avatar/fabric.css +3 -0
  25. package/styles/avatar/fluent-dark.css +3 -0
  26. package/styles/avatar/fluent.css +3 -0
  27. package/styles/avatar/highcontrast-light.css +3 -0
  28. package/styles/avatar/highcontrast.css +3 -0
  29. package/styles/avatar/material-dark.css +3 -0
  30. package/styles/avatar/material.css +3 -0
  31. package/styles/avatar/tailwind-dark.css +3 -0
  32. package/styles/avatar/tailwind.css +3 -0
  33. package/styles/bootstrap-dark.css +5 -1
  34. package/styles/bootstrap.css +5 -1
  35. package/styles/bootstrap4.css +5 -1
  36. package/styles/bootstrap5-dark.css +5 -1
  37. package/styles/bootstrap5.css +5 -1
  38. package/styles/card/bootstrap-dark.css +2 -1
  39. package/styles/card/bootstrap.css +2 -1
  40. package/styles/card/bootstrap4.css +2 -1
  41. package/styles/card/bootstrap5-dark.css +2 -1
  42. package/styles/card/bootstrap5.css +2 -1
  43. package/styles/card/fabric-dark.css +2 -1
  44. package/styles/card/fabric.css +2 -1
  45. package/styles/card/fluent-dark.css +2 -1
  46. package/styles/card/fluent.css +2 -1
  47. package/styles/card/highcontrast-light.css +2 -1
  48. package/styles/card/highcontrast.css +2 -1
  49. package/styles/card/material-dark.css +2 -1
  50. package/styles/card/material.css +2 -1
  51. package/styles/card/tailwind-dark.css +2 -1
  52. package/styles/card/tailwind.css +2 -1
  53. package/styles/fabric-dark.css +5 -1
  54. package/styles/fabric.css +5 -1
  55. package/styles/fluent-dark.css +5 -1
  56. package/styles/fluent.css +5 -1
  57. package/styles/highcontrast-light.css +5 -1
  58. package/styles/highcontrast.css +5 -1
  59. package/styles/material-dark.css +5 -1
  60. package/styles/material.css +5 -1
  61. package/styles/tailwind-dark.css +5 -1
  62. package/styles/tailwind.css +5 -1
@@ -1,38 +1,15 @@
1
- import { ComponentBase } from '@syncfusion/ej2-vue-base';
2
1
  export declare const properties: string[];
3
2
  export declare const modelProps: string[];
4
3
  export declare const testProp: any;
5
- export declare const props: any;
6
- export declare const watch: any;
7
- export declare const emitProbs: any;
4
+ export declare const props: any, watch: any, emitProbs: any;
8
5
  /**
9
6
  * Represents the VueJS Splitter component
10
7
  * ```html
11
8
  * <ejs-splitter></ejs-splitter>
12
9
  * ```
13
10
  */
14
- export declare class SplitterComponent extends ComponentBase {
15
- ej2Instances: any;
16
- propKeys: string[];
17
- models: string[];
18
- hasChildDirective: boolean;
19
- protected hasInjectedModules: boolean;
20
- tagMapper: {
21
- [key: string]: Object;
22
- };
23
- tagNameMapper: Object;
24
- isVue3: boolean;
25
- templateCollection: any;
26
- constructor();
27
- clearTemplate(templateNames?: string[]): any;
28
- setProperties(prop: any, muteOnChange: boolean): void;
29
- render(createElement: any): any;
30
- custom(): void;
31
- addPane(paneProperties: Object, index: number): void;
32
- collapse(index: number): void;
33
- expand(index: number): void;
34
- removePane(index: number): void;
35
- }
11
+ export declare let SplitterComponent: any;
12
+ export declare type SplitterComponent = InstanceType<typeof SplitterComponent>;
36
13
  export declare const SplitterPlugin: {
37
14
  name: string;
38
15
  install(Vue: any): void;
@@ -1,33 +1,11 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
20
- import { ComponentBase, EJComponentDecorator, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
1
+ import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
21
2
  import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
22
3
  import { Splitter } from '@syncfusion/ej2-layouts';
23
4
  import { PanesDirective, PaneDirective, PanesPlugin, PanePlugin } from './panesettings.directive';
24
- import { Options } from 'vue-class-component';
25
5
  export var properties = ['isLazyUpdate', 'plugins', 'cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width', 'beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
26
6
  export var modelProps = [];
27
7
  export var testProp = getProps({ props: properties });
28
- export var props = testProp[0];
29
- export var watch = testProp[1];
30
- export var emitProbs = Object.keys(watch);
8
+ export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
31
9
  emitProbs.push('modelchanged', 'update:modelValue');
32
10
  for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
33
11
  var props_1 = modelProps_1[_i];
@@ -39,114 +17,107 @@ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
39
17
  * <ejs-splitter></ejs-splitter>
40
18
  * ```
41
19
  */
42
- var SplitterComponent = /** @class */ (function (_super) {
43
- __extends(SplitterComponent, _super);
44
- function SplitterComponent() {
45
- var _this = _super.call(this, arguments) || this;
46
- _this.propKeys = properties;
47
- _this.models = modelProps;
48
- _this.hasChildDirective = true;
49
- _this.hasInjectedModules = false;
50
- _this.tagMapper = { "e-panes": "e-pane" };
51
- _this.tagNameMapper = { "e-panes": "e-paneSettings" };
52
- _this.isVue3 = !isExecute;
53
- _this.ej2Instances = new Splitter({});
54
- _this.bindProperties();
55
- _this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
56
- _this.ej2Instances.setProperties = _this.setProperties;
57
- _this.ej2Instances.clearTemplate = _this.clearTemplate;
58
- _this.updated = _this.updated;
59
- return _this;
60
- }
61
- SplitterComponent.prototype.clearTemplate = function (templateNames) {
62
- if (!templateNames) {
63
- templateNames = Object.keys(this.templateCollection || {});
20
+ export var SplitterComponent = vueDefineComponent({
21
+ name: 'SplitterComponent',
22
+ mixins: [ComponentBase],
23
+ props: props,
24
+ watch: watch,
25
+ emits: emitProbs,
26
+ provide: function () { return { custom: this.custom }; },
27
+ data: function () {
28
+ return {
29
+ ej2Instances: new Splitter({}),
30
+ propKeys: properties,
31
+ models: modelProps,
32
+ hasChildDirective: true,
33
+ hasInjectedModules: false,
34
+ tagMapper: { "e-panes": "e-pane" },
35
+ tagNameMapper: { "e-panes": "e-paneSettings" },
36
+ isVue3: !isExecute,
37
+ templateCollection: {},
38
+ };
39
+ },
40
+ created: function () {
41
+ this.bindProperties();
42
+ this.ej2Instances._setProperties = this.ej2Instances.setProperties;
43
+ this.ej2Instances.setProperties = this.setProperties;
44
+ this.ej2Instances.clearTemplate = this.clearTemplate;
45
+ this.updated = this.updated;
46
+ },
47
+ render: function (createElement) {
48
+ var h = !isExecute ? gh : createElement;
49
+ var slots = null;
50
+ if (!isNullOrUndefined(this.$slots.default)) {
51
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
64
52
  }
65
- if (templateNames.length && this.templateCollection) {
66
- for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
67
- var tempName = templateNames_1[_i];
68
- var elementCollection = this.templateCollection[tempName];
69
- if (elementCollection && elementCollection.length) {
70
- for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
71
- var ele = elementCollection_1[_a];
72
- var destroy = getValue('__vue__.$destroy', ele);
73
- if (destroy) {
74
- ele.__vue__.$destroy();
75
- }
76
- if (ele.innerHTML) {
77
- ele.innerHTML = '';
53
+ return h('div', slots);
54
+ },
55
+ methods: {
56
+ clearTemplate: function (templateNames) {
57
+ if (!templateNames) {
58
+ templateNames = Object.keys(this.templateCollection || {});
59
+ }
60
+ if (templateNames.length && this.templateCollection) {
61
+ for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
62
+ var tempName = templateNames_1[_i];
63
+ var elementCollection = this.templateCollection[tempName];
64
+ if (elementCollection && elementCollection.length) {
65
+ for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
66
+ var ele = elementCollection_1[_a];
67
+ var destroy = getValue('__vue__.$destroy', ele);
68
+ if (destroy) {
69
+ ele.__vue__.$destroy();
70
+ }
71
+ if (ele.innerHTML) {
72
+ ele.innerHTML = '';
73
+ }
78
74
  }
75
+ delete this.templateCollection[tempName];
79
76
  }
80
- delete this.templateCollection[tempName];
81
77
  }
82
78
  }
83
- }
84
- };
85
- SplitterComponent.prototype.setProperties = function (prop, muteOnChange) {
86
- var _this = this;
87
- if (this.isVue3) {
88
- this.models = !this.models ? this.ej2Instances.referModels : this.models;
89
- }
90
- if (this.ej2Instances && this.ej2Instances._setProperties) {
91
- this.ej2Instances._setProperties(prop, muteOnChange);
92
- }
93
- if (prop && this.models && this.models.length) {
94
- Object.keys(prop).map(function (key) {
95
- _this.models.map(function (model) {
96
- if ((key === model) && !(/datasource/i.test(key))) {
97
- if (_this.isVue3) {
98
- _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
99
- }
100
- else {
101
- _this.$emit('update:' + key, prop[key]);
102
- _this.$emit('modelchanged', prop[key]);
79
+ },
80
+ setProperties: function (prop, muteOnChange) {
81
+ var _this = this;
82
+ if (this.isVue3) {
83
+ this.models = !this.models ? this.ej2Instances.referModels : this.models;
84
+ }
85
+ if (this.ej2Instances && this.ej2Instances._setProperties) {
86
+ this.ej2Instances._setProperties(prop, muteOnChange);
87
+ }
88
+ if (prop && this.models && this.models.length) {
89
+ Object.keys(prop).map(function (key) {
90
+ _this.models.map(function (model) {
91
+ if ((key === model) && !(/datasource/i.test(key))) {
92
+ if (_this.isVue3) {
93
+ _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
94
+ }
95
+ else {
96
+ _this.$emit('update:' + key, prop[key]);
97
+ _this.$emit('modelchanged', prop[key]);
98
+ }
103
99
  }
104
- }
100
+ });
105
101
  });
106
- });
107
- }
108
- };
109
- SplitterComponent.prototype.render = function (createElement) {
110
- var h = !isExecute ? gh : createElement;
111
- var slots = null;
112
- if (!isNullOrUndefined(this.$slots.default)) {
113
- slots = !isExecute ? this.$slots.default() : this.$slots.default;
114
- }
115
- return h('div', slots);
116
- };
117
- SplitterComponent.prototype.custom = function () {
118
- this.updated();
119
- };
120
- SplitterComponent.prototype.addPane = function (paneProperties, index) {
121
- return this.ej2Instances.addPane(paneProperties, index);
122
- };
123
- SplitterComponent.prototype.collapse = function (index) {
124
- return this.ej2Instances.collapse(index);
125
- };
126
- SplitterComponent.prototype.expand = function (index) {
127
- return this.ej2Instances.expand(index);
128
- };
129
- SplitterComponent.prototype.removePane = function (index) {
130
- return this.ej2Instances.removePane(index);
131
- };
132
- SplitterComponent = __decorate([
133
- EJComponentDecorator({
134
- props: properties
135
- }, isExecute)
136
- ,Options({
137
- props: props,
138
- watch: watch,
139
- emits: emitProbs,
140
- provide: function provide() {
141
- return {
142
- custom: this.custom
143
- };
144
102
  }
145
- })
146
- ], SplitterComponent);
147
- return SplitterComponent;
148
- }(ComponentBase));
149
- export { SplitterComponent };
103
+ },
104
+ custom: function () {
105
+ this.updated();
106
+ },
107
+ addPane: function (paneProperties, index) {
108
+ return this.ej2Instances.addPane(paneProperties, index);
109
+ },
110
+ collapse: function (index) {
111
+ return this.ej2Instances.collapse(index);
112
+ },
113
+ expand: function (index) {
114
+ return this.ej2Instances.expand(index);
115
+ },
116
+ removePane: function (index) {
117
+ return this.ej2Instances.removePane(index);
118
+ },
119
+ }
120
+ });
150
121
  export var SplitterPlugin = {
151
122
  name: 'ejs-splitter',
152
123
  install: function (Vue) {
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.65em;
33
36
  }
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 0.6em;
34
37
  }
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 0.6em;
34
37
  }
@@ -30,6 +30,9 @@
30
30
  .e-avatar.e-avatar-circle {
31
31
  border-radius: 50%;
32
32
  }
33
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
34
+ border-radius: 50%;
35
+ }
33
36
  .e-avatar.e-avatar-xsmall {
34
37
  font-size: 10px;
35
38
  height: 24px;
@@ -30,6 +30,9 @@
30
30
  .e-avatar.e-avatar-circle {
31
31
  border-radius: 50%;
32
32
  }
33
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
34
+ border-radius: 50%;
35
+ }
33
36
  .e-avatar.e-avatar-xsmall {
34
37
  font-size: 10px;
35
38
  height: 24px;
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -473,6 +476,7 @@
473
476
  font-size: 14px;
474
477
  line-height: normal;
475
478
  padding: 16px;
479
+ word-wrap: break-word;
476
480
  }
477
481
  .e-card .e-card-content + :not(.e-card-content),
478
482
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -490,7 +494,7 @@
490
494
  /* stylelint-disable property-no-vendor-prefix */
491
495
  .e-card {
492
496
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
493
- background-color: #6e6e6e;
497
+ background: #6e6e6e;
494
498
  border: 1px solid #1a1a1a;
495
499
  box-shadow: none;
496
500
  color: #fff;
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.6em;
33
36
  }
@@ -474,6 +477,7 @@
474
477
  font-size: 14px;
475
478
  line-height: normal;
476
479
  padding: 12px;
480
+ word-wrap: break-word;
477
481
  }
478
482
  .e-card .e-card-content + :not(.e-card-content),
479
483
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -491,7 +495,7 @@
491
495
  /* stylelint-disable property-no-vendor-prefix */
492
496
  .e-card {
493
497
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
494
- background-color: #fff;
498
+ background: #fff;
495
499
  border: 1px solid #ddd;
496
500
  box-shadow: none;
497
501
  color: #333;
@@ -28,6 +28,9 @@
28
28
  .e-avatar.e-avatar-circle {
29
29
  border-radius: 50%;
30
30
  }
31
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
32
+ border-radius: 50%;
33
+ }
31
34
  .e-avatar.e-avatar-xsmall {
32
35
  font-size: 0.65em;
33
36
  }
@@ -479,6 +482,7 @@
479
482
  font-size: 14px;
480
483
  line-height: normal;
481
484
  padding: 16px;
485
+ word-wrap: break-word;
482
486
  }
483
487
  .e-card .e-card-content + :not(.e-card-content),
484
488
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -496,7 +500,7 @@
496
500
  /* stylelint-disable property-no-vendor-prefix */
497
501
  .e-card {
498
502
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
499
- background-color: #fff;
503
+ background: #fff;
500
504
  border: 1px solid rgba(0, 0, 0, 0.12);
501
505
  box-shadow: none;
502
506
  color: #212529;
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -488,6 +491,7 @@
488
491
  font-size: 14px;
489
492
  line-height: 1.5;
490
493
  padding: 12px;
494
+ word-wrap: break-word;
491
495
  }
492
496
  .e-card .e-card-content + :not(.e-card-content),
493
497
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -505,7 +509,7 @@
505
509
  /* stylelint-disable property-no-vendor-prefix */
506
510
  .e-card {
507
511
  -webkit-tap-highlight-color: #0d6efd;
508
- background-color: #212529;
512
+ background: #212529;
509
513
  border: 1px solid #444c54;
510
514
  box-shadow: none;
511
515
  color: #fff;
@@ -29,6 +29,9 @@
29
29
  .e-avatar.e-avatar-circle {
30
30
  border-radius: 50%;
31
31
  }
32
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
33
+ border-radius: 50%;
34
+ }
32
35
  .e-avatar.e-avatar-xsmall {
33
36
  font-size: 10px;
34
37
  height: 24px;
@@ -488,6 +491,7 @@
488
491
  font-size: 14px;
489
492
  line-height: 1.5;
490
493
  padding: 12px;
494
+ word-wrap: break-word;
491
495
  }
492
496
  .e-card .e-card-content + :not(.e-card-content),
493
497
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -505,7 +509,7 @@
505
509
  /* stylelint-disable property-no-vendor-prefix */
506
510
  .e-card {
507
511
  -webkit-tap-highlight-color: #0d6efd;
508
- background-color: #fff;
512
+ background: #fff;
509
513
  border: 1px solid #dee2e6;
510
514
  box-shadow: none;
511
515
  color: #212529;
@@ -430,6 +430,7 @@
430
430
  font-size: 14px;
431
431
  line-height: normal;
432
432
  padding: 16px;
433
+ word-wrap: break-word;
433
434
  }
434
435
  .e-card .e-card-content + :not(.e-card-content),
435
436
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -447,7 +448,7 @@
447
448
  /* stylelint-disable property-no-vendor-prefix */
448
449
  .e-card {
449
450
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
450
- background-color: #6e6e6e;
451
+ background: #6e6e6e;
451
452
  border: 1px solid #1a1a1a;
452
453
  box-shadow: none;
453
454
  color: #fff;
@@ -431,6 +431,7 @@
431
431
  font-size: 14px;
432
432
  line-height: normal;
433
433
  padding: 12px;
434
+ word-wrap: break-word;
434
435
  }
435
436
  .e-card .e-card-content + :not(.e-card-content),
436
437
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -448,7 +449,7 @@
448
449
  /* stylelint-disable property-no-vendor-prefix */
449
450
  .e-card {
450
451
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
451
- background-color: #fff;
452
+ background: #fff;
452
453
  border: 1px solid #ddd;
453
454
  box-shadow: none;
454
455
  color: #333;
@@ -436,6 +436,7 @@
436
436
  font-size: 14px;
437
437
  line-height: normal;
438
438
  padding: 16px;
439
+ word-wrap: break-word;
439
440
  }
440
441
  .e-card .e-card-content + :not(.e-card-content),
441
442
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -453,7 +454,7 @@
453
454
  /* stylelint-disable property-no-vendor-prefix */
454
455
  .e-card {
455
456
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
456
- background-color: #fff;
457
+ background: #fff;
457
458
  border: 1px solid rgba(0, 0, 0, 0.12);
458
459
  box-shadow: none;
459
460
  color: #212529;
@@ -430,6 +430,7 @@
430
430
  font-size: 14px;
431
431
  line-height: 1.5;
432
432
  padding: 12px;
433
+ word-wrap: break-word;
433
434
  }
434
435
  .e-card .e-card-content + :not(.e-card-content),
435
436
  .e-card .e-card-content + .e-card-actions.e-card-vertical {
@@ -447,7 +448,7 @@
447
448
  /* stylelint-disable property-no-vendor-prefix */
448
449
  .e-card {
449
450
  -webkit-tap-highlight-color: #0d6efd;
450
- background-color: #212529;
451
+ background: #212529;
451
452
  border: 1px solid #444c54;
452
453
  box-shadow: none;
453
454
  color: #fff;