@appscode/design-system 1.0.43-alpha.99 → 1.1.0

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 (101) hide show
  1. package/base/utilities/_all.scss +7 -0
  2. package/base/utilities/_customize-bulma.scss +191 -0
  3. package/base/utilities/_default.scss +58 -124
  4. package/base/utilities/_derived-variables.scss +6 -0
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +13 -9
  7. package/base/utilities/_typography.scss +6 -12
  8. package/base/utilities/dark-theme.scss +1 -0
  9. package/components/_ac-accordion.scss +14 -5
  10. package/components/_ac-alert-box.scss +32 -6
  11. package/components/_ac-card.scss +17 -5
  12. package/components/_ac-drag.scss +2 -0
  13. package/components/_ac-input.scss +19 -11
  14. package/components/_ac-modal.scss +1 -1
  15. package/components/_ac-multi-select.scss +60 -4
  16. package/components/_ac-report.scss +53 -0
  17. package/components/_ac-table.scss +60 -2
  18. package/components/_ac-tabs.scss +16 -2
  19. package/components/_ac-tags.scss +85 -0
  20. package/components/_ac-terminal.scss +1 -3
  21. package/components/_all.scss +28 -0
  22. package/components/_buttons.scss +14 -33
  23. package/components/_dashboard-header.scss +32 -0
  24. package/components/_left-sidebar-menu.scss +9 -9
  25. package/components/_navbar.scss +89 -4
  26. package/components/_preview-modal.scss +14 -1
  27. package/components/_transitions.scss +261 -0
  28. package/components/_wizard.scss +1 -0
  29. package/components/bbum/_all.scss +9 -0
  30. package/components/bbum/_single-post-preview.scss +1 -1
  31. package/components/ui-builder/_ui-builder.scss +58 -0
  32. package/components/ui-builder/_vue-open-api.scss +6 -0
  33. package/layouts/_all.scss +2 -0
  34. package/layouts/_code-preview.scss +5 -2
  35. package/main.scss +5 -56
  36. package/package.json +4 -2
  37. package/plugins/caching.ts +243 -0
  38. package/plugins/time-convert.js +49 -0
  39. package/plugins/vue-toaster.js +3 -0
  40. package/vue-components/v2/banner/Banner.vue +2 -2
  41. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  42. package/vue-components/v2/button/Button.vue +5 -0
  43. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  44. package/vue-components/v2/card/Card.vue +1 -0
  45. package/vue-components/v2/content/ContentTable.vue +12 -7
  46. package/vue-components/v2/editor/Editor.vue +37 -24
  47. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  48. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  49. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  50. package/vue-components/v2/form-fields/Input.vue +1 -1
  51. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  52. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  53. package/vue-components/v2/modal/Modal.vue +30 -5
  54. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  55. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  56. package/vue-components/v2/navbar/User.vue +229 -17
  57. package/vue-components/v2/notification/Notification.vue +101 -0
  58. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  59. package/vue-components/v2/pagination/Pagination.vue +16 -3
  60. package/vue-components/v2/preloader/Preloader.vue +1 -1
  61. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  62. package/vue-components/v2/tab/TabItem.vue +1 -1
  63. package/vue-components/v2/table/Table.vue +49 -8
  64. package/vue-components/v2/table/TableRow.vue +12 -2
  65. package/vue-components/v2/table/table-cell/CellValue.vue +29 -9
  66. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  67. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  68. package/vue-components/v3/button/Button.vue +6 -1
  69. package/vue-components/v3/content/ContentHeader.vue +2 -1
  70. package/vue-components/v3/content/ContentTable.vue +20 -2
  71. package/vue-components/v3/editor/Editor.vue +36 -33
  72. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  73. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  74. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  75. package/vue-components/v3/form/Form.vue +63 -0
  76. package/vue-components/v3/form-fields/Input.vue +11 -10
  77. package/vue-components/v3/header/HeaderItem.vue +5 -0
  78. package/vue-components/v3/header/HeaderItems.vue +5 -0
  79. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  80. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  81. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  82. package/vue-components/v3/modal/Modal.vue +30 -7
  83. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  84. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  85. package/vue-components/v3/modals/LongRunningTasksModal.vue +400 -0
  86. package/vue-components/v3/navbar/ThemeMode.vue +41 -49
  87. package/vue-components/v3/navbar/User.vue +242 -18
  88. package/vue-components/v3/notification/AlertBox.vue +61 -0
  89. package/vue-components/v3/notification/Notification.vue +98 -0
  90. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  91. package/vue-components/v3/pagination/Pagination.vue +16 -3
  92. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  93. package/vue-components/v3/tab/TabItem.vue +1 -1
  94. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  95. package/vue-components/v3/table/Table.vue +52 -13
  96. package/vue-components/v3/table/TableContainer.vue +34 -0
  97. package/vue-components/v3/table/TableRow.vue +93 -6
  98. package/vue-components/v3/table/table-cell/CellValue.vue +23 -7
  99. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  100. package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
  101. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -6,13 +6,14 @@
