bitwrench 2.0.18 → 2.0.19
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 +86 -81
- package/dist/bitwrench-bccl.cjs.js +221 -48
- package/dist/bitwrench-bccl.cjs.min.js +3 -3
- package/dist/bitwrench-bccl.esm.js +221 -48
- package/dist/bitwrench-bccl.esm.min.js +3 -3
- package/dist/bitwrench-bccl.umd.js +221 -48
- package/dist/bitwrench-bccl.umd.min.js +3 -3
- package/dist/bitwrench-code-edit.cjs.js +7 -9
- package/dist/bitwrench-code-edit.cjs.min.js +5 -7
- package/dist/bitwrench-code-edit.es5.js +6 -8
- package/dist/bitwrench-code-edit.es5.min.js +5 -7
- package/dist/bitwrench-code-edit.esm.js +7 -9
- package/dist/bitwrench-code-edit.esm.min.js +5 -7
- package/dist/bitwrench-code-edit.umd.js +7 -9
- package/dist/bitwrench-code-edit.umd.min.js +5 -7
- package/dist/bitwrench-debug.js +268 -0
- package/dist/bitwrench-debug.min.js +3 -0
- package/dist/bitwrench-lean.cjs.js +250 -1574
- package/dist/bitwrench-lean.cjs.min.js +6 -6
- package/dist/bitwrench-lean.es5.js +344 -1661
- package/dist/bitwrench-lean.es5.min.js +4 -4
- package/dist/bitwrench-lean.esm.js +250 -1574
- package/dist/bitwrench-lean.esm.min.js +6 -6
- package/dist/bitwrench-lean.umd.js +250 -1574
- package/dist/bitwrench-lean.umd.min.js +6 -6
- package/dist/bitwrench-util-css.cjs.js +1 -1
- package/dist/bitwrench-util-css.cjs.min.js +1 -1
- package/dist/bitwrench-util-css.es5.js +1 -1
- package/dist/bitwrench-util-css.es5.min.js +1 -1
- package/dist/bitwrench-util-css.esm.js +1 -1
- package/dist/bitwrench-util-css.esm.min.js +1 -1
- package/dist/bitwrench-util-css.umd.js +1 -1
- package/dist/bitwrench-util-css.umd.min.js +1 -1
- package/dist/bitwrench.cjs.js +510 -1660
- package/dist/bitwrench.cjs.min.js +7 -7
- package/dist/bitwrench.css +80 -33
- package/dist/bitwrench.es5.js +569 -1694
- package/dist/bitwrench.es5.min.js +5 -5
- package/dist/bitwrench.esm.js +510 -1660
- package/dist/bitwrench.esm.min.js +7 -7
- package/dist/bitwrench.min.css +1 -1
- package/dist/bitwrench.umd.js +510 -1660
- package/dist/bitwrench.umd.min.js +7 -7
- package/dist/builds.json +133 -111
- package/dist/bwserve.cjs.js +2 -2
- package/dist/bwserve.esm.js +2 -2
- package/dist/sri.json +46 -44
- package/package.json +5 -3
- package/readme.html +86 -75
- package/src/bitwrench-bccl-entry.js +3 -4
- package/src/bitwrench-bccl.js +217 -43
- package/src/bitwrench-code-edit.js +6 -8
- package/src/bitwrench-debug.js +245 -0
- package/src/bitwrench-styles.js +35 -8
- package/src/bitwrench.js +212 -1563
- package/src/cli/attach.js +53 -21
- package/src/cli/serve.js +179 -3
- package/src/version.js +3 -3
package/dist/bitwrench.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* bitwrench.css v2.0.
|
|
2
|
+
* bitwrench.css v2.0.19 — AUTO-GENERATED, DO NOT EDIT
|
|
3
3
|
*
|
|
4
4
|
* Generated by src/generate-css.js from bitwrench-styles.js
|
|
5
5
|
* This is a static snapshot of what bw.loadStyles() produces
|
|
@@ -1628,6 +1628,8 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1628
1628
|
display: flex;
|
|
1629
1629
|
align-items: center;
|
|
1630
1630
|
justify-content: space-between;
|
|
1631
|
+
padding: 1rem 1.25rem;
|
|
1632
|
+
border-bottom: 1px solid transparent;
|
|
1631
1633
|
border-bottom-color: #c2cbd4;
|
|
1632
1634
|
}
|
|
1633
1635
|
|
|
@@ -1642,6 +1644,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1642
1644
|
.bw_modal_body {
|
|
1643
1645
|
position: relative;
|
|
1644
1646
|
flex: 1 1 auto;
|
|
1647
|
+
padding: 1rem 1.25rem;
|
|
1645
1648
|
}
|
|
1646
1649
|
|
|
1647
1650
|
.bw_modal_footer {
|
|
@@ -1650,6 +1653,8 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1650
1653
|
align-items: center;
|
|
1651
1654
|
justify-content: flex-end;
|
|
1652
1655
|
gap: 0.5rem;
|
|
1656
|
+
padding: 0.75rem 1.25rem;
|
|
1657
|
+
border-top: 1px solid transparent;
|
|
1653
1658
|
border-top-color: #c2cbd4;
|
|
1654
1659
|
}
|
|
1655
1660
|
|
|
@@ -1719,11 +1724,14 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1719
1724
|
display: flex;
|
|
1720
1725
|
align-items: center;
|
|
1721
1726
|
justify-content: space-between;
|
|
1727
|
+
padding: 0.5rem 0.75rem;
|
|
1722
1728
|
font-size: 0.875rem;
|
|
1729
|
+
border-bottom: 1px solid transparent;
|
|
1723
1730
|
border-bottom-color: #c2cbd4;
|
|
1724
1731
|
}
|
|
1725
1732
|
|
|
1726
1733
|
.bw_toast_body {
|
|
1734
|
+
padding: 0.5rem 0.75rem;
|
|
1727
1735
|
font-size: 0.9375rem;
|
|
1728
1736
|
}
|
|
1729
1737
|
|
|
@@ -1753,6 +1761,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1753
1761
|
padding: 0.5rem 0;
|
|
1754
1762
|
margin: 0.125rem 0 0;
|
|
1755
1763
|
background-clip: padding-box;
|
|
1764
|
+
border: 1px solid transparent;
|
|
1756
1765
|
opacity: 0;
|
|
1757
1766
|
visibility: hidden;
|
|
1758
1767
|
pointer-events: none;
|
|
@@ -1775,6 +1784,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1775
1784
|
.bw_dropdown_item {
|
|
1776
1785
|
display: block;
|
|
1777
1786
|
width: 100%;
|
|
1787
|
+
padding: 0.4rem 1rem;
|
|
1778
1788
|
clear: both;
|
|
1779
1789
|
font-weight: 400;
|
|
1780
1790
|
text-align: inherit;
|
|
@@ -1783,6 +1793,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1783
1793
|
background-color: transparent;
|
|
1784
1794
|
border: 0;
|
|
1785
1795
|
font-size: 0.9375rem;
|
|
1796
|
+
cursor: pointer;
|
|
1786
1797
|
color: #212529;
|
|
1787
1798
|
transition: background-color 100ms ease-out;
|
|
1788
1799
|
}
|
|
@@ -2823,6 +2834,74 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
2823
2834
|
text-align: center;
|
|
2824
2835
|
}
|
|
2825
2836
|
|
|
2837
|
+
.bw_text_justify {
|
|
2838
|
+
text-align: justify;
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
.bw_fw_bold {
|
|
2842
|
+
font-weight: 700 !important;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
.bw_fw_semibold {
|
|
2846
|
+
font-weight: 600 !important;
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
.bw_fw_normal {
|
|
2850
|
+
font-weight: 400 !important;
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
.bw_fw_light {
|
|
2854
|
+
font-weight: 300 !important;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
.bw_fst_italic {
|
|
2858
|
+
font-style: italic;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
.bw_fst_normal {
|
|
2862
|
+
font-style: normal;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
.bw_text_underline {
|
|
2866
|
+
text-decoration: underline;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
.bw_text_line_through {
|
|
2870
|
+
text-decoration: line-through;
|
|
2871
|
+
}
|
|
2872
|
+
|
|
2873
|
+
.bw_text_decoration_none {
|
|
2874
|
+
text-decoration: none;
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
.bw_text_uppercase {
|
|
2878
|
+
text-transform: uppercase;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.bw_text_lowercase {
|
|
2882
|
+
text-transform: lowercase;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.bw_text_capitalize {
|
|
2886
|
+
text-transform: capitalize;
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
.bw_fs_sm {
|
|
2890
|
+
font-size: 0.875rem !important;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
.bw_fs_base {
|
|
2894
|
+
font-size: 1rem !important;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
.bw_fs_lg {
|
|
2898
|
+
font-size: 1.125rem !important;
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2901
|
+
.bw_fs_xl {
|
|
2902
|
+
font-size: 1.25rem !important;
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2826
2905
|
.bw_justify_content_start, .justify-content-start {
|
|
2827
2906
|
justify-content: flex-start;
|
|
2828
2907
|
}
|
|
@@ -3165,46 +3244,14 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
3165
3244
|
font-size: 0.75rem !important;
|
|
3166
3245
|
}
|
|
3167
3246
|
|
|
3168
|
-
.bw_fs_sm {
|
|
3169
|
-
font-size: 0.875rem !important;
|
|
3170
|
-
}
|
|
3171
|
-
|
|
3172
|
-
.bw_fs_base {
|
|
3173
|
-
font-size: 1rem !important;
|
|
3174
|
-
}
|
|
3175
|
-
|
|
3176
|
-
.bw_fs_lg {
|
|
3177
|
-
font-size: 1.125rem !important;
|
|
3178
|
-
}
|
|
3179
|
-
|
|
3180
|
-
.bw_fs_xl {
|
|
3181
|
-
font-size: 1.25rem !important;
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
3247
|
.bw_fs_2xl {
|
|
3185
3248
|
font-size: 1.5rem !important;
|
|
3186
3249
|
}
|
|
3187
3250
|
|
|
3188
|
-
.bw_fw_light {
|
|
3189
|
-
font-weight: 300 !important;
|
|
3190
|
-
}
|
|
3191
|
-
|
|
3192
|
-
.bw_fw_normal {
|
|
3193
|
-
font-weight: 400 !important;
|
|
3194
|
-
}
|
|
3195
|
-
|
|
3196
3251
|
.bw_fw_medium {
|
|
3197
3252
|
font-weight: 500 !important;
|
|
3198
3253
|
}
|
|
3199
3254
|
|
|
3200
|
-
.bw_fw_semibold {
|
|
3201
|
-
font-weight: 600 !important;
|
|
3202
|
-
}
|
|
3203
|
-
|
|
3204
|
-
.bw_fw_bold {
|
|
3205
|
-
font-weight: 700 !important;
|
|
3206
|
-
}
|
|
3207
|
-
|
|
3208
3255
|
.bw_lh_tight {
|
|
3209
3256
|
line-height: 1.25 !important;
|
|
3210
3257
|
}
|