bitwrench 2.0.19 → 2.0.21
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 +0 -2
- package/dist/bitwrench-bccl.cjs.js +1 -1
- package/dist/bitwrench-bccl.cjs.min.js +1 -1
- package/dist/bitwrench-bccl.esm.js +1 -1
- package/dist/bitwrench-bccl.esm.min.js +1 -1
- package/dist/bitwrench-bccl.umd.js +1 -1
- package/dist/bitwrench-bccl.umd.min.js +1 -1
- package/dist/bitwrench-code-edit.cjs.js +1 -1
- package/dist/bitwrench-code-edit.cjs.min.js +1 -1
- package/dist/bitwrench-code-edit.es5.js +1 -1
- package/dist/bitwrench-code-edit.es5.min.js +1 -1
- package/dist/bitwrench-code-edit.esm.js +1 -1
- package/dist/bitwrench-code-edit.esm.min.js +1 -1
- package/dist/bitwrench-code-edit.umd.js +1 -1
- package/dist/bitwrench-code-edit.umd.min.js +1 -1
- package/dist/bitwrench-debug.js +1 -1
- package/dist/bitwrench-debug.min.js +1 -1
- package/dist/bitwrench-lean.cjs.js +344 -30
- package/dist/bitwrench-lean.cjs.min.js +14 -6
- package/dist/bitwrench-lean.es5.js +379 -29
- package/dist/bitwrench-lean.es5.min.js +12 -4
- package/dist/bitwrench-lean.esm.js +344 -30
- package/dist/bitwrench-lean.esm.min.js +14 -6
- package/dist/bitwrench-lean.umd.js +344 -30
- package/dist/bitwrench-lean.umd.min.js +14 -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 +344 -30
- package/dist/bitwrench.cjs.min.js +14 -6
- package/dist/bitwrench.css +65 -14
- package/dist/bitwrench.es5.js +379 -29
- package/dist/bitwrench.es5.min.js +13 -5
- package/dist/bitwrench.esm.js +344 -30
- package/dist/bitwrench.esm.min.js +15 -7
- package/dist/bitwrench.min.css +1 -1
- package/dist/bitwrench.umd.js +344 -30
- package/dist/bitwrench.umd.min.js +14 -6
- package/dist/builds.json +94 -94
- package/dist/bwserve.cjs.js +2 -2
- package/dist/bwserve.esm.js +2 -2
- package/dist/sri.json +46 -46
- package/package.json +5 -6
- package/readme.html +2 -2
- package/src/bitwrench-router.js +282 -0
- package/src/bitwrench-styles.js +59 -27
- package/src/bitwrench.js +6 -0
- 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.21 — 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
|
|
@@ -443,7 +443,7 @@ a {
|
|
|
443
443
|
background-color: #ecf4f4;
|
|
444
444
|
border: 1px solid #c2cbd4;
|
|
445
445
|
border-radius: 8px;
|
|
446
|
-
box-shadow: 0 1px 3px rgba(0,0,0,0.
|
|
446
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
|
|
447
447
|
transition: box-shadow 200ms ease-out, transform 200ms ease-out;
|
|
448
448
|
}
|
|
449
449
|
|
|
@@ -487,12 +487,12 @@ a {
|
|
|
487
487
|
}
|
|
488
488
|
|
|
489
489
|
.bw_card_hoverable {
|
|
490
|
-
transition:
|
|
490
|
+
transition: box-shadow 300ms ease-out, transform 300ms ease-out;
|
|
491
491
|
}
|
|
492
492
|
|
|
493
493
|
.bw_card_hoverable:hover {
|
|
494
494
|
transform: translateY(-4px);
|
|
495
|
-
box-shadow: 0 4px
|
|
495
|
+
box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08);
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
.bw_card_img_top {
|
|
@@ -529,6 +529,7 @@ a {
|
|
|
529
529
|
appearance: none;
|
|
530
530
|
border: 1px solid transparent;
|
|
531
531
|
font-family: inherit;
|
|
532
|
+
transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
532
533
|
padding: 0.5rem 0.75rem;
|
|
533
534
|
border-radius: 6px;
|
|
534
535
|
color: #212529;
|
|
@@ -669,6 +670,7 @@ textarea.bw_form_control {
|
|
|
669
670
|
font-weight: 500;
|
|
670
671
|
color: #6c757d;
|
|
671
672
|
border-radius: 6px;
|
|
673
|
+
transition: color 100ms ease-out, background-color 100ms ease-out;
|
|
672
674
|
}
|
|
673
675
|
|
|
674
676
|
.bw_table {
|
|
@@ -804,6 +806,7 @@ textarea.bw_form_control {
|
|
|
804
806
|
overflow: hidden;
|
|
805
807
|
font-size: .875rem;
|
|
806
808
|
background-color: #e2eeee;
|
|
809
|
+
border-radius: .375rem;
|
|
807
810
|
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
|
|
808
811
|
}
|
|
809
812
|
|
|
@@ -817,6 +820,7 @@ textarea.bw_form_control {
|
|
|
817
820
|
font-weight: 600;
|
|
818
821
|
color: #fff;
|
|
819
822
|
background-color: #006666;
|
|
823
|
+
border-radius: inherit;
|
|
820
824
|
box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
|
|
821
825
|
}
|
|
822
826
|
|
|
@@ -866,6 +870,11 @@ textarea.bw_form_control {
|
|
|
866
870
|
transition: color 100ms ease-out, border-color 100ms ease-out, background-color 100ms ease-out;
|
|
867
871
|
}
|
|
868
872
|
|
|
873
|
+
.bw_nav_link:focus-visible {
|
|
874
|
+
outline: 2px solid currentColor;
|
|
875
|
+
outline-offset: -2px;
|
|
876
|
+
}
|
|
877
|
+
|
|
869
878
|
.bw_nav_tabs .bw_nav_link {
|
|
870
879
|
border: none;
|
|
871
880
|
border-bottom: 2px solid transparent;
|
|
@@ -1227,6 +1236,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1227
1236
|
border: 0;
|
|
1228
1237
|
border-radius: 0.25rem;
|
|
1229
1238
|
cursor: pointer;
|
|
1239
|
+
transition: opacity 0.15s ease-out;
|
|
1230
1240
|
color: #212529;
|
|
1231
1241
|
opacity: 0.5;
|
|
1232
1242
|
}
|
|
@@ -1235,6 +1245,11 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1235
1245
|
opacity: 0.75;
|
|
1236
1246
|
}
|
|
1237
1247
|
|
|
1248
|
+
.bw_close:focus-visible {
|
|
1249
|
+
outline: 2px solid currentColor;
|
|
1250
|
+
outline-offset: 2px;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1238
1253
|
.bw_vstack {
|
|
1239
1254
|
display: flex;
|
|
1240
1255
|
flex-direction: column;
|
|
@@ -1449,6 +1464,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1449
1464
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
1450
1465
|
background-repeat: no-repeat;
|
|
1451
1466
|
background-size: 1.25rem;
|
|
1467
|
+
transition: transform 0.2s ease-out;
|
|
1452
1468
|
}
|
|
1453
1469
|
|
|
1454
1470
|
.bw_accordion_button:not(.bw_collapsed)::after {
|
|
@@ -1525,6 +1541,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1525
1541
|
padding: 0;
|
|
1526
1542
|
background-color: #212529;
|
|
1527
1543
|
color: #fff;
|
|
1544
|
+
transition: background-color 0.15s ease-out;
|
|
1528
1545
|
}
|
|
1529
1546
|
|
|
1530
1547
|
.bw_carousel_control img {
|
|
@@ -1533,6 +1550,11 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1533
1550
|
pointer-events: none;
|
|
1534
1551
|
}
|
|
1535
1552
|
|
|
1553
|
+
.bw_carousel_control:focus-visible {
|
|
1554
|
+
outline: 2px solid currentColor;
|
|
1555
|
+
outline-offset: 2px;
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1536
1558
|
.bw_carousel_control_prev {
|
|
1537
1559
|
left: 10px;
|
|
1538
1560
|
}
|
|
@@ -1579,6 +1601,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1579
1601
|
opacity: 0;
|
|
1580
1602
|
visibility: hidden;
|
|
1581
1603
|
pointer-events: none;
|
|
1604
|
+
transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
|
|
1582
1605
|
}
|
|
1583
1606
|
|
|
1584
1607
|
.bw_modal.bw_modal_show {
|
|
@@ -1593,6 +1616,8 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1593
1616
|
max-width: 500px;
|
|
1594
1617
|
margin: 1.75rem auto;
|
|
1595
1618
|
pointer-events: none;
|
|
1619
|
+
transform: translateY(-16px);
|
|
1620
|
+
transition: transform 0.2s ease-out;
|
|
1596
1621
|
}
|
|
1597
1622
|
|
|
1598
1623
|
.bw_modal.bw_modal_show .bw_modal_dialog {
|
|
@@ -1621,7 +1646,8 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1621
1646
|
outline: 0;
|
|
1622
1647
|
background-color: #ecf4f4;
|
|
1623
1648
|
border-color: #c2cbd4;
|
|
1624
|
-
|
|
1649
|
+
border-radius: 8px;
|
|
1650
|
+
box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08);
|
|
1625
1651
|
}
|
|
1626
1652
|
|
|
1627
1653
|
.bw_modal_header {
|
|
@@ -1706,9 +1732,12 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1706
1732
|
max-width: calc(100vw - 2rem);
|
|
1707
1733
|
background-clip: padding-box;
|
|
1708
1734
|
opacity: 0;
|
|
1735
|
+
transform: translateY(-8px);
|
|
1736
|
+
transition: opacity 0.2s ease-out, transform 0.2s ease-out;
|
|
1709
1737
|
background-color: #ecf4f4;
|
|
1710
1738
|
border-color: #c2cbd4;
|
|
1711
|
-
|
|
1739
|
+
border-radius: 8px;
|
|
1740
|
+
box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08);
|
|
1712
1741
|
}
|
|
1713
1742
|
|
|
1714
1743
|
.bw_toast.bw_toast_show {
|
|
@@ -1718,6 +1747,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1718
1747
|
|
|
1719
1748
|
.bw_toast.bw_toast_hiding {
|
|
1720
1749
|
opacity: 0;
|
|
1750
|
+
transform: translateY(-8px);
|
|
1721
1751
|
}
|
|
1722
1752
|
|
|
1723
1753
|
.bw_toast_header {
|
|
@@ -1765,15 +1795,19 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1765
1795
|
opacity: 0;
|
|
1766
1796
|
visibility: hidden;
|
|
1767
1797
|
pointer-events: none;
|
|
1798
|
+
transform: translateY(-4px);
|
|
1799
|
+
transition: opacity 0.15s ease-out, transform 0.15s ease-out, visibility 0.15s ease-out;
|
|
1768
1800
|
background-color: #ecf4f4;
|
|
1769
1801
|
border-color: #c2cbd4;
|
|
1770
|
-
|
|
1802
|
+
border-radius: 8px;
|
|
1803
|
+
box-shadow: 0 4px 6px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
|
|
1771
1804
|
}
|
|
1772
1805
|
|
|
1773
1806
|
.bw_dropdown_menu.bw_dropdown_show {
|
|
1774
1807
|
opacity: 1;
|
|
1775
1808
|
visibility: visible;
|
|
1776
1809
|
pointer-events: auto;
|
|
1810
|
+
transform: translateY(0);
|
|
1777
1811
|
}
|
|
1778
1812
|
|
|
1779
1813
|
.bw_dropdown_menu_end {
|
|
@@ -1826,6 +1860,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1826
1860
|
background-repeat: no-repeat;
|
|
1827
1861
|
background-size: contain;
|
|
1828
1862
|
cursor: pointer;
|
|
1863
|
+
transition: background-color 0.15s ease-out, background-position 0.15s ease-out, border-color 0.15s ease-out;
|
|
1829
1864
|
background-color: #6c757d;
|
|
1830
1865
|
border-color: #6c757d;
|
|
1831
1866
|
}
|
|
@@ -1912,17 +1947,17 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1912
1947
|
.bw_stat_card {
|
|
1913
1948
|
padding: 1.25rem;
|
|
1914
1949
|
border-left: 4px solid transparent;
|
|
1915
|
-
border-radius: 8px;
|
|
1916
1950
|
background-color: #ecf4f4;
|
|
1917
|
-
transition: box-shadow 100ms ease-out, transform 100ms ease-out;
|
|
1918
1951
|
color: #212529;
|
|
1919
1952
|
border: 1px solid #c2cbd4;
|
|
1920
|
-
|
|
1953
|
+
border-radius: 8px;
|
|
1954
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
|
|
1955
|
+
transition: box-shadow 100ms ease-out, transform 100ms ease-out;
|
|
1921
1956
|
}
|
|
1922
1957
|
|
|
1923
1958
|
.bw_stat_card:hover {
|
|
1924
1959
|
transform: translateY(-1px);
|
|
1925
|
-
box-shadow: 0
|
|
1960
|
+
box-shadow: 0 4px 6px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
|
|
1926
1961
|
}
|
|
1927
1962
|
|
|
1928
1963
|
.bw_stat_icon {
|
|
@@ -1965,7 +2000,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
1965
2000
|
color: #fff;
|
|
1966
2001
|
padding: 0.5rem 0.75rem;
|
|
1967
2002
|
border-radius: .375rem;
|
|
1968
|
-
box-shadow: 0
|
|
2003
|
+
box-shadow: 0 4px 6px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
|
|
1969
2004
|
transition: opacity 100ms ease-out, transform 100ms ease-out;
|
|
1970
2005
|
}
|
|
1971
2006
|
|
|
@@ -2039,7 +2074,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
2039
2074
|
color: #212529;
|
|
2040
2075
|
border: 1px solid #c2cbd4;
|
|
2041
2076
|
border-radius: 8px;
|
|
2042
|
-
box-shadow: 0 4px
|
|
2077
|
+
box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08);
|
|
2043
2078
|
transition: opacity 100ms ease-out, transform 100ms ease-out;
|
|
2044
2079
|
}
|
|
2045
2080
|
|
|
@@ -2136,6 +2171,11 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
2136
2171
|
transition: color 100ms ease-out, background-color 100ms ease-out;
|
|
2137
2172
|
}
|
|
2138
2173
|
|
|
2174
|
+
.bw_search_clear:focus-visible {
|
|
2175
|
+
outline: 2px solid currentColor;
|
|
2176
|
+
outline-offset: 2px;
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2139
2179
|
.bw_range_wrapper {
|
|
2140
2180
|
margin-bottom: 1rem;
|
|
2141
2181
|
}
|
|
@@ -2389,6 +2429,7 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
2389
2429
|
border-color: #c2cbd4;
|
|
2390
2430
|
background-color: #ecf4f4;
|
|
2391
2431
|
color: #212529;
|
|
2432
|
+
border-radius: 6px;
|
|
2392
2433
|
}
|
|
2393
2434
|
|
|
2394
2435
|
.bw_chip {
|
|
@@ -2418,6 +2459,11 @@ a.bw_list_group_item:focus-visible, .bw_list_group_item:focus-visible {
|
|
|
2418
2459
|
border-radius: 50%;
|
|
2419
2460
|
}
|
|
2420
2461
|
|
|
2462
|
+
.bw_chip_remove:focus-visible {
|
|
2463
|
+
outline: 2px solid currentColor;
|
|
2464
|
+
outline-offset: 1px;
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2421
2467
|
.bw_chip_field {
|
|
2422
2468
|
flex: 1;
|
|
2423
2469
|
min-width: 80px;
|
|
@@ -3357,7 +3403,7 @@ a:hover {
|
|
|
3357
3403
|
}
|
|
3358
3404
|
|
|
3359
3405
|
.bw_card:hover {
|
|
3360
|
-
box-shadow: 0
|
|
3406
|
+
box-shadow: 0 4px 6px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
|
|
3361
3407
|
}
|
|
3362
3408
|
|
|
3363
3409
|
.bw_card_subtitle {
|
|
@@ -3580,6 +3626,11 @@ a.bw_list_group_item:hover {
|
|
|
3580
3626
|
box-shadow: 0 0 0 0.25rem rgba(0,102,102,0.25);
|
|
3581
3627
|
}
|
|
3582
3628
|
|
|
3629
|
+
.bw_form_switch .bw_switch_input:focus-visible {
|
|
3630
|
+
box-shadow: 0 0 0 0.25rem rgba(0,102,102,0.25);
|
|
3631
|
+
outline: none;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3583
3634
|
.bw_stat_change_up {
|
|
3584
3635
|
color: #19875e;
|
|
3585
3636
|
}
|