@arcanewizards/timecode-toolbox 0.1.0 → 0.1.1
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/LICENSE +21 -0
- package/dist/components/frontend/index.js +865 -272
- package/dist/components/frontend/index.mjs +855 -262
- package/dist/entrypoint.css +163 -53
- package/dist/entrypoint.js +1474 -493
- package/dist/entrypoint.js.map +4 -4
- package/dist/frontend.js +1474 -493
- package/dist/frontend.js.map +4 -4
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +308 -37
- package/dist/index.mjs +329 -49
- package/dist/start.d.mts +1 -2
- package/dist/start.d.ts +1 -2
- package/dist/start.js +311 -38
- package/dist/start.mjs +332 -50
- package/package.json +12 -6
- package/.turbo/turbo-build.log +0 -58
- package/.turbo/turbo-lint.log +0 -4
- package/CHANGELOG.md +0 -40
- package/eslint.config.mjs +0 -49
- package/src/app.tsx +0 -147
- package/src/components/backend/index.ts +0 -6
- package/src/components/backend/toolbox-root.ts +0 -119
- package/src/components/frontend/constants.ts +0 -81
- package/src/components/frontend/entrypoint.ts +0 -12
- package/src/components/frontend/frontend.css +0 -108
- package/src/components/frontend/index.tsx +0 -46
- package/src/components/frontend/toolbox/content.tsx +0 -45
- package/src/components/frontend/toolbox/context.tsx +0 -63
- package/src/components/frontend/toolbox/core/size-aware-div.tsx +0 -51
- package/src/components/frontend/toolbox/core/timecode-display.tsx +0 -592
- package/src/components/frontend/toolbox/generators.tsx +0 -318
- package/src/components/frontend/toolbox/inputs.tsx +0 -484
- package/src/components/frontend/toolbox/outputs.tsx +0 -581
- package/src/components/frontend/toolbox/preferences.ts +0 -25
- package/src/components/frontend/toolbox/root.tsx +0 -335
- package/src/components/frontend/toolbox/settings.tsx +0 -54
- package/src/components/frontend/toolbox/types.ts +0 -28
- package/src/components/frontend/toolbox/util.tsx +0 -61
- package/src/components/proto.ts +0 -420
- package/src/config.ts +0 -7
- package/src/generators/clock.tsx +0 -206
- package/src/generators/index.tsx +0 -15
- package/src/index.ts +0 -38
- package/src/inputs/artnet.tsx +0 -305
- package/src/inputs/index.tsx +0 -13
- package/src/inputs/tcnet.tsx +0 -272
- package/src/outputs/artnet.tsx +0 -170
- package/src/outputs/index.tsx +0 -11
- package/src/start.ts +0 -47
- package/src/tree.ts +0 -133
- package/src/types.ts +0 -12
- package/src/urls.ts +0 -49
- package/src/util.ts +0 -82
- package/tailwind.config.cjs +0 -7
- package/tsconfig.json +0 -10
- package/tsup.config.ts +0 -10
package/dist/entrypoint.css
CHANGED
|
@@ -838,6 +838,9 @@ body.touch-mode * {
|
|
|
838
838
|
.left-0 {
|
|
839
839
|
left: 0px;
|
|
840
840
|
}
|
|
841
|
+
.m-0 {
|
|
842
|
+
margin: 0px;
|
|
843
|
+
}
|
|
841
844
|
.m-0\.25 {
|
|
842
845
|
margin: calc(var(--arcane-spacing) / 8);
|
|
843
846
|
}
|
|
@@ -864,15 +867,24 @@ body.touch-mode * {
|
|
|
864
867
|
.h-1 {
|
|
865
868
|
height: calc(var(--arcane-spacing) / 2);
|
|
866
869
|
}
|
|
870
|
+
.h-\[20\%\] {
|
|
871
|
+
height: 20%;
|
|
872
|
+
}
|
|
867
873
|
.h-full {
|
|
868
874
|
height: 100%;
|
|
869
875
|
}
|
|
870
876
|
.h-screen {
|
|
871
877
|
height: 100vh;
|
|
872
878
|
}
|
|
879
|
+
.max-h-\[420px\] {
|
|
880
|
+
max-height: 420px;
|
|
881
|
+
}
|
|
873
882
|
.min-h-\[36px\] {
|
|
874
883
|
min-height: 36px;
|
|
875
884
|
}
|
|
885
|
+
.min-h-\[110px\] {
|
|
886
|
+
min-height: 110px;
|
|
887
|
+
}
|
|
876
888
|
.min-h-timecode-min-height {
|
|
877
889
|
min-height: var(--timecode-min-height);
|
|
878
890
|
}
|
|
@@ -885,6 +897,9 @@ body.touch-mode * {
|
|
|
885
897
|
.basis-0 {
|
|
886
898
|
flex-basis: 0px;
|
|
887
899
|
}
|
|
900
|
+
.transform {
|
|
901
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
902
|
+
}
|
|
888
903
|
.cursor-pointer {
|
|
889
904
|
cursor: pointer;
|
|
890
905
|
}
|
|
@@ -915,6 +930,9 @@ body.touch-mode * {
|
|
|
915
930
|
.gap-1 {
|
|
916
931
|
gap: calc(var(--arcane-spacing) / 2);
|
|
917
932
|
}
|
|
933
|
+
.gap-2 {
|
|
934
|
+
gap: calc(var(--arcane-spacing));
|
|
935
|
+
}
|
|
918
936
|
.gap-px {
|
|
919
937
|
gap: 1px;
|
|
920
938
|
}
|
|
@@ -940,12 +958,27 @@ body.touch-mode * {
|
|
|
940
958
|
border-top-style: var(--tw-border-style);
|
|
941
959
|
border-top-width: 1px;
|
|
942
960
|
}
|
|
961
|
+
.border-b {
|
|
962
|
+
border-bottom-style: var(--tw-border-style);
|
|
963
|
+
border-bottom-width: 1px;
|
|
964
|
+
}
|
|
943
965
|
.border-sigil-bg-light {
|
|
944
966
|
border-color: var(--sigil-bg-light);
|
|
945
967
|
}
|
|
946
968
|
.border-sigil-border {
|
|
947
969
|
border-color: var(--sigil-border);
|
|
948
970
|
}
|
|
971
|
+
.border-sigil-usage-blue-border {
|
|
972
|
+
border-color: var(--sigil-usage-blue-border);
|
|
973
|
+
}
|
|
974
|
+
.border-sigil-usage-blue-selected-border {
|
|
975
|
+
border-color: var(
|
|
976
|
+
--sigil-usage-blue-selected-border
|
|
977
|
+
);
|
|
978
|
+
}
|
|
979
|
+
.border-sigil-usage-orange-border {
|
|
980
|
+
border-color: var(--sigil-usage-orange-border);
|
|
981
|
+
}
|
|
949
982
|
.border-timecode-usage-foreground {
|
|
950
983
|
border-color: var(--timecode-usage-foreground);
|
|
951
984
|
}
|
|
@@ -958,6 +991,17 @@ body.touch-mode * {
|
|
|
958
991
|
.bg-sigil-border {
|
|
959
992
|
background-color: var(--sigil-border);
|
|
960
993
|
}
|
|
994
|
+
.bg-sigil-usage-blue-background {
|
|
995
|
+
background-color: var(--sigil-usage-blue-background);
|
|
996
|
+
}
|
|
997
|
+
.bg-sigil-usage-blue-selected-background {
|
|
998
|
+
background-color: var(
|
|
999
|
+
--sigil-usage-blue-selected-background
|
|
1000
|
+
);
|
|
1001
|
+
}
|
|
1002
|
+
.bg-sigil-usage-orange-background {
|
|
1003
|
+
background-color: var(--sigil-usage-orange-background);
|
|
1004
|
+
}
|
|
961
1005
|
.bg-sigil-usage-red-background {
|
|
962
1006
|
background-color: var(--sigil-usage-red-background);
|
|
963
1007
|
}
|
|
@@ -975,15 +1019,27 @@ body.touch-mode * {
|
|
|
975
1019
|
.p-1 {
|
|
976
1020
|
padding: calc(var(--arcane-spacing) / 2);
|
|
977
1021
|
}
|
|
1022
|
+
.p-2 {
|
|
1023
|
+
padding: calc(var(--arcane-spacing));
|
|
1024
|
+
}
|
|
978
1025
|
.p-px {
|
|
979
1026
|
padding: 1px;
|
|
980
1027
|
}
|
|
981
1028
|
.px-1 {
|
|
982
1029
|
padding-inline: calc(var(--arcane-spacing) / 2);
|
|
983
1030
|
}
|
|
1031
|
+
.px-2 {
|
|
1032
|
+
padding-inline: calc(var(--arcane-spacing));
|
|
1033
|
+
}
|
|
1034
|
+
.py-0\.5 {
|
|
1035
|
+
padding-block: calc(var(--arcane-spacing) / 4);
|
|
1036
|
+
}
|
|
984
1037
|
.py-0\.25 {
|
|
985
1038
|
padding-block: calc(var(--arcane-spacing) / 8);
|
|
986
1039
|
}
|
|
1040
|
+
.pb-2 {
|
|
1041
|
+
padding-bottom: calc(var(--arcane-spacing));
|
|
1042
|
+
}
|
|
987
1043
|
.text-center {
|
|
988
1044
|
text-align: center;
|
|
989
1045
|
}
|
|
@@ -1021,9 +1077,15 @@ body.touch-mode * {
|
|
|
1021
1077
|
.text-sigil-foreground-muted {
|
|
1022
1078
|
color: var(--sigil-foreground-muted);
|
|
1023
1079
|
}
|
|
1080
|
+
.text-sigil-usage-blue-text {
|
|
1081
|
+
color: var(--sigil-usage-blue-text);
|
|
1082
|
+
}
|
|
1024
1083
|
.text-sigil-usage-hint-foreground {
|
|
1025
1084
|
color: var(--sigil-usage-hint-foreground);
|
|
1026
1085
|
}
|
|
1086
|
+
.text-sigil-usage-orange-text {
|
|
1087
|
+
color: var(--sigil-usage-orange-text);
|
|
1088
|
+
}
|
|
1027
1089
|
.text-sigil-usage-red-text {
|
|
1028
1090
|
color: var(--sigil-usage-red-text);
|
|
1029
1091
|
}
|
|
@@ -1045,6 +1107,9 @@ body.touch-mode * {
|
|
|
1045
1107
|
.opacity-50 {
|
|
1046
1108
|
opacity: 50%;
|
|
1047
1109
|
}
|
|
1110
|
+
.filter {
|
|
1111
|
+
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,);
|
|
1112
|
+
}
|
|
1048
1113
|
.text-hint-gradient {
|
|
1049
1114
|
background: linear-gradient( to bottom right, var(--sigil-usage-hint-gradient-light), var(--sigil-usage-hint-gradient-dark) );
|
|
1050
1115
|
-webkit-background-clip: text;
|
|
@@ -1059,6 +1124,15 @@ body.touch-mode * {
|
|
|
1059
1124
|
.writing-mode-vertical-rl {
|
|
1060
1125
|
writing-mode: vertical-rl;
|
|
1061
1126
|
}
|
|
1127
|
+
.hover\:bg-sigil-usage-blue-selected-border {
|
|
1128
|
+
&:hover {
|
|
1129
|
+
@media (hover: hover) {
|
|
1130
|
+
background-color: var(
|
|
1131
|
+
--sigil-usage-blue-selected-border
|
|
1132
|
+
);
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1062
1136
|
.hover\:bg-timecode-backdrop-hover {
|
|
1063
1137
|
&:hover {
|
|
1064
1138
|
@media (hover: hover) {
|
|
@@ -1577,6 +1651,17 @@ body.touch-mode * {
|
|
|
1577
1651
|
--tw-drop-shadow: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
|
|
1578
1652
|
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,);
|
|
1579
1653
|
}
|
|
1654
|
+
.sigil-control-button-primary {
|
|
1655
|
+
--sigil-control-button-bg: var(--sigil-usage-hint-background);
|
|
1656
|
+
--sigil-control-button-bg-hover: var(--sigil-usage-hint-border);
|
|
1657
|
+
--sigil-control-button-bg-active: var(--sigil-usage-hint-border);
|
|
1658
|
+
--sigil-control-button-fg: var(--sigil-usage-hint-text);
|
|
1659
|
+
--sigil-control-button-fg-hover: var(--sigil-usage-hint-text);
|
|
1660
|
+
--sigil-control-button-fg-active: var(--sigil-usage-hint-text);
|
|
1661
|
+
--sigil-control-button-border: transparent;
|
|
1662
|
+
--sigil-control-button-border-hover: transparent;
|
|
1663
|
+
--sigil-control-button-border-active: transparent;
|
|
1664
|
+
}
|
|
1580
1665
|
.outline-none {
|
|
1581
1666
|
--tw-outline-style: none;
|
|
1582
1667
|
outline-style: none;
|
|
@@ -1704,59 +1789,6 @@ body.touch-mode * {
|
|
|
1704
1789
|
--sigil-control-button-border-hover: var(--sigil-border);
|
|
1705
1790
|
--sigil-control-button-border-active: var(--sigil-bg-light);
|
|
1706
1791
|
}
|
|
1707
|
-
@property --tw-blur {
|
|
1708
|
-
syntax: "*";
|
|
1709
|
-
inherits: false;
|
|
1710
|
-
}
|
|
1711
|
-
@property --tw-brightness {
|
|
1712
|
-
syntax: "*";
|
|
1713
|
-
inherits: false;
|
|
1714
|
-
}
|
|
1715
|
-
@property --tw-contrast {
|
|
1716
|
-
syntax: "*";
|
|
1717
|
-
inherits: false;
|
|
1718
|
-
}
|
|
1719
|
-
@property --tw-grayscale {
|
|
1720
|
-
syntax: "*";
|
|
1721
|
-
inherits: false;
|
|
1722
|
-
}
|
|
1723
|
-
@property --tw-hue-rotate {
|
|
1724
|
-
syntax: "*";
|
|
1725
|
-
inherits: false;
|
|
1726
|
-
}
|
|
1727
|
-
@property --tw-invert {
|
|
1728
|
-
syntax: "*";
|
|
1729
|
-
inherits: false;
|
|
1730
|
-
}
|
|
1731
|
-
@property --tw-opacity {
|
|
1732
|
-
syntax: "*";
|
|
1733
|
-
inherits: false;
|
|
1734
|
-
}
|
|
1735
|
-
@property --tw-saturate {
|
|
1736
|
-
syntax: "*";
|
|
1737
|
-
inherits: false;
|
|
1738
|
-
}
|
|
1739
|
-
@property --tw-sepia {
|
|
1740
|
-
syntax: "*";
|
|
1741
|
-
inherits: false;
|
|
1742
|
-
}
|
|
1743
|
-
@property --tw-drop-shadow {
|
|
1744
|
-
syntax: "*";
|
|
1745
|
-
inherits: false;
|
|
1746
|
-
}
|
|
1747
|
-
@property --tw-drop-shadow-color {
|
|
1748
|
-
syntax: "*";
|
|
1749
|
-
inherits: false;
|
|
1750
|
-
}
|
|
1751
|
-
@property --tw-drop-shadow-alpha {
|
|
1752
|
-
syntax: "<percentage>";
|
|
1753
|
-
inherits: false;
|
|
1754
|
-
initial-value: 100%;
|
|
1755
|
-
}
|
|
1756
|
-
@property --tw-drop-shadow-size {
|
|
1757
|
-
syntax: "*";
|
|
1758
|
-
inherits: false;
|
|
1759
|
-
}
|
|
1760
1792
|
@layer properties {
|
|
1761
1793
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1762
1794
|
*, ::before, ::after, ::backdrop {
|
|
@@ -2635,6 +2667,79 @@ body {
|
|
|
2635
2667
|
user-select: none;
|
|
2636
2668
|
--arcane-page-bg: #1f1f1f;
|
|
2637
2669
|
}
|
|
2670
|
+
@property --tw-rotate-x {
|
|
2671
|
+
syntax: "*";
|
|
2672
|
+
inherits: false;
|
|
2673
|
+
}
|
|
2674
|
+
@property --tw-rotate-y {
|
|
2675
|
+
syntax: "*";
|
|
2676
|
+
inherits: false;
|
|
2677
|
+
}
|
|
2678
|
+
@property --tw-rotate-z {
|
|
2679
|
+
syntax: "*";
|
|
2680
|
+
inherits: false;
|
|
2681
|
+
}
|
|
2682
|
+
@property --tw-skew-x {
|
|
2683
|
+
syntax: "*";
|
|
2684
|
+
inherits: false;
|
|
2685
|
+
}
|
|
2686
|
+
@property --tw-skew-y {
|
|
2687
|
+
syntax: "*";
|
|
2688
|
+
inherits: false;
|
|
2689
|
+
}
|
|
2690
|
+
@property --tw-blur {
|
|
2691
|
+
syntax: "*";
|
|
2692
|
+
inherits: false;
|
|
2693
|
+
}
|
|
2694
|
+
@property --tw-brightness {
|
|
2695
|
+
syntax: "*";
|
|
2696
|
+
inherits: false;
|
|
2697
|
+
}
|
|
2698
|
+
@property --tw-contrast {
|
|
2699
|
+
syntax: "*";
|
|
2700
|
+
inherits: false;
|
|
2701
|
+
}
|
|
2702
|
+
@property --tw-grayscale {
|
|
2703
|
+
syntax: "*";
|
|
2704
|
+
inherits: false;
|
|
2705
|
+
}
|
|
2706
|
+
@property --tw-hue-rotate {
|
|
2707
|
+
syntax: "*";
|
|
2708
|
+
inherits: false;
|
|
2709
|
+
}
|
|
2710
|
+
@property --tw-invert {
|
|
2711
|
+
syntax: "*";
|
|
2712
|
+
inherits: false;
|
|
2713
|
+
}
|
|
2714
|
+
@property --tw-opacity {
|
|
2715
|
+
syntax: "*";
|
|
2716
|
+
inherits: false;
|
|
2717
|
+
}
|
|
2718
|
+
@property --tw-saturate {
|
|
2719
|
+
syntax: "*";
|
|
2720
|
+
inherits: false;
|
|
2721
|
+
}
|
|
2722
|
+
@property --tw-sepia {
|
|
2723
|
+
syntax: "*";
|
|
2724
|
+
inherits: false;
|
|
2725
|
+
}
|
|
2726
|
+
@property --tw-drop-shadow {
|
|
2727
|
+
syntax: "*";
|
|
2728
|
+
inherits: false;
|
|
2729
|
+
}
|
|
2730
|
+
@property --tw-drop-shadow-color {
|
|
2731
|
+
syntax: "*";
|
|
2732
|
+
inherits: false;
|
|
2733
|
+
}
|
|
2734
|
+
@property --tw-drop-shadow-alpha {
|
|
2735
|
+
syntax: "<percentage>";
|
|
2736
|
+
inherits: false;
|
|
2737
|
+
initial-value: 100%;
|
|
2738
|
+
}
|
|
2739
|
+
@property --tw-drop-shadow-size {
|
|
2740
|
+
syntax: "*";
|
|
2741
|
+
inherits: false;
|
|
2742
|
+
}
|
|
2638
2743
|
@layer properties {
|
|
2639
2744
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2640
2745
|
*, ::before, ::after, ::backdrop {
|
|
@@ -2660,6 +2765,11 @@ body {
|
|
|
2660
2765
|
--tw-text-shadow-color: initial;
|
|
2661
2766
|
--tw-text-shadow-alpha: 100%;
|
|
2662
2767
|
--tw-content: "";
|
|
2768
|
+
--tw-rotate-x: initial;
|
|
2769
|
+
--tw-rotate-y: initial;
|
|
2770
|
+
--tw-rotate-z: initial;
|
|
2771
|
+
--tw-skew-x: initial;
|
|
2772
|
+
--tw-skew-y: initial;
|
|
2663
2773
|
--tw-blur: initial;
|
|
2664
2774
|
--tw-brightness: initial;
|
|
2665
2775
|
--tw-contrast: initial;
|