rtcpts 0.0.58 → 0.0.60

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.
@@ -1,5 +1,5 @@
1
1
  import { PropType, SlotsType, DefineComponent, ExtractPropTypes, Ref, WritableComputedRef, ComputedRef, Slot, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- import { QDateProps, QField, QFieldProps, QPopupProxy, QDate, QInput, QIcon, QBtn, ComponentConstructor } from 'quasar';
2
+ import { QDateProps, QField, QFieldProps, QPopupProxy, QDate, QSelect, QIcon, QBtn, ComponentConstructor } from 'quasar';
3
3
  import { t } from '../../composables/useI18n.ts';
4
4
  export interface TimeParts {
5
5
  h: number;
@@ -71,6 +71,12 @@ declare const _default: DefineComponent<ExtractPropTypes<{
71
71
  to: string;
72
72
  }>;
73
73
  currentSingleDate: Ref<string, string>;
74
+ hourOptions: string[];
75
+ minuteSecondOptions: string[];
76
+ timeSelectPopupStyle: {
77
+ height: string;
78
+ maxHeight: string;
79
+ };
74
80
  fromH: WritableComputedRef<string, string>;
75
81
  fromM: WritableComputedRef<string, string>;
76
82
  fromS: WritableComputedRef<string, string>;
@@ -159,7 +165,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
159
165
  QField: ComponentConstructor<QField>;
160
166
  QPopupProxy: ComponentConstructor<QPopupProxy>;
161
167
  QDate: ComponentConstructor<QDate>;
162
- QInput: ComponentConstructor<QInput>;
168
+ QSelect: ComponentConstructor<QSelect>;
163
169
  QIcon: ComponentConstructor<QIcon>;
164
170
  QBtn: ComponentConstructor<QBtn>;
165
171
  }, {}, string, ComponentProvideOptions, true, {}, any>;