6
6
  min-height: 36px;
7
7
  display: flex;
8
8
  align-items: center;
9
- padding: 5px 30px;
9
+ padding: 8px 16px;
10
10
  overflow: hidden;
11
11
  border: 1px solid $ac-primary;
12
12
  border-radius: 4px;
13
- justify-content: center;
13
+ justify-content: flex-start;
14
14
  position: relative;
15
15
  z-index: 1;
16
+ min-width: 280px;
16
17
 
17
18
  p {
18
19
  color: $ac-primary;
@@ -46,8 +47,33 @@
46
47
  border: none;
47
48
  font-size: 14px;
48
49
  color: $ac-danger;
49
- width: 30px;
50
+ width: 40px;
50
51
  height: 100%;
52
+ display: flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ }
56
+ }
57
+
58
+
59
+ .toast {
60
+ box-shadow: $ac-shadow-sm;
61
+ border: 1px solid $ac-white-light;
62
+ width: 350px;
63
+
64
+ .toast-header {
65
+ padding: 8px 12px;
66
+ border-bottom: 1px solid $ac-white-light;
67
+
68
+ .button {
69
+ &:hover {
70
+ color: #000000;
71
+ }
72
+ }
73
+ }
74
+
75
+ .toast-body {
76
+ padding: 8px 12px;
51
77
  }
52
78
  }
53
79
 
@@ -139,10 +165,11 @@ AC Toast
139
165
  }
140
166
 
141
167
  p {
142
- padding-left: 10px;
168
+ padding-left: 16px;
143
169
 
144
170
  i.fa {
145
171
  padding-right: 0 !important;
172
+ margin-right: 4px;
146
173
  }
147
174
  }
148
175
 
@@ -158,7 +185,6 @@ AC Toast
158
185
 
159
186
  button.close-button {
160
187
  border-radius: 0px;
161
- border-left: 1px solid $ac-white;
162
188
  background-color: transparent;
163
189
  border: none;
164
190
  color: $ac-white;
@@ -170,7 +196,7 @@ AC Toast
170
196
  width: 30px;
171
197
  z-index: 1;
172
198
  cursor: pointer;
173
- border-left: 1px solid $ac-white;
199
+ border-left: 1px solid #dddddd;
174
200
  }
175
201
  }
176
202
 
@@ -29,8 +29,6 @@
29
29
  margin-bottom: 13px;
30
30
 
31
31
  .ac-card-logo {
32
- min-width: 30px;
33
- max-width: 30px;
34
32
  margin-right: 10px;
35
33
  position: relative;
36
34
  z-index: 1;
@@ -83,6 +81,7 @@
83
81
  margin-right: 20px;
84
82
  padding: 30px 20px 20px;
85
83
  height: 140px;
84
+ cursor: pointer;
86
85
 
87
86
  .ac-card-logo {
88
87
  max-width: 50px;
@@ -109,7 +108,7 @@
109
108
  }
110
109
 
111
110
  &:hover {
112
- background-color: $ac-white;
111
+ background-color: $ac-bg-light-gray;
113
112
  }
114
113
  }
