@g1cloud/open-bluesea-core 1.0.0-alpha.5 → 1.0.0-alpha.7
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/dist/BSAlertModal-ZEIUM0ut.js +4 -0
- package/dist/BSYesNoModal-Cs6mgXcP.js +4 -0
- package/dist/index.d.ts +1522 -44
- package/dist/open-bluesea-core.css +106 -2
- package/dist/open-bluesea-core.es.js +1062 -320
- package/dist/open-bluesea-core.umd.js +1069 -319
- package/package.json +2 -1
- package/dist/blueseaPlugin.d.ts +0 -43
- package/dist/component/basic/PageNavigation.model.d.ts +0 -5
- package/dist/component/input/DateInputLib.d.ts +0 -26
- package/dist/contextmenu/contextMenuPlugin.d.ts +0 -36
- package/dist/directive/vClickOutside.d.ts +0 -20
- package/dist/directive/vFocusOnLoad.d.ts +0 -3
- package/dist/directive/vTooltip.d.ts +0 -7
- package/dist/model/CommonTypes.d.ts +0 -29
- package/dist/model/DefaultImpl.d.ts +0 -7
- package/dist/model/FieldContext.d.ts +0 -14
- package/dist/notification/notificationPlugin.d.ts +0 -31
- package/dist/savepoint/SavePoint.d.ts +0 -46
- package/dist/util/componentUtil.d.ts +0 -11
- package/dist/util/debounceUtil.d.ts +0 -16
- package/dist/util/formatUtil.d.ts +0 -69
- package/dist/util/typeUtil.d.ts +0 -18
- package/dist/util/waitUtil.d.ts +0 -19
- package/dist/validator/FieldValidator.d.ts +0 -43
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
:root, :host {
|
|
37
37
|
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
38
38
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
39
|
+
--color-black: #000;
|
|
39
40
|
--spacing: .25rem;
|
|
40
41
|
--text-xs: .75rem;
|
|
41
42
|
--text-xs--line-height: calc(1 / .75);
|
|
@@ -339,7 +340,7 @@
|
|
|
339
340
|
left: 50%;
|
|
340
341
|
}
|
|
341
342
|
|
|
342
|
-
.z
|
|
343
|
+
.z-250 {
|
|
343
344
|
z-index: 250;
|
|
344
345
|
}
|
|
345
346
|
|
|
@@ -393,10 +394,18 @@
|
|
|
393
394
|
margin-left: calc(var(--spacing) * 1);
|
|
394
395
|
}
|
|
395
396
|
|
|
397
|
+
.ml-8 {
|
|
398
|
+
margin-left: calc(var(--spacing) * 8);
|
|
399
|
+
}
|
|
400
|
+
|
|
396
401
|
.flex {
|
|
397
402
|
display: flex;
|
|
398
403
|
}
|
|
399
404
|
|
|
405
|
+
.hidden {
|
|
406
|
+
display: none;
|
|
407
|
+
}
|
|
408
|
+
|
|
400
409
|
.inline-block {
|
|
401
410
|
display: inline-block;
|
|
402
411
|
}
|
|
@@ -493,6 +502,14 @@
|
|
|
493
502
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
494
503
|
}
|
|
495
504
|
|
|
505
|
+
.cursor-default {
|
|
506
|
+
cursor: default;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.cursor-move {
|
|
510
|
+
cursor: move;
|
|
511
|
+
}
|
|
512
|
+
|
|
496
513
|
.cursor-pointer {
|
|
497
514
|
cursor: pointer;
|
|
498
515
|
}
|
|
@@ -525,6 +542,14 @@
|
|
|
525
542
|
justify-content: center;
|
|
526
543
|
}
|
|
527
544
|
|
|
545
|
+
.justify-end {
|
|
546
|
+
justify-content: flex-end;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.justify-start {
|
|
550
|
+
justify-content: flex-start;
|
|
551
|
+
}
|
|
552
|
+
|
|
528
553
|
.gap-0\.5 {
|
|
529
554
|
gap: calc(var(--spacing) * .5);
|
|
530
555
|
}
|
|
@@ -577,6 +602,10 @@
|
|
|
577
602
|
border-width: 0;
|
|
578
603
|
}
|
|
579
604
|
|
|
605
|
+
.bg-black {
|
|
606
|
+
background-color: var(--color-black);
|
|
607
|
+
}
|
|
608
|
+
|
|
580
609
|
.p-0 {
|
|
581
610
|
padding: calc(var(--spacing) * 0);
|
|
582
611
|
}
|
|
@@ -589,6 +618,10 @@
|
|
|
589
618
|
padding: calc(var(--spacing) * 2);
|
|
590
619
|
}
|
|
591
620
|
|
|
621
|
+
.p-6 {
|
|
622
|
+
padding: calc(var(--spacing) * 6);
|
|
623
|
+
}
|
|
624
|
+
|
|
592
625
|
.px-1 {
|
|
593
626
|
padding-inline: calc(var(--spacing) * 1);
|
|
594
627
|
}
|
|
@@ -653,6 +686,10 @@
|
|
|
653
686
|
text-align: center;
|
|
654
687
|
}
|
|
655
688
|
|
|
689
|
+
.text-right {
|
|
690
|
+
text-align: right;
|
|
691
|
+
}
|
|
692
|
+
|
|
656
693
|
.align-middle {
|
|
657
694
|
vertical-align: middle;
|
|
658
695
|
}
|
|
@@ -701,6 +738,10 @@
|
|
|
701
738
|
text-decoration-line: underline;
|
|
702
739
|
}
|
|
703
740
|
|
|
741
|
+
.opacity-30 {
|
|
742
|
+
opacity: .3;
|
|
743
|
+
}
|
|
744
|
+
|
|
704
745
|
.blur {
|
|
705
746
|
--tw-blur: blur(8px);
|
|
706
747
|
filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
|
|
@@ -716,6 +757,11 @@
|
|
|
716
757
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
717
758
|
}
|
|
718
759
|
|
|
760
|
+
.outline-none {
|
|
761
|
+
--tw-outline-style: none;
|
|
762
|
+
outline-style: none;
|
|
763
|
+
}
|
|
764
|
+
|
|
719
765
|
.select-none {
|
|
720
766
|
-webkit-user-select: none;
|
|
721
767
|
user-select: none;
|
|
@@ -1813,7 +1859,7 @@
|
|
|
1813
1859
|
background-color: var(--body-bg);
|
|
1814
1860
|
justify-content: flex-start;
|
|
1815
1861
|
align-items: center;
|
|
1816
|
-
display:
|
|
1862
|
+
display: flex;
|
|
1817
1863
|
}
|
|
1818
1864
|
|
|
1819
1865
|
.bs-select-wrap > .selected .label {
|
|
@@ -2845,6 +2891,64 @@ to {
|
|
|
2845
2891
|
inherits: false
|
|
2846
2892
|
}
|
|
2847
2893
|
/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
|
|
2894
|
+
.modal-wrapper {
|
|
2895
|
+
inset: calc(var(--spacing, .25rem) * 0);
|
|
2896
|
+
z-index: 201;
|
|
2897
|
+
position: fixed;
|
|
2898
|
+
}
|
|
2899
|
+
.modal-wrapper > .modal-panel {
|
|
2900
|
+
cursor: move;
|
|
2901
|
+
padding: calc(var(--spacing, .25rem) * 6);
|
|
2902
|
+
--tw-outline-style: none;
|
|
2903
|
+
background-color: var(--body-bg);
|
|
2904
|
+
color: var(--body-text);
|
|
2905
|
+
border: 1px solid var(--border);
|
|
2906
|
+
border-radius: .25rem;
|
|
2907
|
+
outline-style: none;
|
|
2908
|
+
position: relative;
|
|
2909
|
+
box-shadow: 0 4px 8px #0003;
|
|
2910
|
+
}
|
|
2911
|
+
.modal-wrapper > .modal-panel.maximized {
|
|
2912
|
+
margin: calc(var(--spacing, .25rem) * 2);
|
|
2913
|
+
cursor: default;
|
|
2914
|
+
width: calc(100% - 16px) !important;
|
|
2915
|
+
height: calc(100% - 16px) !important;
|
|
2916
|
+
}
|
|
2917
|
+
[data-theme="dark"] .modal-wrapper > .modal-panel {
|
|
2918
|
+
box-shadow: 0 4px 8px #ffffff1a;
|
|
2919
|
+
}
|
|
2920
|
+
/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
|
|
2921
|
+
.bs-modal-container .modal-curtain {
|
|
2922
|
+
inset: calc(var(--spacing, .25rem) * 0);
|
|
2923
|
+
z-index: 200;
|
|
2924
|
+
background-color: var(--color-black, #000);
|
|
2925
|
+
opacity: .3;
|
|
2926
|
+
position: fixed;
|
|
2927
|
+
}
|
|
2928
|
+
/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
|
|
2929
|
+
.bs-modal-frame {
|
|
2930
|
+
cursor: default;
|
|
2931
|
+
height: 100%;
|
|
2932
|
+
}
|
|
2933
|
+
.bs-modal-frame > .title-bar {
|
|
2934
|
+
padding-bottom: calc(var(--spacing, .25rem) * 6);
|
|
2935
|
+
}
|
|
2936
|
+
.bs-modal-frame > .title-bar .title {
|
|
2937
|
+
font-size: 1.3846em;
|
|
2938
|
+
}
|
|
2939
|
+
.bs-modal-frame > .title-bar .title-buttons {
|
|
2940
|
+
text-align: right;
|
|
2941
|
+
}
|
|
2942
|
+
.bs-modal-frame > .title-bar .close-btn {
|
|
2943
|
+
padding: calc(var(--spacing, .25rem) * 1);
|
|
2944
|
+
}
|
|
2945
|
+
.bs-modal-frame > .title-bar .close-btn .font-icon {
|
|
2946
|
+
font-size: 1.6em;
|
|
2947
|
+
}
|
|
2948
|
+
.bs-modal-frame > .buttons {
|
|
2949
|
+
padding-top: calc(var(--spacing, .25rem) * 6);
|
|
2950
|
+
}
|
|
2951
|
+
/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
|
|
2848
2952
|
@layer properties {
|
|
2849
2953
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
2850
2954
|
*, :before, :after, ::backdrop {
|