@arcanewizards/timecode-toolbox 0.1.2 → 0.1.4
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 +87 -7
- package/dist/components/frontend/index.d.mts +2 -1
- package/dist/components/frontend/index.d.ts +2 -1
- package/dist/components/frontend/index.js +1049 -144
- package/dist/components/frontend/index.mjs +1076 -148
- package/dist/entrypoint.css +23 -3
- package/dist/entrypoint.js +2069 -263
- package/dist/entrypoint.js.map +4 -4
- package/dist/frontend.js +2069 -263
- package/dist/frontend.js.map +4 -4
- package/dist/index.js +138 -20
- package/dist/index.mjs +138 -20
- package/dist/start.js +138 -20
- package/dist/start.mjs +138 -20
- package/package.json +2 -2
package/dist/entrypoint.css
CHANGED
|
@@ -823,6 +823,9 @@ body.touch-mode * {
|
|
|
823
823
|
);
|
|
824
824
|
}
|
|
825
825
|
}
|
|
826
|
+
.visible {
|
|
827
|
+
visibility: visible;
|
|
828
|
+
}
|
|
826
829
|
.absolute {
|
|
827
830
|
position: absolute;
|
|
828
831
|
}
|
|
@@ -870,12 +873,12 @@ body.touch-mode * {
|
|
|
870
873
|
.h-\[20\%\] {
|
|
871
874
|
height: 20%;
|
|
872
875
|
}
|
|
876
|
+
.h-dvh {
|
|
877
|
+
height: 100dvh;
|
|
878
|
+
}
|
|
873
879
|
.h-full {
|
|
874
880
|
height: 100%;
|
|
875
881
|
}
|
|
876
|
-
.h-screen {
|
|
877
|
-
height: 100vh;
|
|
878
|
-
}
|
|
879
882
|
.max-h-\[420px\] {
|
|
880
883
|
max-height: 420px;
|
|
881
884
|
}
|
|
@@ -1074,6 +1077,9 @@ body.touch-mode * {
|
|
|
1074
1077
|
--tw-font-weight: 700;
|
|
1075
1078
|
font-weight: 700;
|
|
1076
1079
|
}
|
|
1080
|
+
.text-sigil-error-foreground {
|
|
1081
|
+
color: var(--sigil-error-foreground);
|
|
1082
|
+
}
|
|
1077
1083
|
.text-sigil-foreground-muted {
|
|
1078
1084
|
color: var(--sigil-foreground-muted);
|
|
1079
1085
|
}
|
|
@@ -1089,6 +1095,9 @@ body.touch-mode * {
|
|
|
1089
1095
|
.text-sigil-usage-red-text {
|
|
1090
1096
|
color: var(--sigil-usage-red-text);
|
|
1091
1097
|
}
|
|
1098
|
+
.text-sigil-warning-foreground {
|
|
1099
|
+
color: var(--sigil-warning-foreground);
|
|
1100
|
+
}
|
|
1092
1101
|
.text-timecode-usage-foreground {
|
|
1093
1102
|
color: var(--timecode-usage-foreground);
|
|
1094
1103
|
}
|
|
@@ -1651,6 +1660,17 @@ body.touch-mode * {
|
|
|
1651
1660
|
--tw-drop-shadow: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
|
|
1652
1661
|
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,);
|
|
1653
1662
|
}
|
|
1663
|
+
.sigil-control-button-destructive {
|
|
1664
|
+
--sigil-control-button-bg: var(--sigil-usage-red-background);
|
|
1665
|
+
--sigil-control-button-bg-hover: var(--sigil-usage-red-border);
|
|
1666
|
+
--sigil-control-button-bg-active: var(--sigil-usage-red-border);
|
|
1667
|
+
--sigil-control-button-fg: var(--sigil-usage-red-text);
|
|
1668
|
+
--sigil-control-button-fg-hover: var(--sigil-usage-red-text);
|
|
1669
|
+
--sigil-control-button-fg-active: var(--sigil-usage-red-text);
|
|
1670
|
+
--sigil-control-button-border: transparent;
|
|
1671
|
+
--sigil-control-button-border-hover: transparent;
|
|
1672
|
+
--sigil-control-button-border-active: transparent;
|
|
1673
|
+
}
|
|
1654
1674
|
.sigil-control-button-primary {
|
|
1655
1675
|
--sigil-control-button-bg: var(--sigil-usage-hint-background);
|
|
1656
1676
|
--sigil-control-button-bg-hover: var(--sigil-usage-hint-border);
|