115
114
 
@@ -172,6 +171,11 @@
172
171
  }
173
172
  }
174
173
 
174
+ &.is-disabled {
175
+ opacity: 0.5;
176
+ cursor: not-allowed;
177
+ }
178
+
175
179
  &:hover {
176
180
  border: 1px solid $ac-primary;
177
181
 
@@ -187,15 +191,23 @@
187
191
  .ac-card-header {
188
192
  display: flex;
189
193
  align-items: center;
190
- margin-bottom: 20px;
194
+ margin-bottom: 16px;
191
195
 
192
196
  .ac-card-logo {
193
197
  width: 40px;
194
198
  overflow: hidden;
195
199
  margin-right: 15px;
200
+ background: $ac-white;
201
+ padding: 8px;
202
+ height: 40px;
203
+ border-radius: 50%;
204
+ display: flex;
205
+ align-items: center;
206
+ border: 1px solid $ac-white-light;
196
207
  }
197
208
 
198
209
  .ac-card-title {
210
+ width: calc(100% - 55px);
199
211
  h4 {
200
212
  a {
201
213
  color: $ac-color-heading;
@@ -208,7 +220,7 @@
208
220
 
209
221
  p {
210
222
  font-size: $font-size-small;
211
- color: $ac-gray-lightest;
223
+ color: $ac-gray;
212
224
  }
213
225
  }
214
226
  }
@@ -34,6 +34,8 @@
34
34
  ul {
35
35
  li {
36
36
  padding-left: 40px;
37
+ padding-top: 4px;
38
+ padding-bottom: 4px;
37
39
 
38
40
  &.is-not-change {
39
41
  background-color: $ac-white-lighter;
@@ -32,7 +32,7 @@
32
32
  input,
33
33
  .ac-card,
34
34
  textarea {
35
- border: 1px solid $ac-primary;
35
+ border: 1px solid $ac-primary !important;
36
36
  }
37
37
 
38
38
  p {
@@ -154,6 +154,7 @@
154
154
  height: 36px;
155
155
  width: 36px;
156
156
  margin-top: 0;
157
+ padding: 10px;
157
158
  }
158
159
  }
159
160
 
@@ -177,8 +178,8 @@
177
178
  top: -9px;
178
179
  font-weight: 500;
179
180
  color: $ac-color-value;
180
- &.is-required{
181
- &:after{
181
+ &.is-required {
182
+ &:after {
182
183
  width: calc(100% + 10px);
183
184
  }
184
185
  }
@@ -378,13 +379,13 @@
378
379
  }
379
380
 
380
381
  .ac-textarea {
381
- .ac-label{
382
- &.is-required{
383
- &:after{
384
- width: calc(100% + 10px);
382
+ .ac-label {
383
+ &.is-required {
384
+ &:after {
385
+ width: calc(100% + 10px);
386
+ }
385
387
  }
386
388
  }
387
- }
388
389
  textarea {
389
390
  border: 1px solid $ac-label-text;
390
391
  background-color: transparent;
@@ -393,7 +394,6 @@
393
394
  &.bg-white {
394
395
  background-color: transparent;
395
396
  }
396
-
397
397
 
398
398
  &:focus {
399
399
  outline: none;
@@ -657,6 +657,7 @@ input#captcha {
657
657
  font-size: 13px;
658
658
  padding-top: 0;
659
659
  padding-left: 40px;
660
+ height: auto;
660
661
 
661
662
  &::before {
662
663
  width: 30px;
@@ -714,6 +715,14 @@ input#captcha {
714
715
  }
715
716
  }
716
717
 
718
+ .ac-single-switch.is-small .switch[type="checkbox"] + label,
719
+ .buttons.are-small
720
+ .ac-single-switch.button.ac-button
721
+ .switch[type="checkbox"]
722
+ + label {
723
+ height: 19px;
724
+ }
725
+
717
726
  // transparent input
718
727
  .transparent-input {
719
728
  display: flex;
@@ -797,11 +806,10 @@ input#captcha {
797
806
  label {
798
807
  color: $ac-label-text;
799
808
  }
800
- .button.is-information:focus{
809
+ .button.is-information:focus {
801
810
  background-color: $dark-bg-light;
802
811
  }
803
812
  }
804
-
805
813
  }
806
814
  // dark theme end
807
815
  /****************************************
@@ -41,7 +41,7 @@
41
41
 
42
42
  &.is-large {
43
43
  .ac-modal-inner {
44
- width: 1000px;
44
+ width: 1000px !important;
45
45
  }
46
46
  }
47
47
 
@@ -466,16 +466,43 @@ li {
466
466
  z-index: 99;
467
467
  right: 30px;
468
468
  }
469
+ &.has-refresh-button {
470
+ .multiselect__select {
471
+ z-index: 99;
472
+ right: 60px;
473
+ }
474
+ .button {
475
+ &.is-refresh {
476
+ right: 30px;
477
+ }
478
+ }
479
+ }
480
+ .button {
481
+ &.is-information {
482
+ right: 0;
483
+ }
484
+ }
485
+ }
486
+ &.has-refresh-button {
487
+ .multiselect__select {
488
+ z-index: 99;
489
+ right: 30px;
490
+ }
491
+ .button {
492
+ &.is-refresh {
493
+ right: 0;
494
+ }
495
+ }
469
496
  }
470
497
 
471
498
  .button {
472
- &.is-information {
499
+ &.is-information,
500
+ &.is-refresh {
473
501
  background-color: transparent;
474
502
  border: none;
475
503
  position: absolute;
476
- right: 0;
477
- height: 45px;
478
- width: 45px;
504
+ height: 36px;
505
+ width: 36px;
479
506
  z-index: 90;
480
507
  margin-top: 0;
481
508
 
@@ -486,9 +513,38 @@ li {
486
513
  transform: scale(0.8);
487
514
  }
488
515
  }
516
+ &.is-refresh.spin {
517
+ i {
518
+ animation: spin 1s linear infinite;
519
+ }
520
+ }
489
521
  }
490
522
  }
491
523
 
524
+ @-moz-keyframes spin {
525
+ from {
526
+ -moz-transform: rotate(0deg);
527
+ }
528
+ to {
529
+ -moz-transform: rotate(360deg);
530
+ }
531
+ }
532
+ @-webkit-keyframes spin {
533
+ from {
534
+ -webkit-transform: rotate(0deg);
535
+ }
536
+ to {
537
+ -webkit-transform: rotate(360deg);
538
+ }
539
+ }
540
+ @keyframes spin {
541
+ from {
542
+ transform: rotate(0deg);
543
+ }
544
+ to {
545
+ transform: rotate(360deg);
546
+ }
547
+ }
492
548
  // has info button end
493
549
 
494
550
  // dark theme start
@@ -0,0 +1,53 @@
1
+ .report-charts {
2
+ display: flex;
3
+ flex-direction: row;
4
+ justify-content: space-between;
5
+ padding-top: 20px;
6
+ gap: 20px;
7
+ align-items: center;
8
+ align-content: stretch;
9
+ }
10
+ .report-charts > * {
11
+ flex: 1;
12
+ }
13
+ .vulnerability-chart {
14
+ height: 250px;
15
+ width: 250px;
16
+ margin-right: 20px;
17
+ }
18
+
19
+ // tr {
20
+ // .vulnerability-chart {
21
+ // height: 200px;
22
+ // width: 200px;
23
+ // margin-right: 20px;
24
+ // }
25
+ // .vulnerability-table {
26
+ // height: 200px;
27
+ // }
28
+ // }
29
+ .vulnerability-table {
30
+ height: 250px;
31
+ thead {
32
+ tr {
33
+ th {
34
+ border: none;
35
+ padding: 4px 8px !important;
36
+ }
37
+ }
38
+ }
39
+ tbody {
40
+ tr {
41
+ td {
42
+ vertical-align: middle;
43
+ padding: 4px 8px;
44
+ }
45
+ }
46
+ }
47
+ }
48
+ .color-div {
49
+ height: 10px;
50
+ width: 10px;
51
+ display: inline-block;
52
+ margin-right: 5px;
53
+ }
@@ -12,13 +12,13 @@
12
12
 
13
13
  /* Handle */
14
14
  &::-webkit-scrollbar-thumb {
15
- background-color: $ac-gray-light;
15
+ background-color: $ac-white-light;
16
16
  border-radius: 10px;
17
17
  }
18
18
 
19
19
  /* Handle on hover */
20
20
  &::-webkit-scrollbar-thumb:hover {
21
- background-color: $ac-gray-light;
21
+ background-color: $ac-white-light;
22
22
  }
23
23
  }
24
24
  }
@@ -207,6 +207,23 @@
207
207
  border-radius: 50%;
208
208
  }
209
209
  }
210
+
211
+ .collapsible-row {
212
+ max-height: 0;
213
+ overflow-y: hidden;
214
+
215
+ &.is-active {
216
+ max-height: 60vh;
217
+ overflow-y: overlay;
218
+ animation: expand 0.5s ease-in-out;
219
+ }
220
+
221
+ &.is-closed {
222
+ max-height: 0;
223
+ overflow-y: hidden;
224
+ animation: collapse 0.5s ease-in-out;
225
+ }
226
+ }
210
227
  }
211
228
 
212
229
  .options-items {
@@ -418,6 +435,47 @@
418
435
  color: $ac-primary;
419
436
  }
420
437
 
438
+ // table inner shadow
439
+ .table-inner-shadow {
440
+ border-radius: 0px;
441
+ background: $ac-white-lighter;
442
+ box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
443
+ }
444
+
445
+ @keyframes expand {
446
+ from {
447
+ max-height: 0;
448
+ overflow-y: hidden;
449
+ }
450
+ 1% {
451
+ overflow-y: hidden;
452
+ }
453
+ 99% {
454
+ overflow-y: hidden;
455
+ }
456
+ to {
457
+ max-height: 60vh;
458
+ overflow-y: overlay;
459
+ }
460
+ }
461
+
462
+ @keyframes collapse {
463
+ from {
464
+ max-height: 60vh;
465
+ overflow-y: overlay;
466
+ }
467
+ 1% {
468
+ overflow-y: hidden;
469
+ }
470
+ 99% {
471
+ overflow-y: hidden;
472
+ }
473
+ to {
474
+ max-height: 0;
475
+ overflow-y: hidden;
476
+ }
477
+ }
478
+
421
479
  // GENERAL TABLE END
422
480
 
423
481
  /****************************************
@@ -6,14 +6,14 @@
6
6
 
7
7
  &.is-line {
8
8
  ul {
9
- border-bottom-color: $ac-white-light;
9
+ // border-bottom-color: $ac-white-light;
10
10
 
11
11
  li {
12
12
  &.is-active {
13
13
  a {
14
14
  font-weight: 500;
15
15
  border-bottom-color: $ac-primary;
16
- border-color: $ac-primary !important;
16
+ border-bottom: 2px solid $ac-primary !important;
17
17
  border-width: 2px;
18
18
  }
19
19
  }
@@ -23,6 +23,7 @@
23
23
  font-weight: 400;
24
24
  color: $ac-color-heading;
25
25
  font-size: $font-size-small;
26
+ border-bottom: none;
26
27
  padding: 6px 20px;
27
28
 
28
29
  &:hover {
@@ -152,6 +153,19 @@
152
153
  }
153
154
  }
154
155
  }
156
+
157
+ &.kubedb-ui-tabs {
158
+ ul {
159
+ border-bottom: none;
160
+ li {
161
+ &.is-active {
162
+ a {
163
+ border-bottom: 3px solid $ac-primary !important;
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
155
169
  }
156
170
  }
157
171
 
@@ -1,3 +1,85 @@
1
+ .tag:not(body) {
2
+ background-color: $ac-white-light;
3
+ font-size: 10px;
4
+ height: 18px;
5
+ font-weight: 500;
6
+ line-height: 1;
7
+ letter-spacing: 0px;
8
+ color: $ac-color-heading;
9
+ &.is-outlined {
10
+ border: 1px solid;
11
+ background-color: transparent;
12
+ }
13
+
14
+ a {
15
+ &:hover {
16
+ color: $ac-color-text;
17
+ }
18
+ }
19
+
20
+ &.is-available {
21
+ background-color: #27b064;
22
+ color: $ac-white;
23
+ }
24
+
25
+ &.is-success {
26
+ background-color: $ac-green;
27
+ color: $ac-white;
28
+
29
+ &.is-light {
30
+ background-color: rgba(39, 176, 100, 0.2);
31
+ color: $ac-green;
32
+ }
33
+ }
34
+
35
+ &.is-primary {
36
+ background-color: $ac-primary;
37
+ color: $ac-white;
38
+
39
+ &.is-light {
40
+ background-color: rgba(25, 113, 189, 0.2);
41
+ color: $ac-primary;
42
+ }
43
+ }
44
+
45
+ &.is-gray {
46
+ background-color: #e5e9f2;
47
+ color: $ac-gray-darker;
48
+ }
49
+
50
+ &.is-warning {
51
+ background-color: $ac-warning;
52
+ color: $ac-white;
53
+
54
+ &.is-light {
55
+ background-color: #ffd58b42;
56
+ color: #c88b21;
57
+ }
58
+ }
59
+
60
+ &.is-danger {
61
+ background-color: $ac-red;
62
+ color: $ac-white !important;
63
+
64
+ &.is-light {
65
+ background-color: rgba(234, 61, 47, 0.2);
66
+ color: $ac-red !important;
67
+ }
68
+ }
69
+ }
70
+
71
+ .tags {
72
+ .icon {
73
+ margin-bottom: 0.5rem;
74
+ }
75
+
76
+ .tag {
77
+ a {
78
+ font-weight: 500;
79
+ }
80
+ }
81
+ }
82
+
1
83
  .has-tags {
2
84
  display: flex;
3
85
  align-items: center;
@@ -27,5 +109,8 @@
27
109
  &.is-danger {
28
110
  @include ac-tags($ac-danger);
29
111
  }
112
+ &.is-dark {
113
+ @include ac-tags($ac-gray-dark);
114
+ }
30
115
  }
31
116
  }
@@ -1,7 +1,5 @@
1
1
  // terminal scss start
2
2
  .ac-terminal {
3
- bottom: 0px;
4
- height: 300px;
5
3
  width: 100%;
6
4
 
7
5
  .terminal-body {
@@ -25,7 +23,7 @@
25
23
  background-color: $ac-white;
26
24
  color: $ac-white;
27
25
  font-size: 13px;
28
- height: 320px;
26
+ height: 360px;
29
27
  z-index: 999;
30
28
  transition: 0.3s ease-in-out;
31
29
  &.is-collapsed {
@@ -0,0 +1,28 @@
1
+ @import "ac-alert-box";
2
+ @import "ac-accordion";
3
+ @import "buttons";
4
+ @import "breadcumb";
5
+ @import "ac-card";
6
+ @import "ac-multi-select";
7
+ @import "ac-code-highlight";
8
+ @import "navbar";
9
+ @import "app-drawer";
10
+ @import "ac-drag";
11
+ @import "left-sidebar-menu";
12
+ @import "ac-input";
13
+ @import "ac-content-layout";
14
+ @import "ac-table";
15
+ @import "graph";
16
+ @import "ac-modal";
17
+ @import "payment-card";
18
+ @import "pagination";
19
+ @import "ac-options";
20
+ @import "image-upload";
21
+ @import "ac-alert-box";
22
+ @import "dashboard-header";
23
+ @import "ac-tags";
24
+ @import "go-to-top";
25
+ @import "ac-toaster/ac-toasted";
26
+ @import "preview-modal";
27
+ @import "wizard";
28
+ @import "bbum/all";