@syncfusion/ej2-navigations 25.1.38 → 25.1.40

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 (53) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/ej2-navigations.min.js +2 -2
  3. package/dist/ej2-navigations.umd.min.js +2 -2
  4. package/dist/ej2-navigations.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-navigations.es2015.js +33 -8
  6. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  7. package/dist/es6/ej2-navigations.es5.js +33 -8
  8. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  9. package/dist/global/ej2-navigations.min.js +2 -2
  10. package/dist/global/ej2-navigations.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +9 -9
  13. package/src/accordion/accordion.js +3 -2
  14. package/src/common/menu-base.js +4 -1
  15. package/src/stepper/stepper.js +2 -2
  16. package/src/toolbar/toolbar.js +2 -1
  17. package/src/treeview/treeview.js +22 -2
  18. package/styles/bootstrap-dark.css +311 -296
  19. package/styles/bootstrap.css +311 -296
  20. package/styles/bootstrap4.css +311 -296
  21. package/styles/bootstrap5-dark.css +311 -296
  22. package/styles/bootstrap5.css +311 -296
  23. package/styles/fabric-dark.css +311 -296
  24. package/styles/fabric.css +311 -296
  25. package/styles/fluent-dark.css +311 -296
  26. package/styles/fluent.css +311 -296
  27. package/styles/highcontrast-light.css +311 -296
  28. package/styles/highcontrast.css +311 -296
  29. package/styles/material-dark.css +311 -296
  30. package/styles/material.css +311 -296
  31. package/styles/material3-dark.css +311 -296
  32. package/styles/material3.css +311 -296
  33. package/styles/stepper/_layout.scss +162 -242
  34. package/styles/stepper/_theme.scss +158 -184
  35. package/styles/stepper/bootstrap-dark.css +311 -296
  36. package/styles/stepper/bootstrap.css +311 -296
  37. package/styles/stepper/bootstrap4.css +311 -296
  38. package/styles/stepper/bootstrap5-dark.css +311 -296
  39. package/styles/stepper/bootstrap5.css +311 -296
  40. package/styles/stepper/fabric-dark.css +311 -296
  41. package/styles/stepper/fabric.css +311 -296
  42. package/styles/stepper/fluent-dark.css +311 -296
  43. package/styles/stepper/fluent.css +311 -296
  44. package/styles/stepper/highcontrast-light.css +311 -296
  45. package/styles/stepper/highcontrast.css +311 -296
  46. package/styles/stepper/material-dark.css +311 -296
  47. package/styles/stepper/material.css +311 -296
  48. package/styles/stepper/material3-dark.css +311 -296
  49. package/styles/stepper/material3.css +311 -296
  50. package/styles/stepper/tailwind-dark.css +311 -296
  51. package/styles/stepper/tailwind.css +311 -296
  52. package/styles/tailwind-dark.css +311 -296
  53. package/styles/tailwind.css +311 -296
