prlg-ui 1.8.310 → 1.8.311

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/dist/rekaUI.d.ts CHANGED
@@ -785,6 +785,14 @@ declare type __VLS_Props = {
785
785
  };
786
786
 
787
787
  declare type __VLS_Props_10 = {
788
+ file: string | IFile;
789
+ alt?: string;
790
+ size?: "small" | "medium" | "large" | "full";
791
+ fullScreen?: boolean;
792
+ viewInfo?: boolean;
793
+ };
794
+
795
+ declare type __VLS_Props_11 = {
788
796
  label?: string;
789
797
  placeholder?: string;
790
798
  name?: string;
@@ -804,7 +812,7 @@ declare type __VLS_Props_10 = {
804
812
  minHeight?: string;
805
813
  };
806
814
 
807
- declare type __VLS_Props_11 = {
815
+ declare type __VLS_Props_12 = {
808
816
  placeholder?: string;
809
817
  };
810
818
 
@@ -843,17 +851,20 @@ declare type __VLS_Props_6 = {
843
851
  required?: boolean;
844
852
  };
845
853
 
846
- declare type __VLS_Props_7 = InputTextProps;
854
+ declare type __VLS_Props_7 = {
855
+ viewButtons?: boolean;
856
+ max?: number;
857
+ min?: number;
858
+ countInPackage?: number;
859
+ icon?: Component;
860
+ iconPosition?: 'left' | 'right';
861
+ formatter?: (value: number) => number;
862
+ selectOnFocus?: boolean;
863
+ };
847
864
 
848
- declare type __VLS_Props_8 = InputTextProps_2;
865
+ declare type __VLS_Props_8 = InputTextProps;
849
866
 
850
- declare type __VLS_Props_9 = {
851
- file: string | IFile;
852
- alt?: string;
853
- size?: "small" | "medium" | "large" | "full";
854
- fullScreen?: boolean;
855
- viewInfo?: boolean;
856
- };
867
+ declare type __VLS_Props_9 = InputTextProps_2;
857
868
 
858
869
  declare type __VLS_PublicProps = {
859
870
  modelValue?: string | boolean | any | null | any[];
@@ -866,7 +877,7 @@ declare type __VLS_PublicProps_2 = {
866
877
  } & __VLS_Props_5;
867
878
 
868
879
  declare type __VLS_PublicProps_3 = {
869
- modelValue?: string;
880
+ modelValue: number;
870
881
  } & __VLS_Props_7;
871
882
 
872
883
  declare type __VLS_PublicProps_4 = {
@@ -875,12 +886,16 @@ declare type __VLS_PublicProps_4 = {
875
886
 
876
887
  declare type __VLS_PublicProps_5 = {
877
888
  modelValue?: string;
878
- } & __VLS_Props_10;
889
+ } & __VLS_Props_9;
879
890
 
880
891
  declare type __VLS_PublicProps_6 = {
881
- modelValue: TShedule | null;
892
+ modelValue?: string;
882
893
  } & __VLS_Props_11;
883
894
 
895
+ declare type __VLS_PublicProps_7 = {
896
+ modelValue: TShedule | null;
897
+ } & __VLS_Props_12;
898
+
884
899
  declare function __VLS_template(): {
885
900
  attrs: Partial<{}>;
886
901
  slots: {
@@ -2921,7 +2936,7 @@ export declare interface IFile {
2921
2936
  size: number | null;
2922
2937
  }
2923
2938
 
2924
- declare const Image_2: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
2939
+ declare const Image_2: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
2925
2940
  imageFullModal: CreateComponentPublicInstanceWithMixins<Readonly<{
2926
2941
  src: string;
2927
2942
  alt?: string;
@@ -2945,7 +2960,15 @@ close: () => void;
2945
2960
  }, any>;
2946
2961
  export { Image_2 as Image }
2947
2962
 
2948
- export declare const InputPhone: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2963
+ export declare const InputNumber: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2964
+ change: (value: number) => any;
2965
+ "update:modelValue": (value: number) => any;
2966
+ }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
2967
+ onChange?: ((value: number) => any) | undefined;
2968
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2969
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2970
+
2971
+ export declare const InputPhone: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2949
2972
  "update:modelValue": (value: string) => any;
2950
2973
  } & {
2951
2974
  clear: () => any;
@@ -2953,7 +2976,7 @@ input: (value: Event) => any;
2953
2976
  blur: (value: FocusEvent) => any;
2954
2977
  focus: (value: FocusEvent) => any;
2955
2978
  paste: (value: ClipboardEvent) => any;
2956
- }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
2979
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
2957
2980
  onClear?: (() => any) | undefined;
2958
2981
  onInput?: ((value: Event) => any) | undefined;
2959
2982
  onBlur?: ((value: FocusEvent) => any) | undefined;
@@ -3002,7 +3025,7 @@ declare type InputPhoneProps = {
3002
3025
  showMaxLength?: boolean;
3003
3026
  };
3004
3027
 
3005
- export declare const InputText: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3028
+ export declare const InputText: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3006
3029
  "update:modelValue": (value: string) => any;
3007
3030
  } & {
3008
3031
  clear: () => any;
@@ -3010,7 +3033,7 @@ input: (value: Event) => any;
3010
3033
  blur: (value: FocusEvent) => any;
3011
3034
  focus: (value: FocusEvent) => any;
3012
3035
  paste: (value: ClipboardEvent) => any;
3013
- }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
3036
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
3014
3037
  onClear?: (() => any) | undefined;
3015
3038
  onInput?: ((value: Event) => any) | undefined;
3016
3039
  onBlur?: ((value: FocusEvent) => any) | undefined;
@@ -3199,9 +3222,9 @@ iconOnly: boolean;
3199
3222
 
3200
3223
  export { RangeCalendarRoot }
3201
3224
 
3202
- export declare const Schedule: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3225
+ export declare const Schedule: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3203
3226
  "update:modelValue": (value: TShedule | null) => any;
3204
- }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
3227
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
3205
3228
  "onUpdate:modelValue"?: ((value: TShedule | null) => any) | undefined;
3206
3229
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3207
3230
 
@@ -3282,13 +3305,13 @@ declare interface TagProps {
3282
3305
 
3283
3306
  export declare type TDayWeek = 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';
3284
3307
 
3285
- export declare const Textarea: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3308
+ export declare const Textarea: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3286
3309
  "update:modelValue": (value: string) => any;
3287
3310
  } & {
3288
3311
  blur: (value: FocusEvent) => any;
3289
3312
  focusIn: (value: FocusEvent) => any;
3290
3313
  focusOut: (value: FocusEvent) => any;
3291
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
3314
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
3292
3315
  onBlur?: ((value: FocusEvent) => any) | undefined;
3293
3316
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
3294
3317
  onFocusIn?: ((value: FocusEvent) => any) | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prlg-ui",
3
3
  "private": false,
4
- "version": "1.8.310",
4
+ "version": "1.8.311",
5
5
  "type": "module",
6
6
  "main": "dist/prlg-ui.umd.js",
7
7
  "module": "dist/prlg-ui.es.js",
@@ -1 +0,0 @@
1
- "use strict";const e=require("vue"),t=require("./EyeIcon-CJg2W9QQ.cjs"),o={},r={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function l(C,n){return e.openBlock(),e.createElementBlock("svg",r,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M9.86004 12.3737C9.7615 12.3742 9.66386 12.3549 9.57285 12.3172C9.48184 12.2794 9.39929 12.2238 9.33004 12.1537L4.33004 7.1537C4.23032 7.0078 4.18532 6.83137 4.20297 6.65553C4.22063 6.47969 4.29981 6.31574 4.42656 6.19258C4.5533 6.06943 4.71946 5.99498 4.89573 5.98238C5.07201 5.96978 5.24707 6.01982 5.39004 6.1237L9.86004 10.5637L14.33 6.1237C14.471 6.0323 14.6386 5.99088 14.8059 6.00607C14.9732 6.02126 15.1305 6.09218 15.2527 6.20746C15.3749 6.32273 15.4549 6.4757 15.4798 6.64184C15.5047 6.80797 15.4731 6.97766 15.39 7.1237L10.39 12.1237C10.3234 12.1993 10.242 12.2604 10.1508 12.3034C10.0597 12.3464 9.96075 12.3703 9.86004 12.3737Z",fill:"currentColor"},null,-1)])])}const c=t._export_sfc(o,[["render",l]]),s={},i={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function _(C,n){return e.openBlock(),e.createElementBlock("svg",i,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M11.8587 14.8739C11.7602 14.8743 11.6625 14.8551 11.5715 14.8173C11.4805 14.7796 11.398 14.724 11.3287 14.6539L6.32872 9.65387C6.18826 9.51324 6.10938 9.32262 6.10938 9.12387C6.10937 8.92512 6.18826 8.7345 6.32872 8.59387L11.3287 3.59387C11.4709 3.46139 11.6589 3.38927 11.8532 3.39269C12.0475 3.39612 12.2329 3.47483 12.3703 3.61225C12.5077 3.74966 12.5865 3.93505 12.5899 4.12935C12.5933 4.32365 12.5212 4.5117 12.3887 4.65387L7.91872 9.12387L12.3887 13.5939C12.5292 13.7345 12.6081 13.9251 12.6081 14.1239C12.6081 14.3226 12.5292 14.5132 12.3887 14.6539C12.3195 14.724 12.2369 14.7796 12.1459 14.8173C12.0549 14.8551 11.9573 14.8743 11.8587 14.8739Z",fill:"currentColor"},null,-1)])])}const d=t._export_sfc(s,[["render",_]]),f={},L={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function w(C,n){return e.openBlock(),e.createElementBlock("svg",L,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M17.8569 15.8731H1.85686C1.72581 15.8727 1.59709 15.8385 1.4832 15.7736C1.3693 15.7088 1.27411 15.6156 1.20686 15.5031C1.14293 15.3885 1.10937 15.2594 1.10938 15.1281C1.10938 14.9969 1.14293 14.8678 1.20686 14.7531L9.20686 0.753136C9.27801 0.645873 9.3746 0.557884 9.48802 0.497017C9.60143 0.43615 9.72815 0.404297 9.85686 0.404297C9.98558 0.404297 10.1123 0.43615 10.2257 0.497017C10.3391 0.557884 10.4357 0.645873 10.5069 0.753136L18.5069 14.7531C18.5708 14.8678 18.6043 14.9969 18.6043 15.1281C18.6043 15.2594 18.5708 15.3885 18.5069 15.5031C18.4396 15.6156 18.3444 15.7088 18.2305 15.7736C18.1166 15.8385 17.9879 15.8727 17.8569 15.8731ZM3.14686 14.3731H16.5669L9.85686 2.63314L3.14686 14.3731Z",fill:"currentColor"},null,-1),e.createElementVNode("path",{d:"M9.85547 10.373C9.65736 10.3705 9.4681 10.2906 9.328 10.1505C9.18791 10.0104 9.10806 9.82115 9.10547 9.62305V6.12305C9.10547 5.92413 9.18449 5.73337 9.32514 5.59272C9.46579 5.45206 9.65656 5.37305 9.85547 5.37305C10.0544 5.37305 10.2451 5.45206 10.3858 5.59272C10.5265 5.73337 10.6055 5.92413 10.6055 6.12305V9.62305C10.6029 9.82115 10.523 10.0104 10.3829 10.1505C10.2428 10.2906 10.0536 10.3705 9.85547 10.373Z",fill:"currentColor"},null,-1),e.createElementVNode("path",{d:"M9.85547 13.373C9.65736 13.3705 9.4681 13.2906 9.328 13.1505C9.18791 13.0104 9.10806 12.8212 9.10547 12.623V12.123C9.10547 11.9241 9.18449 11.7334 9.32514 11.5927C9.46579 11.4521 9.65656 11.373 9.85547 11.373C10.0544 11.373 10.2451 11.4521 10.3858 11.5927C10.5265 11.7334 10.6055 11.9241 10.6055 12.123V12.623C10.6029 12.8212 10.523 13.0104 10.3829 13.1505C10.2428 13.2906 10.0536 13.3705 9.85547 13.373Z",fill:"currentColor"},null,-1)])])}const u=t._export_sfc(f,[["render",w]]),h={},m={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function p(C,n){return e.openBlock(),e.createElementBlock("svg",m,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M17.8594 10.123H1.85938C1.59416 10.123 1.3398 10.0177 1.15227 9.83015C0.964732 9.64262 0.859375 9.38826 0.859375 9.12305C0.859375 8.85783 0.964732 8.60348 1.15227 8.41594C1.3398 8.2284 1.59416 8.12305 1.85938 8.12305H17.8594C18.1246 8.12305 18.3789 8.2284 18.5665 8.41594C18.754 8.60348 18.8594 8.85783 18.8594 9.12305C18.8594 9.38826 18.754 9.64262 18.5665 9.83015C18.3789 10.0177 18.1246 10.123 17.8594 10.123Z",fill:"currentColor"},null,-1)])])}const a=t._export_sfc(h,[["render",p]]),g={},x={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function v(C,n){return e.openBlock(),e.createElementBlock("svg",x,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M10.6094 8.37305V2.12305C10.6094 1.92413 10.5304 1.73337 10.3897 1.59272C10.2491 1.45206 10.0583 1.37305 9.85938 1.37305C9.66046 1.37305 9.4697 1.45206 9.32905 1.59272C9.18839 1.73337 9.10938 1.92413 9.10938 2.12305V8.37305H2.85938C2.66046 8.37305 2.4697 8.45206 2.32904 8.59272C2.18839 8.73337 2.10938 8.92413 2.10938 9.12305C2.10938 9.32196 2.18839 9.51272 2.32904 9.65338C2.4697 9.79403 2.66046 9.87305 2.85938 9.87305H9.10938V16.123C9.11197 16.3212 9.19181 16.5104 9.33191 16.6505C9.472 16.7906 9.66127 16.8705 9.85938 16.873C10.0583 16.873 10.2491 16.794 10.3897 16.6534C10.5304 16.5127 10.6094 16.322 10.6094 16.123V9.87305H16.8594C17.0583 9.87305 17.2491 9.79403 17.3897 9.65338C17.5304 9.51272 17.6094 9.32196 17.6094 9.12305C17.6068 8.92494 17.5269 8.73568 17.3868 8.59558C17.2467 8.45549 17.0575 8.37564 16.8594 8.37305H10.6094Z",fill:"currentColor"},null,-1)])])}const B=t._export_sfc(g,[["render",v]]),E={},$={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function V(C,n){return e.openBlock(),e.createElementBlock("svg",$,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M18.9786 7.00274C18.9368 6.86987 18.8582 6.75152 18.7521 6.6613C18.646 6.57108 18.5165 6.51265 18.3786 6.49273L12.9586 5.70273L10.5286 0.792735C10.4595 0.676708 10.3614 0.58063 10.2439 0.513909C10.1265 0.447187 9.99371 0.412109 9.85863 0.412109C9.72355 0.412109 9.59079 0.447187 9.47335 0.513909C9.3559 0.58063 9.25779 0.676708 9.18863 0.792735L6.75863 5.70273L1.33863 6.49273C1.20076 6.51265 1.0713 6.57108 0.965161 6.6613C0.859018 6.75152 0.780498 6.86987 0.738631 7.00274C0.693936 7.13511 0.687104 7.27734 0.718908 7.41338C0.750711 7.54943 0.819885 7.67389 0.918631 7.77273L4.85863 11.5927L3.92863 16.9927C3.90506 17.1318 3.92064 17.2746 3.97362 17.4053C4.0266 17.536 4.1149 17.6494 4.22863 17.7327C4.34255 17.8139 4.4769 17.8616 4.6165 17.8704C4.7561 17.8793 4.89539 17.8489 5.01863 17.7827L9.85863 15.2327L14.7086 17.7827C14.8159 17.8416 14.9363 17.8725 15.0586 17.8727C15.216 17.8709 15.3692 17.8222 15.4986 17.7327C15.6124 17.6494 15.7007 17.536 15.7536 17.4053C15.8066 17.2746 15.8222 17.1318 15.7986 16.9927L14.8586 11.5927L18.7886 7.77273C18.8891 7.67497 18.9602 7.551 18.9937 7.4149C19.0273 7.2788 19.0221 7.13601 18.9786 7.00274Z",fill:"currentColor"},null,-1)])])}const I=t._export_sfc(E,[["render",V]]),k={},M={width:"19",height:"19",viewBox:"0 0 19 19",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function Z(C,n){return e.openBlock(),e.createElementBlock("svg",M,[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M15.0586 17.8727C14.9363 17.8725 14.8159 17.8416 14.7086 17.7827L9.85863 15.2327L5.00863 17.7827C4.88539 17.8489 4.7461 17.8793 4.6065 17.8704C4.4669 17.8616 4.33255 17.8139 4.21863 17.7327C4.1049 17.6494 4.0166 17.536 3.96362 17.4053C3.91063 17.2746 3.89506 17.1318 3.91863 16.9927L4.85863 11.5927L0.918631 7.77273C0.819885 7.67389 0.750711 7.54943 0.718908 7.41338C0.687104 7.27734 0.693936 7.13511 0.738631 7.00274C0.780498 6.86987 0.859018 6.75152 0.965161 6.6613C1.0713 6.57108 1.20076 6.51265 1.33863 6.49273L6.75863 5.70273L9.18863 0.792735C9.25779 0.676708 9.3559 0.58063 9.47335 0.513909C9.59079 0.447187 9.72355 0.412109 9.85863 0.412109C9.99371 0.412109 10.1265 0.447187 10.2439 0.513909C10.3614 0.58063 10.4595 0.676708 10.5286 0.792735L12.9586 5.70273L18.3786 6.49273C18.5165 6.51265 18.646 6.57108 18.7521 6.6613C18.8582 6.75152 18.9368 6.86987 18.9786 7.00274C19.0233 7.13511 19.0302 7.27734 18.9984 7.41338C18.9666 7.54943 18.8974 7.67389 18.7986 7.77273L14.8586 11.5927L15.7886 16.9927C15.8122 17.1318 15.7966 17.2746 15.7436 17.4053C15.6907 17.536 15.6024 17.6494 15.4886 17.7327C15.362 17.8203 15.2125 17.869 15.0586 17.8727ZM9.85863 13.6427C9.97966 13.6442 10.099 13.6715 10.2086 13.7227L14.0586 15.7227L13.3286 11.4327C13.3088 11.3124 13.3175 11.1891 13.354 11.0728C13.3904 10.9564 13.4537 10.8502 13.5386 10.7627L16.6586 7.76274L12.3486 7.12274C12.2294 7.10377 12.1165 7.05669 12.0191 6.98539C11.9217 6.9141 11.8427 6.82063 11.7886 6.71274L9.85863 2.81273L7.92863 6.72274C7.87455 6.83063 7.79555 6.9241 7.69817 6.99539C7.60078 7.06669 7.48782 7.11377 7.36863 7.13274L3.05863 7.76274L6.17863 10.7627C6.26357 10.8502 6.32681 10.9564 6.36328 11.0728C6.39975 11.1891 6.40843 11.3124 6.38863 11.4327L5.65863 15.7527L9.50863 13.7527C9.6159 13.691 9.73535 13.6535 9.85863 13.6427Z",fill:"currentColor"},null,-1)])])}const N=t._export_sfc(k,[["render",Z]]);exports.CevronBottomIcon=c;exports.CevronLeftIcon=d;exports.ErrorIcon=u;exports.MinusIcon=a;exports.PlusIcon=B;exports.StarFillIcon=I;exports.StarIcon=N;