@sigmaott/base-next 1.4.48 → 1.4.50

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/.npmrc ADDED
@@ -0,0 +1,3 @@
1
+ shamefully-hoist=true
2
+ strict-peer-dependencies=false
3
+ shell-emulator=true
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sigmaott/base-next",
3
3
  "type": "module",
4
- "version": "1.4.48",
4
+ "version": "1.4.50",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -64,6 +64,7 @@ const optionsEncoder = computed(() => {
64
64
  if (encoderTypeValue.value === 'NETINT') {
65
65
  return [
66
66
  { label: 'NETINT', value: 'netint' },
67
+ { label: 'Passthrough', value: 'passthrough' },
67
68
  ]
68
69
  }
69
70
 
@@ -692,32 +693,47 @@ const optionsPreset = computed(() => {
692
693
  value: 'llhp',
693
694
  },
694
695
  ]
695
- : [
696
- {
697
- label: 'MEDIUM',
698
- value: 'medium',
699
- },
700
- {
701
- label: 'FAST',
702
- value: 'fast',
703
- },
704
- {
705
- label: 'FASTER',
706
- value: 'faster',
707
- },
708
- {
709
- label: 'VERYFAST',
710
- value: 'veryfast',
711
- },
712
- {
713
- label: 'SUPERFAST',
714
- value: 'superfast',
715
- },
716
- {
717
- label: 'ULTRAFAST',
718
- value: 'ultrafast',
719
- },
720
- ]
696
+ : encoderValue.value === 'netint'
697
+ ? [
698
+ {
699
+ label: 'MEDIUM',
700
+ value: 'medium',
701
+ },
702
+ {
703
+ label: 'FAST',
704
+ value: 'fast',
705
+ },
706
+ {
707
+ label: 'SLOW',
708
+ value: 'slow',
709
+ },
710
+ ]
711
+ : [
712
+ {
713
+ label: 'MEDIUM',
714
+ value: 'medium',
715
+ },
716
+ {
717
+ label: 'FAST',
718
+ value: 'fast',
719
+ },
720
+ {
721
+ label: 'FASTER',
722
+ value: 'faster',
723
+ },
724
+ {
725
+ label: 'VERYFAST',
726
+ value: 'veryfast',
727
+ },
728
+ {
729
+ label: 'SUPERFAST',
730
+ value: 'superfast',
731
+ },
732
+ {
733
+ label: 'ULTRAFAST',
734
+ value: 'ultrafast',
735
+ },
736
+ ]
721
737
  })
722
738
 
723
739
  const codecSelection = computed(() => {