@@ -1,228 +1,202 @@
1
1
  @include export-module('stepper-theme') {
2
2
  .e-stepper {
3
- .e-stepper-steps {
4
- .e-step-container {
5
- &.e-step-notstarted:not(.e-step-disabled) .e-step,
6
- &.e-step-notstarted:not(.e-step-disabled) .e-indicator,
7
- &.e-step-notstarted .e-icons.e-step-indicator {
8
- border-color: $step-border-color;
9
- }
10
-
11
- .e-step-label-optional {
12
- color: $step-optional-color;
13
- }
14
-
15
- .e-step,
16
- .e-indicator {
17
- color: $step-color;
18
- background: $step-bg-color;
19
- }
20
-
21
- .e-step-indicator {
22
- color: transparent;
23
- }
24
-
25
- &.e-step-completed .e-step,
26
- &.e-step-inprogress .e-step,
27
- &.e-step-completed .e-indicator,
28
- &.e-step-inprogress .e-indicator,
29
- &.e-step-completed .e-step-indicator,
30
- &.e-step-inprogress .e-step-indicator {
31
- background: $step-completed-bg-color;
32
- color: $step-completed-color;
33
- }
34
-
35
- &.e-step-valid {
36
- .e-indicator {
37
- background: $step-valid-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
38
- color: $step-valid-completed-color;
39
- }
40
- }
41
-
42
- &.e-step-error {
43
- .e-indicator {
44
- background: $step-error-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
45
- color: $step-error-icon-color;
46
- }
47
-
48
- .e-text,
49
- .e-label {
50
- color: $step-error-completed-color;
51
- }
52
- }
53
-
54
- &.e-step-valid:not(.e-step-notstarted) .e-indicator:hover,
55
- &.e-step-error .e-indicator:hover {
56
- color: $step-color;
57
- }
58
-
59
- &.e-step-selected {
60
- .e-text,
61
- .e-label {
62
- font-weight: $stepper-font-weight;
63
- }
64
- }
65
-
66
- &.e-step-valid.e-step-text-only:not(.e-step-icon.e-step-label) .e-step-text-container,
67
- &.e-step-valid.e-step-label-only:not(.e-step-icon.e-step-text) .e-step-label-container {
68
- .e-step-validation-icon {
69
- color: $step-valid-icon-only-color;
70
- }
71
- }
72
-
73
- &.e-step-error.e-step-text-only:not(.e-step-icon.e-step-label) .e-step-text-container,
74
- &.e-step-error.e-step-label-only:not(.e-step-icon.e-step-text) .e-step-label-container {
75
- .e-step-validation-icon {
76
- color: $step-error-icon-only-color;
77
- }
78
- }
79
-
80
- .e-text,
81
- .e-label {
82
- color: $stepper-text-color;
83
- }
84
-
85
- &.e-step-selected:not(.e-step-error),
86
- &.e-step-completed:not(.e-step-error) {
87
- .e-text,
88
- .e-label {
89
- color: $step-completed-bg-color;
90
- }
91
- }
92
-
93
- &.e-step-label:not(.e-step-icon) .e-step-label-container {
94
- background-color: $stepper-outline-color;
95
- }
96
-
97
- .e-step-text-container {
98
- background-color: $stepper-outline-color;
99
- border-color: transparent;
100
- }
101
-
102
- &.e-step-selected .e-indicator {
103
- background: $step-completed-bg-color;
104
- }
105
-
106
- &.e-step-disabled .e-indicator {
107
- background: $step-disabled-bg-color !important; /* stylelint-disable-line declaration-no-important */
108
- color: $step-disabled-color !important; /* stylelint-disable-line declaration-no-important */
109
- }
110
-
111
- &.e-step-disabled .e-text,
112
- &.e-step-disabled .e-label,
113
- &.e-step-disabled .e-step-validation-icon {
114
- color: $step-disabled-font-color !important; /* stylelint-disable-line declaration-no-important */
115
- }
3
+ .e-step-notstarted:not(.e-step-disabled) .e-step,
4
+ .e-step-notstarted:not(.e-step-disabled) .e-indicator,
5
+ .e-step-notstarted .e-icons.e-step-indicator {
6
+ border-color: $step-border-color;
7
+ }
8
+ .e-step-label-optional {
9
+ color: $step-optional-color;
10
+ }
11
+ .e-step,
12
+ .e-indicator {
13
+ color: $step-color;
14
+ background: $step-bg-color;
15
+ }
16
+ .e-step-indicator {
17
+ color: transparent;
18
+ }
19
+ .e-step-completed .e-step,
20
+ .e-step-inprogress .e-step,
21
+ .e-step-completed .e-indicator,
22
+ .e-step-inprogress .e-indicator,
23
+ .e-step-completed .e-step-indicator,
24
+ .e-step-inprogress .e-step-indicator {
25
+ background: $step-completed-bg-color;
26
+ color: $step-completed-color;
27
+ }
28
+ .e-step-selected .e-indicator {
29
+ background: $step-completed-bg-color;
30
+ }
31
+ .e-step-valid .e-indicator {
32
+ background: $step-valid-completed-bg-color;
33
+ color: $step-valid-completed-color;
34
+ }
35
+ .e-step-error {
36
+ .e-indicator {
37
+ background: $step-error-completed-bg-color;
38
+ color: $step-error-icon-color;
39
+ }
40
+ .e-text,
41
+ .e-label {
42
+ color: $step-error-completed-color;
116
43
  }
117
44
  }
118
-
119
- &.e-vertical .e-stepper-steps .e-step-container.e-step-text-only.e-step-text .e-step-label-optional,
120
- &.e-vertical .e-stepper-steps .e-step-container.e-step-label-only.e-step-label .e-step-label-optional,
121
- &.e-vertical .e-stepper-steps .e-step-container.e-step-icon:not(.e-step-text):not(.e-step-label) .e-step-label-optional,
122
- &.e-vertical.e-label-top .e-stepper-steps .e-step-container .e-step-label-optional,
123
- &.e-vertical.e-label-bottom .e-stepper-steps .e-step-container .e-step-label-optional {
45
+ .e-step-valid:not(.e-step-notstarted) .e-indicator:hover,
46
+ .e-step-error .e-indicator:hover {
47
+ color: $step-color;
48
+ }
49
+ .e-step-selected {
50
+ .e-text,
51
+ .e-label {
52
+ font-weight: $stepper-font-weight;
53
+ }
54
+ }
55
+ .e-step-valid.e-step-text-only,
56
+ .e-step-valid.e-step-label-only {
57
+ .e-step-validation-icon {
58
+ color: $step-valid-icon-only-color;
59
+ }
60
+ }
61
+ .e-step-error.e-step-text-only,
62
+ .e-step-error.e-step-label-only {
63
+ .e-step-validation-icon {
64
+ color: $step-error-icon-only-color;
65
+ }
66
+ }
67
+ .e-text,
68
+ .e-label {
69
+ color: $stepper-text-color;
70
+ }
71
+ .e-step-selected:not(.e-step-error),
72
+ .e-step-completed:not(.e-step-error) {
73
+ .e-text,
74
+ .e-label {
75
+ color: $step-completed-bg-color;
76
+ }
77
+ }
78
+ .e-step-label:not(.e-step-icon) .e-step-label-container {
79
+ background-color: $stepper-outline-color;
80
+ }
81
+ .e-step-text-container {
82
+ background-color: $stepper-outline-color;
83
+ border-color: transparent;
84
+ }
85
+ .e-step-disabled .e-indicator {
86
+ background: $step-disabled-bg-color;
87
+ color: $step-disabled-color;
88
+ }
89
+ .e-step-disabled .e-text,
90
+ .e-step-disabled .e-label,
91
+ .e-step-disabled .e-step-validation-icon {
92
+ color: $step-disabled-font-color;
93
+ }
94
+ &.e-vertical .e-step-text-only.e-step-text .e-step-label-optional,
95
+ &.e-vertical .e-step-label-only.e-step-label .e-step-label-optional,
96
+ &.e-vertical .e-step-icon:not(.e-step-text):not(.e-step-label) .e-step-label-optional,
97
+ &.e-vertical.e-label-top .e-step-label-optional,
98
+ &.e-vertical.e-label-bottom .e-step-label-optional {
124
99
  background-color: $stepper-outline-color;
125
100
  }
126
-
127
101
  .e-stepper-progressbar {
128
102
  background-color: $step-progress-bg-color;
129
-
130
103
  >.e-progressbar-value {
131
104
  background-color: $step-progress-value-bg-color;
132
105
  }
133
106
  }
134
-
135
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step {
107
+ &:not(.e-steps-focus) .e-step-selected .e-step {
136
108
  box-shadow: $step-selected-li-shadow;
137
109
  }
138
-
139
- .e-stepper-steps .e-step-container.e-step-focus .e-step,
140
- .e-stepper-steps .e-step-container.e-step-label-only.e-step-focus .e-label,
141
- .e-stepper-steps .e-step-container.e-step-text-only.e-step-focus .e-text,
142
- .e-stepper-steps .e-step-container.e-step-template.e-step-focus,
143
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container:focus-visible .e-step,
144
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container.e-step-text-only:focus-visible .e-text,
145
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container.e-step-label-only:focus-visible .e-label {
146
- box-shadow: $step-keyboard-selected-li-shadow !important; /* stylelint-disable-line declaration-no-important */
110
+ .e-step-focus .e-step,
111
+ .e-step-label-only.e-step-focus .e-label,
112
+ .e-step-text-only.e-step-focus .e-text,
113
+ .e-step-template.e-step-focus,
114
+ &:not(.e-steps-focus) :focus-visible .e-step,
115
+ &:not(.e-steps-focus) .e-step-text-only:focus-visible .e-text,
116
+ &:not(.e-steps-focus) .e-step-label-only:focus-visible .e-label {
117
+ box-shadow: $step-keyboard-selected-li-shadow;
147
118
  }
148
119
 
149
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container.e-step-valid.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step,
150
- .e-stepper-steps .e-step-container.e-step-valid.e-step-focus .e-step,
151
- .e-stepper-steps .e-step-container.e-step-valid.e-step-label-only.e-step-focus .e-label,
152
- .e-stepper-steps .e-step-container.e-step-valid.e-step-text-only.e-step-focus .e-text,
153
- .e-stepper-steps .e-step-container.e-step-valid.e-step-template.e-step-focus {
120
+ &:not(.e-steps-focus) .e-step-valid.e-step-selected .e-step,
121
+ .e-step-valid.e-step-focus .e-step,
122
+ .e-step-valid.e-step-label-only.e-step-focus .e-label,
123
+ .e-step-valid.e-step-text-only.e-step-focus .e-text,
124
+ .e-step-valid.e-step-template.e-step-focus {
154
125
  box-shadow: $step-valid-li-shadow;
155
126
  }
156
127
 
157
- &:not(.e-steps-focus) .e-stepper-steps .e-step-container.e-step-error.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step,
158
- .e-stepper-steps .e-step-container.e-step-error.e-step-focus .e-step,
159
- .e-stepper-steps .e-step-container.e-step-error.e-step-label-only.e-step-focus .e-label,
160
- .e-stepper-steps .e-step-container.e-step-error.e-step-text-only.e-step-focus .e-text,
161
- .e-stepper-steps .e-step-container.e-step-error.e-step-template.e-step-focus {
128
+ &:not(.e-steps-focus) .e-step-error.e-step-selected .e-step,
129
+ .e-step-error.e-step-focus .e-step,
130
+ .e-step-error.e-step-label-only.e-step-focus .e-label,
131
+ .e-step-error.e-step-text-only.e-step-focus .e-text,
132
+ .e-step-error.e-step-template.e-step-focus {
162
133
  box-shadow: $step-error-li-shadow;
163
134
  }
164
135
 
165
- .e-stepper-steps .e-step-container:not(.e-step-focus).e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-step,
166
- .e-stepper-steps .e-step-container:not(.e-step-focus).e-step-completed:not(.e-step-text-only):not(.e-step-label-only) .e-step,
167
- &.e-steps-focus .e-stepper-steps .e-step-container:not(.e-step-focus).e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step {
136
+ .e-step-container:not(.e-step-focus).e-step-notstarted .e-step,
137
+ .e-step-container:not(.e-step-focus).e-step-completed .e-step,
138
+ &.e-steps-focus .e-step-container:not(.e-step-focus).e-step-selected .e-step {
168
139
  box-shadow: $step-li-shadow;
169
140
  }
170
141
 
171
- .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-disabled) .e-step:hover,
172
- .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-disabled) .e-indicator:hover {
173
- border-color: $step-hover-border-color !important; /* stylelint-disable-line declaration-no-important */
142
+ .e-step-notstarted:not(.e-step-disabled) .e-step:hover,
143
+ .e-step-notstarted:not(.e-step-disabled) .e-indicator:hover {
144
+ border-color: $step-hover-border-color;
174
145
  }
175
146
 
176
- .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-disabled) .e-step:active,
177
- .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-disabled) .e-indicator:active {
178
- border-color: $step-active-border-color !important; /* stylelint-disable-line declaration-no-important */
147
+ .e-step-notstarted:not(.e-step-disabled) .e-step:active,
148
+ .e-step-notstarted:not(.e-step-disabled) .e-indicator:active {
149
+ border-color: $step-active-border-color;
179
150
  }
180
151
 
181
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:hover,
182
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-step:hover {
183
- background: $step-hover-color !important; /* stylelint-disable-line declaration-no-important */
152
+ &:not(.e-step-type-label) {
153
+ .e-indicator:hover,
154
+ .e-step:hover {
155
+ color: $step-hover-text-color;
156
+ background: $step-selected-hover-color;
157
+ }
184
158
  }
185
159
 
186
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:active,
187
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-step:active {
188
- background: $step-active-color !important; /* stylelint-disable-line declaration-no-important */
160
+ &:not(.e-step-type-label) .e-step-notstarted .e-indicator:hover,
161
+ &:not(.e-step-type-label) .e-step-notstarted .e-step:hover {
162
+ color: $step-hover-not-text-color;
189
163
  }
190
164
 
191
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container {
192
- &:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:hover,
193
- &:not(.e-step-text-only):not(.e-step-label-only) .e-step:hover {
194
- color: $step-hover-text-color;
195
- background: $step-selected-hover-color !important; /* stylelint-disable-line declaration-no-important */
165
+ &:not(.e-step-type-label) {
166
+ .e-step-selected .e-indicator:active,
167
+ .e-step-selected .e-step:active {
168
+ background: $step-selected-active-color;
196
169
  }
197
- &.e-step-valid:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:hover,
198
- &.e-step-valid:not(.e-step-text-only):not(.e-step-label-only) .e-step:hover {
199
- color: $step-hover-text-color !important; /* stylelint-disable-line declaration-no-important */
200
- background: $step-valid-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
170
+ .e-step-valid.e-step-selected .e-indicator:active,
171
+ .e-step-valid.e-step-selected .e-step:active {
172
+ background: $step-valid-completed-bg-color;
201
173
  }
202
- &.e-step-error:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:hover,
203
- &.e-step-error:not(.e-step-text-only):not(.e-step-label-only) .e-step:hover {
204
- color: $step-hover-text-color !important; /* stylelint-disable-line declaration-no-important */
205
- background: $step-error-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
174
+ .e-step-error.e-step-selected .e-indicator:active,
175
+ .e-step-error.e-step-selected .e-step:active {
176
+ background: $step-error-completed-bg-color;
206
177
  }
207
178
  }
208
179
 
209
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:hover,
210
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container.e-step-notstarted:not(.e-step-text-only):not(.e-step-label-only) .e-step:hover {
211
- color: $step-hover-not-text-color;
180
+ &:not(.e-step-type-label) .e-step-notstarted .e-indicator:hover,
181
+ &:not(.e-step-type-label) .e-step-notstarted .e-step:hover {
182
+ background: $step-hover-color;
212
183
  }
213
184
 
214
- &:not(.e-step-type-label) .e-stepper-steps .e-step-container {
215
- &.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:active,
216
- &.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step:active {
217
- background: $step-selected-active-color !important; /* stylelint-disable-line declaration-no-important */
218
- }
219
- &.e-step-valid.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:active,
220
- &.e-step-valid.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step:active {
221
- background: $step-valid-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
185
+ &:not(.e-step-type-label) .e-step-notstarted .e-indicator:active,
186
+ &:not(.e-step-type-label) .e-step-notstarted .e-step:active {
187
+ background: $step-active-color;
188
+ }
189
+
190
+ &:not(.e-step-type-label) {
191
+ .e-step-valid .e-indicator:hover,
192
+ .e-step-valid .e-step:hover {
193
+ color: $step-hover-text-color;
194
+ background: $step-valid-completed-bg-color;
222
195
  }
223
- &.e-step-error.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-indicator:active,
224
- &.e-step-error.e-step-selected:not(.e-step-text-only):not(.e-step-label-only) .e-step:active {
225
- background: $step-error-completed-bg-color !important; /* stylelint-disable-line declaration-no-important */
196
+ .e-step-error .e-indicator:hover,
197
+ .e-step-error .e-step:hover {
198
+ color: $step-hover-text-color;
199
+ background: $step-error-completed-bg-color;
226
200
  }
227
201
  }
228
202
  }