@timus-networks/theme 2.0.1 → 2.0.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.
- package/README.md +34 -49
- package/dist/module.d.mts +1 -1
- package/dist/module.d.ts +1 -1
- package/dist/module.json +2 -2
- package/dist/module.mjs +40 -18
- package/dist/runtime/components/development/example.alert.vue +29 -0
- package/dist/runtime/components/development/example.avatar.vue +85 -0
- package/dist/runtime/components/development/example.badge.vue +93 -0
- package/dist/runtime/components/development/example.breadcrumb.vue +54 -0
- package/dist/runtime/components/development/example.button.vue +235 -0
- package/dist/runtime/components/{example.button.vue.d.ts → development/example.button.vue.d.ts} +2 -1
- package/dist/runtime/components/development/example.card.vue +68 -0
- package/dist/runtime/components/development/example.checkbox.vue +176 -0
- package/dist/runtime/components/{example.checkbox.vue.d.ts → development/example.checkbox.vue.d.ts} +2 -2
- package/dist/runtime/components/development/example.collapse.vue +38 -0
- package/dist/runtime/components/development/example.datepicker.vue +193 -0
- package/dist/runtime/components/development/example.description.vue +94 -0
- package/dist/runtime/components/{example.dialog.vue → development/example.dialog.vue} +21 -24
- package/dist/runtime/components/development/example.dropdown.vue +166 -0
- package/dist/runtime/components/development/example.form.vue +488 -0
- package/dist/runtime/components/development/example.input.vue +270 -0
- package/dist/runtime/components/development/example.input.vue.d.ts +23 -0
- package/dist/runtime/components/development/example.link.vue +68 -0
- package/dist/runtime/components/development/example.message.vue +64 -0
- package/dist/runtime/components/development/example.notification.vue +75 -0
- package/dist/runtime/components/development/example.number.vue +70 -0
- package/dist/runtime/components/development/example.pagination.vue +89 -0
- package/dist/runtime/components/development/example.popover.vue +151 -0
- package/dist/runtime/components/development/example.radio.vue +163 -0
- package/dist/runtime/components/{example.radio.vue.d.ts → development/example.radio.vue.d.ts} +3 -2
- package/dist/runtime/components/development/example.select.vue +588 -0
- package/dist/runtime/components/{example.select.vue.d.ts → development/example.select.vue.d.ts} +3 -2
- package/dist/runtime/components/development/example.sidebar.vue +101 -0
- package/dist/runtime/components/development/example.static.vue +50 -0
- package/dist/runtime/components/development/example.switch.vue +101 -0
- package/dist/runtime/components/{example.table.vue → development/example.table.vue} +8 -22
- package/dist/runtime/components/development/example.tag.vue +255 -0
- package/dist/runtime/components/development/example.timepicker.vue +89 -0
- package/dist/runtime/components/development/example.tooltip.vue +104 -0
- package/dist/runtime/components/development/example.upload.vue +84 -0
- package/dist/runtime/components/production/html-encode.vue +96 -0
- package/dist/runtime/components/production/timus-breadcrumb.d.ts +36 -0
- package/dist/runtime/components/production/timus-breadcrumb.js +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.mjs +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue +83 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue.d.ts +340 -0
- package/dist/runtime/composables/useBreadcrumb.d.ts +8 -0
- package/dist/runtime/composables/useBreadcrumb.js +53 -0
- package/dist/runtime/composables/useBreadcrumb.mjs +53 -0
- package/dist/runtime/pages/theme.vue +44 -13
- package/dist/runtime/plugins/disable-warnings-plugin.js +18 -0
- package/dist/runtime/plugins/disable-warnings-plugin.mjs +18 -0
- package/dist/runtime/public/scss/element-plus/affix.css +28 -0
- package/dist/runtime/public/scss/element-plus/alert.css +116 -20
- package/dist/runtime/public/scss/element-plus/anchor-link.css +28 -0
- package/dist/runtime/public/scss/element-plus/anchor.css +28 -0
- package/dist/runtime/public/scss/element-plus/aside.css +28 -0
- package/dist/runtime/public/scss/element-plus/autocomplete.css +28 -0
- package/dist/runtime/public/scss/element-plus/avatar.css +60 -10
- package/dist/runtime/public/scss/element-plus/backtop.css +28 -0
- package/dist/runtime/public/scss/element-plus/badge.css +30 -2
- package/dist/runtime/public/scss/element-plus/base.css +31 -3
- package/dist/runtime/public/scss/element-plus/breadcrumb.css +46 -6
- package/dist/runtime/public/scss/element-plus/button-group.css +154 -32
- package/dist/runtime/public/scss/element-plus/button.css +70 -24
- package/dist/runtime/public/scss/element-plus/calendar.css +28 -0
- package/dist/runtime/public/scss/element-plus/card.css +41 -6
- package/dist/runtime/public/scss/element-plus/carousel-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/carousel.css +28 -0
- package/dist/runtime/public/scss/element-plus/cascader-panel.css +28 -0
- package/dist/runtime/public/scss/element-plus/cascader.css +28 -0
- package/dist/runtime/public/scss/element-plus/check-tag.css +28 -0
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +33 -0
- package/dist/runtime/public/scss/element-plus/checkbox-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/checkbox.css +28 -0
- package/dist/runtime/public/scss/element-plus/col.css +28 -0
- package/dist/runtime/public/scss/element-plus/collapse.css +28 -0
- package/dist/runtime/public/scss/element-plus/color-picker.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/popup.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/transition.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/var.css +28 -0
- package/dist/runtime/public/scss/element-plus/container.css +28 -0
- package/dist/runtime/public/scss/element-plus/dark/css-vars.css +28 -0
- package/dist/runtime/public/scss/element-plus/dark/var.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +76 -14
- package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +41 -9
- package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +31 -3
- package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +69 -6
- package/dist/runtime/public/scss/element-plus/date-picker/picker.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +56 -16
- package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +39 -4
- package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +31 -4
- package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker.css +134 -50
- package/dist/runtime/public/scss/element-plus/descriptions-item.css +48 -8
- package/dist/runtime/public/scss/element-plus/descriptions.css +78 -16
- package/dist/runtime/public/scss/element-plus/dialog.css +30 -2
- package/dist/runtime/public/scss/element-plus/display.css +28 -0
- package/dist/runtime/public/scss/element-plus/divider.css +28 -0
- package/dist/runtime/public/scss/element-plus/drawer.css +28 -0
- package/dist/runtime/public/scss/element-plus/dropdown.css +43 -12
- package/dist/runtime/public/scss/element-plus/empty.css +28 -0
- package/dist/runtime/public/scss/element-plus/footer.css +28 -0
- package/dist/runtime/public/scss/element-plus/form.css +28 -0
- package/dist/runtime/public/scss/element-plus/header.css +28 -0
- package/dist/runtime/public/scss/element-plus/icon.css +30 -2
- package/dist/runtime/public/scss/element-plus/image-viewer.css +28 -0
- package/dist/runtime/public/scss/element-plus/image.css +28 -0
- package/dist/runtime/public/scss/element-plus/index.css +920 -329
- package/dist/runtime/public/scss/element-plus/input-number.css +50 -6
- package/dist/runtime/public/scss/element-plus/input.css +28 -0
- package/dist/runtime/public/scss/element-plus/link.css +59 -28
- package/dist/runtime/public/scss/element-plus/loading.css +28 -0
- package/dist/runtime/public/scss/element-plus/main.css +28 -0
- package/dist/runtime/public/scss/element-plus/mention.css +28 -0
- package/dist/runtime/public/scss/element-plus/menu.css +28 -0
- package/dist/runtime/public/scss/element-plus/message-box.css +34 -2
- package/dist/runtime/public/scss/element-plus/message.css +161 -31
- package/dist/runtime/public/scss/element-plus/mixins/mixins.css +28 -0
- package/dist/runtime/public/scss/element-plus/notification.css +41 -9
- package/dist/runtime/public/scss/element-plus/option-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/option.css +29 -0
- package/dist/runtime/public/scss/element-plus/overlay.css +28 -0
- package/dist/runtime/public/scss/element-plus/page-header.css +28 -0
- package/dist/runtime/public/scss/element-plus/pagination.css +64 -11
- package/dist/runtime/public/scss/element-plus/popconfirm.css +28 -0
- package/dist/runtime/public/scss/element-plus/popover.css +28 -0
- package/dist/runtime/public/scss/element-plus/popper.css +29 -1
- package/dist/runtime/public/scss/element-plus/progress.css +28 -0
- package/dist/runtime/public/scss/element-plus/radio-button.css +36 -2
- package/dist/runtime/public/scss/element-plus/radio-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/radio.css +28 -0
- package/dist/runtime/public/scss/element-plus/rate.css +28 -0
- package/dist/runtime/public/scss/element-plus/reset.css +28 -0
- package/dist/runtime/public/scss/element-plus/result.css +28 -0
- package/dist/runtime/public/scss/element-plus/row.css +28 -0
- package/dist/runtime/public/scss/element-plus/scrollbar.css +28 -0
- package/dist/runtime/public/scss/element-plus/segmented.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-v2.css +48 -23
- package/dist/runtime/public/scss/element-plus/select.css +48 -23
- package/dist/runtime/public/scss/element-plus/skeleton-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/skeleton.css +28 -0
- package/dist/runtime/public/scss/element-plus/slider.css +28 -0
- package/dist/runtime/public/scss/element-plus/space.css +28 -0
- package/dist/runtime/public/scss/element-plus/spinner.css +28 -0
- package/dist/runtime/public/scss/element-plus/statistic.css +28 -0
- package/dist/runtime/public/scss/element-plus/step.css +28 -0
- package/dist/runtime/public/scss/element-plus/steps.css +28 -0
- package/dist/runtime/public/scss/element-plus/switch.css +116 -20
- package/dist/runtime/public/scss/element-plus/table-column.css +29 -1
- package/dist/runtime/public/scss/element-plus/table-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/table.css +28 -0
- package/dist/runtime/public/scss/element-plus/tabs.css +30 -2
- package/dist/runtime/public/scss/element-plus/tag.css +28 -0
- package/dist/runtime/public/scss/element-plus/text.css +34 -0
- package/dist/runtime/public/scss/element-plus/time-picker.css +111 -30
- package/dist/runtime/public/scss/element-plus/time-select.css +76 -14
- package/dist/runtime/public/scss/element-plus/timeline-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/timeline.css +28 -0
- package/dist/runtime/public/scss/element-plus/tooltip-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/tour.css +30 -2
- package/dist/runtime/public/scss/element-plus/transfer.css +28 -0
- package/dist/runtime/public/scss/element-plus/tree-select.css +28 -0
- package/dist/runtime/public/scss/element-plus/tree.css +28 -0
- package/dist/runtime/public/scss/element-plus/upload.css +28 -0
- package/dist/runtime/public/scss/element-plus/var.css +29 -1
- package/dist/runtime/public/scss/element-plus/virtual-list.css +28 -0
- package/dist/runtime/public/scss/theme.css +79 -2
- package/dist/runtime/types.d.ts +7 -16
- package/package.json +1 -1
- package/dist/runtime/components/example.button.vue +0 -237
- package/dist/runtime/components/example.checkbox.vue +0 -190
- package/dist/runtime/components/example.form.vue +0 -494
- package/dist/runtime/components/example.input.vue +0 -286
- package/dist/runtime/components/example.input.vue.d.ts +0 -20
- package/dist/runtime/components/example.popover.vue +0 -161
- package/dist/runtime/components/example.radio.vue +0 -165
- package/dist/runtime/components/example.select.vue +0 -591
- package/dist/runtime/components/example.sidebar.vue +0 -104
- package/dist/runtime/components/example.tag.vue +0 -279
- package/dist/runtime/components/html-encode.vue +0 -37
- package/dist/runtime/plugins/element-extend-plugin.d.ts +0 -38
- package/dist/runtime/plugins/element-extend-plugin.js +0 -39
- package/dist/runtime/plugins/element-extend-plugin.mjs +0 -39
- package/dist/runtime/plugins/experimental-size-plugin.js +0 -13
- package/dist/runtime/plugins/experimental-size-plugin.mjs +0 -13
- /package/dist/runtime/plugins/{experimental-size-plugin.d.ts → disable-warnings-plugin.d.ts} +0 -0
- /package/dist/runtime/plugins/{theme-provider.d.ts → theme-provider-plugin.d.ts} +0 -0
- /package/dist/runtime/plugins/{theme-provider.js → theme-provider-plugin.js} +0 -0
- /package/dist/runtime/plugins/{theme-provider.mjs → theme-provider-plugin.mjs} +0 -0
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -658,11 +686,44 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
658
686
|
|
|
659
687
|
.el-picker-panel__footer {
|
|
660
688
|
border-top: 1px solid var(--el-datepicker-inner-border-color);
|
|
661
|
-
padding:
|
|
689
|
+
padding: 16px;
|
|
662
690
|
text-align: right;
|
|
663
691
|
background-color: var(--el-bg-color-overlay);
|
|
664
692
|
position: relative;
|
|
665
693
|
font-size: 0;
|
|
694
|
+
display: flex;
|
|
695
|
+
gap: 30px;
|
|
696
|
+
border-bottom-left-radius: 4px;
|
|
697
|
+
border-bottom-right-radius: 4px;
|
|
698
|
+
}
|
|
699
|
+
.el-picker-panel__footer .el-button {
|
|
700
|
+
display: flex;
|
|
701
|
+
flex-basis: 100%;
|
|
702
|
+
}
|
|
703
|
+
.el-picker-panel__footer .el-button.is-text {
|
|
704
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
705
|
+
border: 1px solid var(--el-color-primary-light-5);
|
|
706
|
+
}
|
|
707
|
+
.el-picker-panel__footer .el-button.is-text:hover {
|
|
708
|
+
--el-button-text-color: var(--el-color-primary-light-4);
|
|
709
|
+
border: 1px solid var(--el-color-primary-light-4);
|
|
710
|
+
background-color: transparent;
|
|
711
|
+
}
|
|
712
|
+
.el-picker-panel__footer .el-button.is-text:active {
|
|
713
|
+
--el-button-text-color: var(--el-color-primary-light-6);
|
|
714
|
+
--el-button-border-color: var(--el-color-primary-light-6);
|
|
715
|
+
border: 1px solid var(--el-color-primary-light-6);
|
|
716
|
+
background-color: transparent;
|
|
717
|
+
}
|
|
718
|
+
.el-picker-panel__footer .el-button.is-plain {
|
|
719
|
+
--el-button-hover-text-color: var(--el-color-white);
|
|
720
|
+
--el-button-hover-bg-color: var(--el-color-primary-light-4);
|
|
721
|
+
--el-button-hover-border-color: var(--el-color-primary-light-4);
|
|
722
|
+
--el-button-active-text-color: var(--el-button-hover-text-color);
|
|
723
|
+
--el-button-active-bg-color: var(--el-color-primary-light-6);
|
|
724
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
725
|
+
--el-button-bg-color: var(--el-color-primary-light-5);
|
|
726
|
+
--el-button-text-color: var(--el-color-white);
|
|
666
727
|
}
|
|
667
728
|
|
|
668
729
|
.el-picker-panel__shortcut {
|
|
@@ -671,9 +732,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
671
732
|
border: 0;
|
|
672
733
|
background-color: transparent;
|
|
673
734
|
line-height: 28px;
|
|
674
|
-
font-size:
|
|
675
|
-
color: var(--el-
|
|
676
|
-
padding-left:
|
|
735
|
+
font-size: 12px;
|
|
736
|
+
color: var(--el-color-neutral-light-7);
|
|
737
|
+
padding-left: 16px;
|
|
677
738
|
text-align: left;
|
|
678
739
|
outline: none;
|
|
679
740
|
cursor: pointer;
|
|
@@ -709,7 +770,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
709
770
|
background: transparent;
|
|
710
771
|
cursor: pointer;
|
|
711
772
|
outline: none;
|
|
712
|
-
|
|
773
|
+
width: 24px;
|
|
713
774
|
}
|
|
714
775
|
.el-picker-panel__icon-btn:hover {
|
|
715
776
|
color: var(--el-datepicker-hover-text-color);
|
|
@@ -741,9 +802,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
741
802
|
width: 110px;
|
|
742
803
|
border-right: 1px solid var(--el-datepicker-inner-border-color);
|
|
743
804
|
box-sizing: border-box;
|
|
744
|
-
padding-top:
|
|
805
|
+
padding-top: 16px;
|
|
745
806
|
background-color: var(--el-bg-color-overlay);
|
|
746
807
|
overflow: auto;
|
|
808
|
+
border-top-left-radius: 4px;
|
|
809
|
+
border-bottom-left-radius: 4px;
|
|
747
810
|
}
|
|
748
811
|
|
|
749
812
|
.el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
|
|
@@ -754,12 +817,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
754
817
|
.el-date-picker {
|
|
755
818
|
--el-datepicker-text-color: var(--el-text-color-regular);
|
|
756
819
|
--el-datepicker-off-text-color: var(--el-text-color-placeholder);
|
|
757
|
-
--el-datepicker-header-text-color: var(--el-
|
|
758
|
-
--el-datepicker-icon-color: var(--el-
|
|
820
|
+
--el-datepicker-header-text-color: var(--el-color-neutral-light-4);
|
|
821
|
+
--el-datepicker-icon-color: var(--el-color-neutral-light-4);
|
|
759
822
|
--el-datepicker-border-color: var(--el-disabled-border-color);
|
|
760
823
|
--el-datepicker-inner-border-color: var(--el-border-color-light);
|
|
761
|
-
--el-datepicker-inrange-bg-color: var(--el-
|
|
762
|
-
--el-datepicker-inrange-hover-bg-color: var(--el-
|
|
824
|
+
--el-datepicker-inrange-bg-color: var(--el-color-primary-light-1);
|
|
825
|
+
--el-datepicker-inrange-hover-bg-color: var(--el-color-primary-light-1);
|
|
763
826
|
--el-datepicker-active-color: var(--el-color-primary);
|
|
764
827
|
--el-datepicker-hover-text-color: var(--el-color-primary);
|
|
765
828
|
}
|
|
@@ -785,16 +848,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
785
848
|
}
|
|
786
849
|
.el-date-picker__editor-wrap {
|
|
787
850
|
position: relative;
|
|
788
|
-
display: table-cell;
|
|
789
|
-
padding: 0 5px;
|
|
790
851
|
}
|
|
791
852
|
|
|
792
853
|
.el-date-picker__time-header {
|
|
793
854
|
position: relative;
|
|
794
855
|
border-bottom: 1px solid var(--el-datepicker-inner-border-color);
|
|
795
856
|
font-size: 12px;
|
|
796
|
-
padding:
|
|
797
|
-
display:
|
|
857
|
+
padding: 16px;
|
|
858
|
+
display: inline-flex;
|
|
859
|
+
gap: 30px;
|
|
798
860
|
width: 100%;
|
|
799
861
|
box-sizing: border-box;
|
|
800
862
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -348,7 +376,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
348
376
|
border: none;
|
|
349
377
|
outline: none;
|
|
350
378
|
cursor: pointer;
|
|
351
|
-
font-size: var(--el-message-close-size,
|
|
379
|
+
font-size: var(--el-message-close-size, 12px);
|
|
352
380
|
}
|
|
353
381
|
.el-tour__closebtn .el-tour__close {
|
|
354
382
|
color: var(--el-tour-close-color);
|
|
@@ -362,7 +390,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
362
390
|
padding-bottom: var(--el-tour-padding-primary);
|
|
363
391
|
}
|
|
364
392
|
.el-tour__header.show-close {
|
|
365
|
-
padding-right: calc(var(--el-tour-padding-primary) + var(--el-message-close-size,
|
|
393
|
+
padding-right: calc(var(--el-tour-padding-primary) + var(--el-message-close-size, 12px));
|
|
366
394
|
}
|
|
367
395
|
|
|
368
396
|
.el-tour__title {
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -342,7 +370,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
370
|
--el-fill-color-darker: #e6e8eb;
|
|
343
371
|
--el-fill-color-blank: #ffffff;
|
|
344
372
|
--el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.04), 0px 8px 20px rgba(0, 0, 0, 0.08);
|
|
345
|
-
--el-box-shadow-light: 0px 0px
|
|
373
|
+
--el-box-shadow-light: 0px 1px 2px 0px rgba(26, 11, 94, 0.1019607843);
|
|
346
374
|
--el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, 0.12);
|
|
347
375
|
--el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, 0.08), 0px 12px 32px rgba(0, 0, 0, 0.12), 0px 8px 16px -8px rgba(0, 0, 0, 0.16);
|
|
348
376
|
--el-disabled-bg-color: var(--el-color-neutral-light-2);
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
205
|
}
|
|
206
|
+
:root {
|
|
207
|
+
--el-color-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -217,6 +217,34 @@
|
|
|
217
217
|
:root {
|
|
218
218
|
--el-color-danger-light-9: #7d1f1f;
|
|
219
219
|
}
|
|
220
|
+
:root {
|
|
221
|
+
--el-color-error-light-1: #fde3e3;
|
|
222
|
+
}
|
|
223
|
+
:root {
|
|
224
|
+
--el-color-error-light-2: #fdcbcb;
|
|
225
|
+
}
|
|
226
|
+
:root {
|
|
227
|
+
--el-color-error-light-3: #faa7a7;
|
|
228
|
+
}
|
|
229
|
+
:root {
|
|
230
|
+
--el-color-error-light-4: #f35c5c;
|
|
231
|
+
}
|
|
232
|
+
:root {
|
|
233
|
+
--el-color-error-light-5: #eb4848;
|
|
234
|
+
--el-color-error: #eb4848;
|
|
235
|
+
}
|
|
236
|
+
:root {
|
|
237
|
+
--el-color-error-light-6: #d82a2a;
|
|
238
|
+
}
|
|
239
|
+
:root {
|
|
240
|
+
--el-color-error-light-7: #b52020;
|
|
241
|
+
}
|
|
242
|
+
:root {
|
|
243
|
+
--el-color-error-light-8: #961e1e;
|
|
244
|
+
}
|
|
245
|
+
:root {
|
|
246
|
+
--el-color-error-light-9: #7d1f1f;
|
|
247
|
+
}
|
|
220
248
|
:root {
|
|
221
249
|
--el-color-success-light-1: #f0f8ed;
|
|
222
250
|
}
|
|
@@ -695,6 +723,55 @@
|
|
|
695
723
|
border-color: transparent !important;
|
|
696
724
|
}
|
|
697
725
|
|
|
726
|
+
.btn-error {
|
|
727
|
+
--button-background-color: var(--error-500);
|
|
728
|
+
--button-border-color: var(--error-500);
|
|
729
|
+
--button-hover-color: var(--button-hover-font-color);
|
|
730
|
+
--button-hover-background-color: var(--error-600);
|
|
731
|
+
--button-hover-border-color: var(--error-600);
|
|
732
|
+
--button-active-color: var(--button-active-font-color);
|
|
733
|
+
--button-active-background-color: rgba(var(--error-600-rgb), 0.95);
|
|
734
|
+
--button-active-border-color: var(--error-600);
|
|
735
|
+
background-color: var(--button-background-color);
|
|
736
|
+
border-color: var(--button-border-color);
|
|
737
|
+
color: var(--button-font-color);
|
|
738
|
+
}
|
|
739
|
+
.btn-error:disabled:not(.btn-ghost, .btn-outline) {
|
|
740
|
+
background-color: var(--button-border-color);
|
|
741
|
+
border-color: var(--button-border-color);
|
|
742
|
+
}
|
|
743
|
+
.btn-error-outline, .btn-error-ghost {
|
|
744
|
+
--button-background-color: var(--error-500);
|
|
745
|
+
--button-border-color: var(--error-500);
|
|
746
|
+
--button-hover-color: var(--button-hover-font-color);
|
|
747
|
+
--button-hover-background-color: var(--error-600);
|
|
748
|
+
--button-hover-border-color: var(--error-600);
|
|
749
|
+
--button-active-color: var(--button-active-font-color);
|
|
750
|
+
--button-active-background-color: rgba(var(--error-600-rgb), 0.95);
|
|
751
|
+
--button-active-border-color: var(--error-600);
|
|
752
|
+
border-color: var(--button-border-color);
|
|
753
|
+
color: var(--button-background-color);
|
|
754
|
+
}
|
|
755
|
+
.btn-error-outline:hover, .btn-error-ghost:hover {
|
|
756
|
+
background-color: var(--button-hover-background-color);
|
|
757
|
+
border-color: var(--button-hover-background-color);
|
|
758
|
+
color: var(--button-font-color);
|
|
759
|
+
}
|
|
760
|
+
.btn-error-outline:active, .btn-error-ghost:active {
|
|
761
|
+
border-color: var(--button-active-background-color);
|
|
762
|
+
color: var(--button-font-color);
|
|
763
|
+
background-color: var(--button-active-background-color);
|
|
764
|
+
}
|
|
765
|
+
.btn-error-outline {
|
|
766
|
+
background-color: transparent;
|
|
767
|
+
border-style: solid;
|
|
768
|
+
border-width: 1px;
|
|
769
|
+
}
|
|
770
|
+
.btn-error-ghost {
|
|
771
|
+
background-color: transparent;
|
|
772
|
+
border-color: transparent !important;
|
|
773
|
+
}
|
|
774
|
+
|
|
698
775
|
.btn-success {
|
|
699
776
|
--button-background-color: var(--success-500);
|
|
700
777
|
--button-border-color: var(--success-500);
|
|
@@ -882,7 +959,7 @@ h6,
|
|
|
882
959
|
.p-medium {
|
|
883
960
|
---p-medium-font-size: 14px;
|
|
884
961
|
font-size: var(---p-medium-font-size);
|
|
885
|
-
---p-medium-line-height:
|
|
962
|
+
---p-medium-line-height: 24px;
|
|
886
963
|
line-height: var(---p-medium-line-height);
|
|
887
964
|
}
|
|
888
965
|
|
|
@@ -911,7 +988,7 @@ h6,
|
|
|
911
988
|
[class*=" icon"] {
|
|
912
989
|
align-items: center;
|
|
913
990
|
display: flex;
|
|
914
|
-
gap:
|
|
991
|
+
gap: 4px;
|
|
915
992
|
position: relative;
|
|
916
993
|
}
|
|
917
994
|
[class^=icon-xxs]::before,
|
package/dist/runtime/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import 'element-plus';
|
|
2
2
|
import '@nuxt/schema';
|
|
3
3
|
|
|
4
|
-
declare module '
|
|
4
|
+
declare module 'element-plus/es/constants' {
|
|
5
5
|
export const componentSizes: readonly string[];
|
|
6
6
|
export type ComponentSize = (typeof componentSizes)[number];
|
|
7
7
|
|
|
@@ -16,25 +16,16 @@ declare module '@timus-networks/element-plus/es/constants' {
|
|
|
16
16
|
>;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
declare module '
|
|
20
|
-
export type ThemeSize = typeof import('element-plus/es/constants').componentSizeMap;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
declare module '@timus-networks/element-plus/es/utils' {
|
|
19
|
+
declare module 'element-plus/es/utils' {
|
|
24
20
|
export interface EpPropMergeType<T, U, V> extends T {}
|
|
25
21
|
}
|
|
26
22
|
|
|
27
|
-
declare module '
|
|
28
|
-
export type ButtonType = (typeof buttonTypes)[number];
|
|
29
|
-
export type ExtendedComponentSize = ComponentSize | 'medium' | 'mini' | 'huge';
|
|
30
|
-
export type ExtendedButtonType = ButtonType | 'secondary' | 'neutral';
|
|
31
|
-
|
|
23
|
+
declare module 'element-plus' {
|
|
32
24
|
export interface ButtonProps {
|
|
33
|
-
type
|
|
34
|
-
size?: ExtendedComponentSize;
|
|
25
|
+
type?: '' | 'default' | 'primary' | 'success' | 'warning' | 'info' | 'danger' | 'text' | 'neutral' | 'secondary';
|
|
35
26
|
}
|
|
36
27
|
|
|
37
|
-
export interface
|
|
38
|
-
|
|
28
|
+
export interface TagProps {
|
|
29
|
+
type?: 'success' | 'warning' | 'info' | 'primary' | 'danger' | 'secondary' | 'neutral';
|
|
39
30
|
}
|
|
40
31
|
}
|
package/package.json
CHANGED