@syncfusion/ej2-vue-layouts 21.2.9 → 22.1.34

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 (37) hide show
  1. package/CHANGELOG.md +2 -0
  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 +2 -2
  5. package/dist/es6/ej2-vue-layouts.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-layouts.es5.js +2 -2
  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 +8 -8
  10. package/src/dashboard-layout/dashboardlayout.component.js +1 -1
  11. package/src/splitter/splitter.component.js +1 -1
  12. package/styles/avatar/material3-dark.css +114 -0
  13. package/styles/avatar/material3-dark.scss +2 -0
  14. package/styles/avatar/material3.css +170 -0
  15. package/styles/avatar/material3.scss +2 -0
  16. package/styles/bootstrap4.css +3 -2
  17. package/styles/card/bootstrap4.css +3 -2
  18. package/styles/card/fabric.css +1 -1
  19. package/styles/card/highcontrast.css +1 -1
  20. package/styles/card/material3-dark.css +567 -0
  21. package/styles/card/material3-dark.scss +2 -0
  22. package/styles/card/material3.css +623 -0
  23. package/styles/card/material3.scss +2 -0
  24. package/styles/dashboard-layout/material3-dark.css +357 -0
  25. package/styles/dashboard-layout/material3-dark.scss +2 -0
  26. package/styles/dashboard-layout/material3.css +413 -0
  27. package/styles/dashboard-layout/material3.scss +2 -0
  28. package/styles/fabric.css +1 -1
  29. package/styles/highcontrast.css +1 -1
  30. package/styles/material3-dark.css +1583 -0
  31. package/styles/material3-dark.scss +5 -0
  32. package/styles/material3.css +1804 -0
  33. package/styles/material3.scss +5 -0
  34. package/styles/splitter/material3-dark.css +543 -0
  35. package/styles/splitter/material3-dark.scss +2 -0
  36. package/styles/splitter/material3.css +599 -0
  37. package/styles/splitter/material3.scss +2 -0
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-layouts@*",
3
- "_id": "@syncfusion/ej2-vue-layouts@21.2.6",
3
+ "_id": "@syncfusion/ej2-vue-layouts@21.3.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-a79REdwgVI8I1hP4bP/DDZHA0hDmChpawWmgD82EiZc2l8awl1hy1Mb85gFANwiof2fZIYjqfto3HgOBuUKv/A==",
5
+ "_integrity": "sha512-fj2tkSjbCoDuGXFw6Rwf3E1kMvVC2ttOoQ07kzc8J0ezA5oq/qVlSQmnbNDN87/Gu3/AN42nIYNOfTT92tqsOA==",
6
6
  "_location": "/@syncfusion/ej2-vue-layouts",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-layouts/-/ej2-vue-layouts-21.2.6.tgz",
23
- "_shasum": "c6539861eeb420f1cd1c37d0fe84c2ca45af83f3",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-layouts/-/ej2-vue-layouts-21.3.0.tgz",
23
+ "_shasum": "61d7685fda2613cc15ca51792d5a5d7d8127f7b3",
24
24
  "_spec": "@syncfusion/ej2-vue-layouts@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~21.2.9",
35
- "@syncfusion/ej2-layouts": "21.2.9",
36
- "@syncfusion/ej2-vue-base": "~21.2.9"
34
+ "@syncfusion/ej2-base": "~22.1.34",
35
+ "@syncfusion/ej2-layouts": "22.1.34",
36
+ "@syncfusion/ej2-vue-base": "~22.1.34"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Vue",
@@ -60,6 +60,6 @@
60
60
  "ci-publish": "gulp ci-publish",
61
61
  "compile": "gulp ci-compile && gulp vue-global-script"
62
62
  },
63
- "version": "21.2.9",
63
+ "version": "22.1.34",
64
64
  "sideEffects": false
65
65
  }
