azion-theme 1.5.0 → 1.5.2

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 (95) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +1 -1
  3. package/src/azion/_variables.scss +76 -79
  4. package/src/azion/extended-components/_checkbox.scss +0 -9
  5. package/src/azion/extended-components/_tabmenu.scss +1 -1
  6. package/src/azion/extended-components/_tabview.scss +1 -1
  7. package/src/azion/theme-base/_colors.scss +18 -0
  8. package/src/azion/theme-base/_common.scss +75 -0
  9. package/src/azion/theme-base/_components.scss +103 -0
  10. package/src/azion/theme-base/_mixins.scss +250 -0
  11. package/src/azion/theme-base/components/button/_button.scss +564 -0
  12. package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
  13. package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
  14. package/src/azion/theme-base/components/data/_carousel.scss +37 -0
  15. package/src/azion/theme-base/components/data/_datatable.scss +347 -0
  16. package/src/azion/theme-base/components/data/_dataview.scss +47 -0
  17. package/src/azion/theme-base/components/data/_filter.scss +138 -0
  18. package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
  19. package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
  20. package/src/azion/theme-base/components/data/_paginator.scss +92 -0
  21. package/src/azion/theme-base/components/data/_picklist.scss +70 -0
  22. package/src/azion/theme-base/components/data/_timeline.scss +38 -0
  23. package/src/azion/theme-base/components/data/_tree.scss +90 -0
  24. package/src/azion/theme-base/components/data/_treetable.scss +251 -0
  25. package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
  26. package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
  27. package/src/azion/theme-base/components/input/_calendar.scss +251 -0
  28. package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
  29. package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
  30. package/src/azion/theme-base/components/input/_chips.scss +53 -0
  31. package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
  32. package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
  33. package/src/azion/theme-base/components/input/_editor.scss +122 -0
  34. package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
  35. package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
  36. package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
  37. package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
  38. package/src/azion/theme-base/components/input/_listbox.scss +89 -0
  39. package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
  40. package/src/azion/theme-base/components/input/_password.scss +33 -0
  41. package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
  42. package/src/azion/theme-base/components/input/_rating.scss +60 -0
  43. package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
  44. package/src/azion/theme-base/components/input/_slider.scss +49 -0
  45. package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
  46. package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
  47. package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
  48. package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
  49. package/src/azion/theme-base/components/menu/_dock.scss +95 -0
  50. package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
  51. package/src/azion/theme-base/components/menu/_menu.scss +33 -0
  52. package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
  53. package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
  54. package/src/azion/theme-base/components/menu/_steps.scss +56 -0
  55. package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
  56. package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
  57. package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
  58. package/src/azion/theme-base/components/messages/_message.scss +100 -0
  59. package/src/azion/theme-base/components/messages/_toast.scss +100 -0
  60. package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
  61. package/src/azion/theme-base/components/misc/_badge.scss +48 -0
  62. package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
  63. package/src/azion/theme-base/components/misc/_chip.scss +39 -0
  64. package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
  65. package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
  66. package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
  67. package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
  68. package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
  69. package/src/azion/theme-base/components/misc/_tag.scss +40 -0
  70. package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
  71. package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
  72. package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
  73. package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
  74. package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
  75. package/src/azion/theme-base/components/overlay/_overlaypanel.scss +64 -0
  76. package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
  77. package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
  78. package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
  79. package/src/azion/theme-base/components/panel/_card.scss +30 -0
  80. package/src/azion/theme-base/components/panel/_divider.scss +31 -0
  81. package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
  82. package/src/azion/theme-base/components/panel/_panel.scss +47 -0
  83. package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
  84. package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
  85. package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
  86. package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
  87. package/src/azion/theme.scss +1 -1
  88. package/src/azion/variables/_button.scss +12 -12
  89. package/src/azion/variables/_data.scss +7 -7
  90. package/src/azion/variables/_form.scss +24 -24
  91. package/src/azion/variables/_general.scss +1 -1
  92. package/src/azion/variables/_menu.scss +4 -4
  93. package/src/azion/variables/_misc.scss +1 -1
  94. package/src/azion/variables/_overlay.scss +1 -1
  95. package/src/azion/variables/_panel.scss +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.5.2](https://github.com/aziontech/azion-theme/compare/v1.5.1...v1.5.2) (2024-08-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ * light/dark mode merge missing colors ([11e8e39](https://github.com/aziontech/azion-theme/commit/11e8e39131911616a6da72e147cd76d2a175f34e))
6
+
7
+ ## [1.5.1](https://github.com/aziontech/azion-theme/compare/v1.5.0...v1.5.1) (2024-08-06)
8
+
9
+ ### Bug Fixes
10
+
11
+ * fork primevue base theme and remove scss functions ([e6346c8](https://github.com/aziontech/azion-theme/commit/e6346c87edcdd4c777f0ddedea95a8f374c33744))
12
+ * scss variablens + functions ([efe88d3](https://github.com/aziontech/azion-theme/commit/efe88d368e063d697c156ff6642e9552f67f4064))
13
+
1
14
  ## [1.5.0](https://github.com/aziontech/azion-theme/compare/v1.4.3...v1.5.0) (2024-08-05)
2
15
 
3
16
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.5.0",
4
+ "version": "1.5.2",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -1,53 +1,5 @@
1
1
  // Theme Specific Variables
2
2
 
3
- $pc: #f4f4f4;
4
- $pdc: hsla(0, 0%, 96%, 0.5);
5
- $pderc: #f4f4f4;
6
- $ptc: #f4f4f4;
7
- $highlightBg: rgba($pc, 0.06);
8
- $overlayContentBg: #171717;
9
-
10
- :root.azion-light {
11
- $pc: #2b2b2b;
12
- $pdc: #000;
13
- $pderc: #000;
14
- $ptc: #f4f4f4;
15
- $highlightBg: rgba($pc, 0.06);
16
- $overlayContentBg: #ffffff;
17
- }
18
-
19
- $primaryColor: $pc;
20
- $primaryDarkColor: $pdc;
21
- $primaryDarkerColor: $pderc;
22
- $primaryTextColor: $ptc;
23
-
24
- $colors: (
25
- "blue": #2196f3,
26
- "green": #4caf50,
27
- "yellow": #fbc02d,
28
- "cyan": #00bcd4,
29
- "pink": #e91e63,
30
- "indigo": #3f51b5,
31
- "teal": #009688,
32
- "orange": #f57c00,
33
- "bluegray": #607d8b,
34
- "purple": #9c27b0,
35
- "red": #ff4032,
36
- "primary": $primaryColor,
37
- );
38
-
39
- // Mandatory Designer Variables
40
- @import "./variables/general";
41
- @import "./variables/form";
42
- @import "./variables/button";
43
- @import "./variables/panel";
44
- @import "./variables/_data";
45
- @import "./variables/_overlay";
46
- @import "./variables/_message";
47
- @import "./variables/_menu";
48
- @import "./variables/_media";
49
- @import "./variables/_misc";
50
-
51
3
  :root {
52
4
  --surface-a: #ffffff;
53
5
  --surface-b: #f8f9fa;
@@ -80,19 +32,49 @@ $colors: (
80
32
 
81
33
  --font-family: "Roboto", sans-serif;
82
34
  }
35
+ // Mandatory Designer Variables
36
+
37
+ $colors: (
38
+ "blue": #2196f3,
39
+ "green": #4caf50,
40
+ "yellow": #fbc02d,
41
+ "cyan": #00bcd4,
42
+ "pink": #e91e63,
43
+ "indigo": #3f51b5,
44
+ "teal": #009688,
45
+ "orange": #f57c00,
46
+ "bluegray": #607d8b,
47
+ "purple": #9c27b0,
48
+ "red": #ff4032,
49
+ "primary": #f4f4f4,
50
+ );
51
+
52
+ @import "./variables/general";
53
+ @import "./variables/form";
54
+ @import "./variables/button";
55
+ @import "./variables/panel";
56
+ @import "./variables/_data";
57
+ @import "./variables/_overlay";
58
+ @import "./variables/_message";
59
+ @import "./variables/_menu";
60
+ @import "./variables/_media";
61
+ @import "./variables/_misc";
83
62
 
84
63
  :root.azion.azion-dark {
85
64
  color-scheme: dark;
86
- --text-color: #ededed;
87
- --text-color-secondary: #b5b5b5;
88
- --text-color-link: #93c5fd;
89
- --text-color-link-hover: #93c5fd;
90
65
 
91
66
  --primary-color: #f4f4f4;
92
- --primary-color-text: #1e1e1e;
93
- --primary-dark-color: hsla(0, 0%, 96%, 0.5);
67
+ --primary-dark-color: #hsla(0, 0%, 96%, 0.5);
94
68
  --primary-darker-color: #f4f4f4;
95
69
  --primary-text-color: #f4f4f4;
70
+ --overlay-content-bg: #171717;
71
+ --highlight-bg: #f4f4f410;
72
+
73
+ --text-color: #ededed;
74
+ --primary-color-text: #1e1e1e;
75
+ --text-color-secondary: #b5b5b5;
76
+ --text-color-link: #93c5fd;
77
+ --text-color-link-hover: #93c5fd;
96
78
 
97
79
  --surface-0: #0a0a0a;
98
80
  --surface-50: #111111;
@@ -124,21 +106,24 @@ $colors: (
124
106
  --surface-border: #282828;
125
107
  --surface-hover: #f5f5f516;
126
108
 
127
- --content-padding: #{$panelContentPadding};
128
- --inline-spacing: #{$inlineSpacing};
129
- --border-radius: #{$borderRadius};
130
- --focus-ring: #{$focusShadow};
109
+ --content-padding: 1.25rem;
110
+ --inline-spacing: 0.5rem;
111
+ --border-radius: 6px;
112
+ --focus-ring: 0 0 0 0.2rem #f3642b9f;
113
+ --tabview-header-active-bg: #f4f4f4;
131
114
 
132
- --maskbg: #{$maskBg};
133
- --highlight-bg: rgba(var(--primary-color), 0.06);
134
- --highlight-text-color: #{$highlightTextColor};
135
- --highlight-focus-bg: rgba(var(--primary-color), 0.08);
115
+ --maskbg: #1c1c1c80;
116
+ --highlight-text-color: none;
117
+ --highlight-focus-bg: var(--surface-hover);
118
+ --dropdown-hover-bg: var(--surface-hover);
136
119
  --disabled-opacity: 0.5;
137
120
  --error-color: #f26464;
138
121
  --mask-bg: #1c1c1c80;
139
122
  --bg-selection: #fab99e;
140
123
  --table-bg-color: #1c1c1c;
141
- --tab-menu-link: #f4f4f4;
124
+ --highlight-tabview-nav-link: #1e1e1e;
125
+ --bg-tabview-nav-link: var(--surface-section);
126
+ --highlight-tab-menu-link: #1c1c1c;
142
127
  --paginator-bg: #1c1c1c;
143
128
  --paginator-border: #282828;
144
129
  --paginator-element-hover-bg: hsla(0, 0%, 100%, 0.03);
@@ -147,7 +132,7 @@ $colors: (
147
132
  --table-header-cell-hover-bg: #ffffff0d;
148
133
  --table-header-cell-bg: #1c1c1c;
149
134
  --table-header-cell-highlight-bg: #1c1c1c;
150
- --table-cell-highlight-hover-bg: rgba(var(--primary-color), 0.16);
135
+ --table-cell-highlight-hover-bg: rgba(244, 244, 244, 0.16);
151
136
  --table-body-row-even-bg: #212121;
152
137
  --table-body-row-hover-bg: #353535;
153
138
  --table-footer-cell-bg: #1c1c1c;
@@ -159,11 +144,10 @@ $colors: (
159
144
  --secondary-button-text-color: #222222;
160
145
  --secondary-button-border: #f4f4f4;
161
146
  --secondary-button-hover-bg: #e1e1e1;
162
- --secondary-button-text-hover-color: #e1e1e1;
147
+ --secondary-button-text-hover-color: #1e1e1e;
163
148
  --secondary-button-hover-border-color: #e1e1e1;
164
149
  --secondary-button-active-bg: #d9d9d9;
165
150
  --secondary-button-active-border-color: #d9d9d9;
166
- --secondary-button-text-hover-color: #1e1e1e;
167
151
  --secondary-button-hover-border-color: #e1e1e1;
168
152
  --secondary-button-text-active-color: #1e1e1e;
169
153
  --secondary-button-active-border-color: #d9d9d9;
@@ -198,7 +182,7 @@ $colors: (
198
182
  --action-icon-hover-border-color: 1px solid #3e3e3e;
199
183
  --panel-content-bg: #171717;
200
184
  --panel-header-hover-border-color: #171717;
201
- --panel-header-text-hover-color: rgba(var(--primary-color), 0.04);
185
+ --panel-header-text-hover-color: rgba(244, 244, 244, 0.04);
202
186
  --card-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.02),
203
187
  0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12),
204
188
  0px 0px 0px 1px #3c3c3c;
@@ -210,7 +194,7 @@ $colors: (
210
194
  --tooltip-text-color: #1c1c1c;
211
195
  --badge-font-weight: 400;
212
196
  --tag-padding: 0.25rem 0.5rem;
213
- --progress-bar-value-bg: #($primaryColor);
197
+ --progress-bar-value-bg: #(var(--primary-color));
214
198
  --progress-spinner-stroke-color: var(--surface-600);
215
199
  --avatar-bg: #363636;
216
200
  --chip-bg: #404040;
@@ -223,9 +207,9 @@ $colors: (
223
207
  --error-message--bg: #f2646433;
224
208
  --error-message-icon-color: #f26464;
225
209
  --steps-item-bg: #00000000;
226
- --steps-item-border: 1px solid #3e3e3e;
210
+ --steps-item-border: #3e3e3e;
227
211
  --menu-bg: #1c1c1c;
228
- --menu-border: 1px solid #3e3e3e;
212
+ --menu-border: #3e3e3e;
229
213
  --submenu-header-font-weight: 500;
230
214
  --overlay-menu-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12),
231
215
  0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
@@ -236,12 +220,22 @@ $colors: (
236
220
  :root.azion.azion-light {
237
221
  color-scheme: light;
238
222
  --text-color: #1c1c1c;
223
+ --primary-color-text: #f4f4f4;
239
224
  --text-color-secondary: #666666;
240
225
  --text-color-link: #3265cb;
241
226
  --text-color-link-hover: #2851a4;
242
227
 
243
- --primary-color: #1e1e1e;
228
+ --primary-color: #f4f4f4;
229
+ --primary-dark-color: #000;
230
+ --primary-darker-color: #000;
231
+ --primary-text-color: #f4f4f4;
232
+
233
+ --overlay-content-bg: #ffffff;
234
+ --highlight-bg: rgba(244 244 244 0.08);
235
+
244
236
  --primary-color-text: #f4f4f4;
237
+ --primary-text-color: #f4f4f4;
238
+ --overlay-content-bg: #ffffff;
245
239
 
246
240
  --surface-0: #ffffff;
247
241
  --surface-50: #f9fafb;
@@ -273,16 +267,19 @@ $colors: (
273
267
  --surface-border: #e8e8e8;
274
268
  --surface-hover: #3b3b3b16;
275
269
 
276
- --maskbg: #{$maskBg};
277
- --highlight-bg: rgba(var(--primary-color), 0.06);
278
- --highlight-text-color: #{$highlightTextColor};
279
- --highlight-focus-bg: rgba(var(--primary-color), 0.08);
270
+ --maskbg: #1e1e1e32;
271
+ --highlight-text-color: none;
272
+ --highlight-focus-bg: var(--surface-hover);
273
+ --highlight-tabview-nav-link: #f4f4f4;
274
+ --dropdown-hover-bg: var(--surface-hover);
275
+ --bg-tabview-nav-link: var(--surface-hover);
276
+ --tabview-header-active-bg: #1e1e1e;
280
277
  --disabled-opacity: 0.4;
281
278
  --mask-bg: #1e1e1e32;
282
279
  --error-color: #ef4040;
283
280
  --bg-selection: #f7966e;
284
281
  --table-bg-color: #e7e7e7;
285
- --tab-menu-link: #1c1c1c;
282
+ --highlight-tab-menu-link: #f4f4f4;
286
283
  --paginator-bg: #ffffff;
287
284
  --paginator-border: none;
288
285
  --paginator-element-hover-bg: #e9ecef;
@@ -300,7 +297,7 @@ $colors: (
300
297
  --plain-button-active-bg-color: #1e1e1e33;
301
298
  --secondary-button-bg: #1e1e1e;
302
299
  --secondary-button-text-color: #f4f4f4;
303
- --secondary-button-text-hover-bg: #404040;
300
+ --secondary-button-hover-bg: #404040;
304
301
  --secondary-button-text-hover-color: #f4f4f4;
305
302
  --secondary-button-hover-border-color: #323232;
306
303
  --secondary-button-active-bg: #303030;
@@ -359,9 +356,9 @@ $colors: (
359
356
  --error-message--bg: #ef40401f;
360
357
  --error-message-icon-color: #ef4040;
361
358
  --steps-item-bg: #ffffff00;
362
- --steps-item-border: 1px solid #e7e7e7;
359
+ --steps-item-border: #e7e7e7;
363
360
  --menu-bg: #ffffff;
364
- --menu-border: 1px solid #e7e7e7;
361
+ --menu-border: #e7e7e7;
365
362
  --submenu-header-font-weight: 400;
366
363
  --overlay-menu-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04),
367
364
  0px 0px 0px 1px #e7e7e7;
@@ -56,12 +56,3 @@
56
56
  }
57
57
  }
58
58
  }
59
-
60
- @if ($highlightBg == $checkboxActiveBg) {
61
- .p-highlight {
62
- .p-checkbox {
63
- .p-checkbox-box {
64
- }
65
- }
66
- }
67
- }
@@ -12,7 +12,7 @@
12
12
  }
13
13
  &.p-highlight {
14
14
  .p-menuitem-link {
15
- color: var(--tab-menu-link) !important;
15
+ color: var(--highlight-tab-menu-link) !important;
16
16
  font-weight: 500 !important;
17
17
  }
18
18
  }
@@ -13,7 +13,7 @@
13
13
  }
14
14
  &.p-highlight {
15
15
  .p-tabview-nav-link {
16
- color: #1e1e1e !important;
16
+ color: var(--highlight-tabview-nav-link) !important;
17
17
  font-weight: 700 !important;
18
18
  }
19
19
  }
@@ -0,0 +1,18 @@
1
+ :root {
2
+ @if variable-exists(colors) {
3
+ @each $name, $color in $colors {
4
+ @for $i from 0 through 5 {
5
+ @if ($i == 0) {
6
+ --#{$name}-50:#{tint($color, (5 - $i) * 19%)};
7
+ }
8
+ @else {
9
+ --#{$name}-#{$i * 100}:#{tint($color, (5 - $i) * 19%)};
10
+ }
11
+ }
12
+
13
+ @for $i from 1 through 4 {
14
+ --#{$name}-#{($i + 5) * 100}:#{shade($color, $i * 15%)};
15
+ }
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,75 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ .p-component {
6
+ font-family: var(--font-family);
7
+ font-feature-settings: var(--font-feature-settings, normal);
8
+ font-size: $fontSize;
9
+ font-weight: $fontWeight;
10
+ }
11
+
12
+ .p-component-overlay {
13
+ background-color: $maskBg;
14
+ transition-duration: $transitionDuration;
15
+ }
16
+
17
+ .p-disabled, .p-component:disabled {
18
+ opacity: $disabledOpacity;
19
+ }
20
+
21
+ .p-error {
22
+ color: $errorColor;
23
+ }
24
+
25
+ .p-text-secondary {
26
+ color: $textSecondaryColor;
27
+ }
28
+
29
+ .pi {
30
+ font-size: $primeIconFontSize;
31
+ }
32
+
33
+ .p-icon {
34
+ width: $primeIconFontSize;
35
+ height: $primeIconFontSize;
36
+ }
37
+
38
+ .p-link {
39
+ font-family: var(--font-family);
40
+ font-feature-settings: var(--font-feature-settings, normal);
41
+ font-size: $fontSize;
42
+ border-radius: $borderRadius;
43
+
44
+ &:focus-visible {
45
+ @include focused();
46
+ }
47
+ }
48
+
49
+ .p-component-overlay-enter {
50
+ animation: p-component-overlay-enter-animation 150ms forwards;
51
+ }
52
+
53
+ .p-component-overlay-leave {
54
+ animation: p-component-overlay-leave-animation 150ms forwards;
55
+ }
56
+
57
+ .p-component-overlay {
58
+ @keyframes p-component-overlay-enter-animation {
59
+ from {
60
+ background-color: transparent;
61
+ }
62
+ to {
63
+ background-color: var(--maskbg);
64
+ }
65
+ }
66
+
67
+ @keyframes p-component-overlay-leave-animation {
68
+ from {
69
+ background-color: var(--maskbg);
70
+ }
71
+ to {
72
+ background-color: transparent;
73
+ }
74
+ }
75
+ }
@@ -0,0 +1,103 @@
1
+ @import '_mixins';
2
+ @import '_colors';
3
+
4
+ @import './components/input/_editor';
5
+
6
+ @layer primevue {
7
+ @import '_common';
8
+
9
+ //Input
10
+ @import './components/input/_autocomplete';
11
+ @import './components/input/_calendar';
12
+ @import './components/input/_cascadeselect';
13
+ @import './components/input/_checkbox';
14
+ @import './components/input/_chips';
15
+ @import './components/input/_colorpicker';
16
+ @import './components/input/_dropdown';
17
+ @import './components/input/_inputgroup';
18
+ @import './components/input/_inputnumber';
19
+ @import './components/input/_inputswitch';
20
+ @import './components/input/_inputtext';
21
+ @import './components/input/_listbox';
22
+ @import './components/input/_multiselect';
23
+ @import './components/input/_password';
24
+ @import './components/input/_radiobutton';
25
+ @import './components/input/_rating';
26
+ @import './components/input/_selectbutton';
27
+ @import './components/input/_slider';
28
+ @import './components/input/_treeselect';
29
+ @import './components/input/_togglebutton';
30
+
31
+ //Button
32
+ @import './components/button/_button';
33
+ @import './components/button/_speeddial';
34
+ @import './components/button/_splitbutton';
35
+
36
+ //Data
37
+ @import './components/data/_carousel';
38
+ @import './components/data/_datatable';
39
+ @import './components/data/_dataview';
40
+ @import './components/data/_filter';
41
+ @import './components/data/_orderlist';
42
+ @import './components/data/_organizationchart';
43
+ @import './components/data/_paginator';
44
+ @import './components/data/_picklist';
45
+ @import './components/data/_timeline';
46
+ @import './components/data/_tree';
47
+ @import './components/data/_treetable';
48
+
49
+ //Panel
50
+ @import './components/panel/_accordion';
51
+ @import './components/panel/_card';
52
+ @import './components/panel/_fieldset';
53
+ @import './components/panel/_divider';
54
+ @import './components/panel/_panel';
55
+ @import './components/panel/_scrollpanel';
56
+ @import './components/panel/_splitter';
57
+ @import './components/panel/_tabview';
58
+ @import './components/panel/_toolbar';
59
+
60
+ //Overlay
61
+ @import './components/overlay/_confirmpopup';
62
+ @import './components/overlay/_dialog';
63
+ @import './components/overlay/_overlaypanel';
64
+ @import './components/overlay/_sidebar';
65
+ @import './components/overlay/_tooltip';
66
+
67
+ //File
68
+ @import './components/file/_fileupload';
69
+
70
+ //Menu
71
+ @import './components/menu/_breadcrumb';
72
+ @import './components/menu/_contextmenu';
73
+ @import './components/menu/_dock';
74
+ @import './components/menu/_megamenu';
75
+ @import './components/menu/_menu';
76
+ @import './components/menu/_menubar';
77
+ @import './components/menu/_panelmenu';
78
+ @import './components/menu/_steps';
79
+ @import './components/menu/_tabmenu';
80
+ @import './components/menu/_tieredmenu';
81
+
82
+ //Messages
83
+ @import './components/messages/_inlinemessage';
84
+ @import './components/messages/_message';
85
+ @import 'components/messages/toast';
86
+
87
+ //MultiMedia
88
+ @import './components/multimedia/_galleria';
89
+ @import './components/multimedia/_image';
90
+
91
+ //Misc
92
+ @import './components/misc/_avatar';
93
+ @import './components/misc/_badge';
94
+ @import './components/misc/_blockui';
95
+ @import './components/misc/_chip';
96
+ @import './components/misc/_inplace';
97
+ @import './components/misc/_progressbar';
98
+ @import './components/misc/_progressspinner';
99
+ @import './components/misc/_scrolltop';
100
+ @import './components/misc/_skeleton';
101
+ @import './components/misc/_tag';
102
+ @import './components/misc/_terminal';
103
+ }