@@ -26,7 +26,7 @@ export var DashboardLayoutComponent = vueDefineComponent({
26
26
  provide: function () { return { custom: this.custom }; },
27
27
  data: function () {
28
28
  return {
29
- ej2Instances: new DashboardLayout({}),
29
+ ej2Instance: new DashboardLayout({}),
30
30
  propKeys: properties,
31
31
  models: modelProps,
32
32
  hasChildDirective: true,
@@ -26,7 +26,7 @@ export var SplitterComponent = vueDefineComponent({
26
26
  provide: function () { return { custom: this.custom }; },
27
27
  data: function () {
28
28
  return {
29
- ej2Instances: new Splitter({}),
29
+ ej2Instance: new Splitter({}),
30
30
  propKeys: properties,
31
31
  models: modelProps,
32
32
  hasChildDirective: true,
@@ -0,0 +1,114 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 208, 188, 255;
6
+ --color-sf-primary-container: 79, 55, 139;
7
+ --color-sf-secondary: 204, 194, 220;
8
+ --color-sf-secondary-container: 74, 68, 88;
9
+ --color-sf-tertiary: 239, 184, 200;
10
+ --color-sf-tertiary-container: 99, 59, 72;
11
+ --color-sf-surface: 28, 27, 31;
12
+ --color-sf-surface-variant: 73, 69, 79;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 55, 30, 115;
15
+ --color-sf-on-primary-container: 234, 221, 255;
16
+ --color-sf-on-secondary: 51, 45, 65;
17
+ --color-sf-on-secondary-container: 232, 222, 248;
18
+ --color-sf-on-tertiary: 73, 37, 50;
19
+ --color-sf-on-tertiary-containe: 255, 216, 228;
20
+ --color-sf-on-surface: 230, 225, 229;
21
+ --color-sf-on-surface-variant: 202, 196, 208;
22
+ --color-sf-on-background: 230, 225, 229;
23
+ --color-sf-outline: 147, 143, 153;
24
+ --color-sf-outline-variant: 68, 71, 70;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 208, 188, 255;
27
+ --color-sf-inverse-surface: 230, 225, 229;
28
+ --color-sf-inverse-on-surface: 49, 48, 51;
29
+ --color-sf-inverse-primary: 103, 80, 164;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 242, 184, 181;
32
+ --color-sf-error-container: 140, 29, 24;
33
+ --color-sf-on-error: 96, 20, 16;
34
+ --color-sf-on-error-container: 249, 222, 220;
35
+ --color-sf-success: 83, 202, 23;
36
+ --color-sf-success-container: 22, 62, 2;
37
+ --color-sf-on-success: 13, 39, 0;
38
+ --color-sf-on-success-container: 183, 250, 150;
39
+ --color-sf-info: 71, 172, 251;
40
+ --color-sf-info-container: 0, 67, 120;
41
+ --color-sf-on-info: 0, 51, 91;
42
+ --color-sf-on-info-container: 173, 219, 255;
43
+ --color-sf-warning: 245, 180, 130;
44
+ --color-sf-warning-container: 123, 65, 0;
45
+ --color-sf-on-warning: 99, 52, 0;
46
+ --color-sf-on-warning-container: 255, 220, 193;
47
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
49
+ --color-sf-success-text: 0, 0, 0;
50
+ --color-sf-warning-text: 0, 0, 0;
51
+ --color-sf-info-text: 0, 0, 0;
52
+ --color-sf-danger-text: 0, 0, 0;
53
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
55
+ }
56
+
57
+ .e-avatar {
58
+ -ms-flex-line-pack: center;
59
+ align-content: center;
60
+ -ms-flex-align: center;
61
+ align-items: center;
62
+ background-color: rgba(var(--color-sf-primary-container));
63
+ background-position: center;
64
+ background-repeat: no-repeat;
65
+ background-size: cover;
66
+ border-radius: 4px;
67
+ color: rgba(var(--color-sf-on-primary-container));
68
+ display: -ms-inline-flexbox;
69
+ display: inline-flex;
70
+ font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
71
+ font-size: 20px;
72
+ font-weight: 500;
73
+ height: 40px;
74
+ -ms-flex-pack: center;
75
+ justify-content: center;
76
+ overflow: hidden;
77
+ position: relative;
78
+ width: 40px;
79
+ line-height: 20px;
80
+ }
81
+ .e-avatar img {
82
+ height: 100%;
83
+ width: auto;
84
+ }
85
+ .e-avatar.e-avatar-circle {
86
+ border-radius: 50%;
87
+ }
88
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
89
+ border-radius: 50%;
90
+ }
91
+ .e-avatar.e-avatar-xsmall {
92
+ font-size: 14px;
93
+ height: 24px;
94
+ line-height: 14px;
95
+ width: 24px;
96
+ }
97
+ .e-avatar.e-avatar-small {
98
+ font-size: 18px;
99
+ height: 32px;
100
+ line-height: 18px;
101
+ width: 32px;
102
+ }
103
+ .e-avatar.e-avatar-large {
104
+ font-size: 26px;
105
+ height: 48px;
106
+ line-height: 26px;
107
+ width: 48px;
108
+ }
109
+ .e-avatar.e-avatar-xlarge {
110
+ font-size: 30px;
111
+ height: 56px;
112
+ line-height: 30px;
113
+ width: 56px;
114
+ }
@@ -0,0 +1,2 @@
1
+ @import 'ej2-base/styles/material3-dark-definition.scss';
2
+ @import 'ej2-layouts/styles/avatar/material3-dark.scss';
@@ -0,0 +1,170 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 103, 80, 164;
6
+ --color-sf-primary-container: 234, 221, 255;
7
+ --color-sf-secondary: 98, 91, 113;
8
+ --color-sf-secondary-container: 232, 222, 248;
9
+ --color-sf-tertiary: 125, 82, 96;
10
+ --color-sf-tertiary-container: 255, 216, 228;
11
+ --color-sf-surface: 255, 255, 255;
12
+ --color-sf-surface-variant: 231, 224, 236;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 255, 255, 255;
15
+ --color-sf-on-primary-container: 33, 0, 94;
16
+ --color-sf-on-secondary: 255, 255, 255;
17
+ --color-sf-on-secondary-container: 30, 25, 43;
18
+ --color-sf-on-tertiary: 255, 255, 255;
19
+ --color-sf-on-tertiary-containe: 55, 11, 30;
20
+ --color-sf-on-surface: 28, 27, 31;
21
+ --color-sf-on-surface-variant: 73, 69, 78;
22
+ --color-sf-on-background: 28, 27, 31;
23
+ --color-sf-outline: 121, 116, 126;
24
+ --color-sf-outline-variant: 196, 199, 197;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 103, 80, 164;
27
+ --color-sf-inverse-surface: 49, 48, 51;
28
+ --color-sf-inverse-on-surface: 244, 239, 244;
29
+ --color-sf-inverse-primary: 208, 188, 255;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 179, 38, 30;
32
+ --color-sf-error-container: 249, 222, 220;
33
+ --color-sf-on-error: 255, 250, 250;
34
+ --color-sf-on-error-container: 65, 14, 11;
35
+ --color-sf-success: 32, 81, 7;
36
+ --color-sf-success-container: 209, 255, 186;
37
+ --color-sf-on-success: 244, 255, 239;
38
+ --color-sf-on-success-container: 13, 39, 0;
39
+ --color-sf-info: 1, 87, 155;
40
+ --color-sf-info-container: 233, 245, 255;
41
+ --color-sf-on-info: 250, 253, 255;
42
+ --color-sf-on-info-container: 0, 51, 91;
43
+ --color-sf-warning: 145, 76, 0;
44
+ --color-sf-warning-container: 254, 236, 222;
45
+ --color-sf-on-warning: 255, 255, 255;
46
+ --color-sf-on-warning-container: 47, 21, 0;
47
+ --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
49
+ --color-sf-diagram-palette-background: --color-sf-white;
50
+ --color-sf-success-text: 255, 255, 255;
51
+ --color-sf-warning-text: 255, 255, 255;
52
+ --color-sf-danger-text: 255, 255, 255;
53
+ --color-sf-info-text: 255, 255, 255;
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
55
+ --color-sf-secondary-bg-color: var(--color-sf-surface);
56
+ }
57
+
58
+ .e-dark-mode {
59
+ --color-sf-black: 0, 0, 0;
60
+ --color-sf-white: 255, 255, 255;
61
+ --color-sf-primary: 208, 188, 255;
62
+ --color-sf-primary-container: 79, 55, 139;
63
+ --color-sf-secondary: 204, 194, 220;
64
+ --color-sf-secondary-container: 74, 68, 88;
65
+ --color-sf-tertiary: 239, 184, 200;
66
+ --color-sf-tertiary-container: 99, 59, 72;
67
+ --color-sf-surface: 28, 27, 31;
68
+ --color-sf-surface-variant: 28, 27, 31;
69
+ --color-sf-background: var(--color-sf-surface);
70
+ --color-sf-on-primary: 55, 30, 115;
71
+ --color-sf-on-primary-container: 234, 221, 255;
72
+ --color-sf-on-secondary: 51, 45, 65;
73
+ --color-sf-on-secondary-container: 232, 222, 248;
74
+ --color-sf-on-tertiary: 73, 37, 50;
75
+ --color-sf-on-tertiary-containe: 255, 216, 228;
76
+ --color-sf-on-surface: 230, 225, 229;
77
+ --color-sf-on-surface-variant: 202, 196, 208;
78
+ --color-sf-on-background: 230, 225, 229;
79
+ --color-sf-outline: 147, 143, 153;
80
+ --color-sf-outline-variant: 68, 71, 70;
81
+ --color-sf-shadow: 0, 0, 0;
82
+ --color-sf-surface-tint-color: 208, 188, 255;
83
+ --color-sf-inverse-surface: 230, 225, 229;
84
+ --color-sf-inverse-on-surface: 49, 48, 51;
85
+ --color-sf-inverse-primary: 103, 80, 164;
86
+ --color-sf-scrim: 0, 0, 0;
87
+ --color-sf-error: 242, 184, 181;
88
+ --color-sf-error-container: 140, 29, 24;
89
+ --color-sf-on-error: 96, 20, 16;
90
+ --color-sf-on-error-container: 249, 222, 220;
91
+ --color-sf-success: 83, 202, 23;
92
+ --color-sf-success-container: 22, 62, 2;
93
+ --color-sf-on-success: 13, 39, 0;
94
+ --color-sf-on-success-container: 183, 250, 150;
95
+ --color-sf-info: 71, 172, 251;
96
+ --color-sf-info-container: 0, 67, 120;
97
+ --color-sf-on-info: 0, 51, 91;
98
+ --color-sf-on-info-container: 173, 219, 255;
99
+ --color-sf-warning: 245, 180, 130;
100
+ --color-sf-warning-container: 123, 65, 0;
101
+ --color-sf-on-warning: 99, 52, 0;
102
+ --color-sf-on-warning-container: 255, 220, 193;
103
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
104
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
105
+ --color-sf-success-text: 0, 0, 0;
106
+ --color-sf-warning-text: 0, 0, 0;
107
+ --color-sf-info-text: 0, 0, 0;
108
+ --color-sf-danger-text: 0, 0, 0;
109
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
110
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
111
+ }
112
+
113
+ .e-avatar {
114
+ -ms-flex-line-pack: center;
115
+ align-content: center;
116
+ -ms-flex-align: center;
117
+ align-items: center;
118
+ background-color: rgba(var(--color-sf-primary-container));
119
+ background-position: center;
120
+ background-repeat: no-repeat;
121
+ background-size: cover;
122
+ border-radius: 4px;
123
+ color: rgba(var(--color-sf-on-primary-container));
124
+ display: -ms-inline-flexbox;
125
+ display: inline-flex;
126
+ font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
127
+ font-size: 20px;
128
+ font-weight: 500;
129
+ height: 40px;
130
+ -ms-flex-pack: center;
131
+ justify-content: center;
132
+ overflow: hidden;
133
+ position: relative;
134
+ width: 40px;
135
+ line-height: 20px;
136
+ }
137
+ .e-avatar img {
138
+ height: 100%;
139
+ width: auto;
140
+ }
141
+ .e-avatar.e-avatar-circle {
142
+ border-radius: 50%;
143
+ }
144
+ .e-avatar.e-avatar-circle.e-avatar-large, .e-avatar.e-avatar-circle.e-avatar-xlarge {
145
+ border-radius: 50%;
146
+ }
147
+ .e-avatar.e-avatar-xsmall {
148
+ font-size: 14px;
149
+ height: 24px;
150
+ line-height: 14px;
151
+ width: 24px;
152
+ }
153
+ .e-avatar.e-avatar-small {
154
+ font-size: 18px;
155
+ height: 32px;
156
+ line-height: 18px;
157
+ width: 32px;
158
+ }
159
+ .e-avatar.e-avatar-large {
160
+ font-size: 26px;
161
+ height: 48px;
162
+ line-height: 26px;
163
+ width: 48px;
164
+ }
165
+ .e-avatar.e-avatar-xlarge {
166
+ font-size: 30px;
167
+ height: 56px;
168
+ line-height: 30px;
169
+ width: 56px;
170
+ }
@@ -0,0 +1,2 @@
1
+ @import 'ej2-base/styles/material3-definition.scss';
2
+ @import 'ej2-layouts/styles/avatar/material3.scss';
@@ -56,7 +56,7 @@
56
56
  }
57
57
  .e-bigger .e-card .e-card-content,
58
58
  .e-bigger.e-card .e-card-content {
59
- font-size: 16px;
59
+ font-size: 14px;
60
60
  }
61
61
  .e-bigger .e-card > .e-card-header-title,
62
62
  .e-bigger.e-card > .e-card-header-title {
@@ -92,6 +92,7 @@
92
92
  .e-bigger.e-card .e-card-header {
93
93
  min-height: 30px;
94
94
  padding: 20px;
95
+ padding-bottom: 0;
95
96
  }
96
97
  .e-bigger .e-card .e-card-header .e-card-content,
97
98
  .e-bigger.e-card .e-card-header .e-card-content {
@@ -178,7 +179,7 @@
178
179
  }
179
180
  .e-bigger .e-card .e-card-content,
180
181
  .e-bigger.e-card .e-card-content {
181
- padding: 20px;
182
+ padding: 16px;
182
183
  }
183
184
  .e-bigger .e-card .e-card-content + :not(.e-card-content),
184
185
  .e-bigger .e-card .e-card-content + .e-card-actions.e-card-vertical,
@@ -10,7 +10,7 @@
10
10
  }
11
11
  .e-bigger .e-card .e-card-content,
12
12
  .e-bigger.e-card .e-card-content {
13
- font-size: 16px;
13
+ font-size: 14px;
14
14
  }
15
15
  .e-bigger .e-card > .e-card-header-title,
16
16
  .e-bigger.e-card > .e-card-header-title {
@@ -46,6 +46,7 @@
46
46
  .e-bigger.e-card .e-card-header {
47
47
  min-height: 30px;
48
48
  padding: 20px;
49
+ padding-bottom: 0;
49
50
  }
50
51
  .e-bigger .e-card .e-card-header .e-card-content,
51
52
  .e-bigger.e-card .e-card-header .e-card-content {
@@ -132,7 +133,7 @@
132
133
  }
133
134
  .e-bigger .e-card .e-card-content,
134
135
  .e-bigger.e-card .e-card-content {
135
- padding: 20px;
136
+ padding: 16px;
136
137
  }
137
138
  .e-bigger .e-card .e-card-content + :not(.e-card-content),
138
139
  .e-bigger .e-card .e-card-content + .e-card-actions.e-card-vertical,
@@ -158,7 +158,7 @@
158
158
  }
159
159
  .e-card:hover {
160
160
  border-width: 2px;
161
- padding: 0;
161
+ padding: 1px;
162
162
  }
163
163
  .e-card:active {
164
164
  border-width: 2px;
@@ -158,7 +158,7 @@
158
158
  }
159
159
  .e-card:hover {
160
160
  border-width: 2px;
161
- padding: 0;
161
+ padding: 1px;
162
162
  }
163
163
  .e-card:active {
164
164
  border-width: 2px;