@win2win/shared-ui 0.1.41 → 0.1.42

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.
Files changed (42) hide show
  1. package/dist/components/Data/Field.vue.d.ts +61 -0
  2. package/dist/components/Data/Field.vue.d.ts.map +1 -0
  3. package/dist/components/{DynamicForm/FormStepsIndicator.vue.d.ts → Data/IndicatorColor.vue.d.ts} +3 -6
  4. package/dist/components/Data/IndicatorColor.vue.d.ts.map +1 -0
  5. package/dist/components/DynamicForm/DynamicForm.vue.d.ts +0 -1
  6. package/dist/components/DynamicForm/DynamicForm.vue.d.ts.map +1 -1
  7. package/dist/components/Inputs/WinInput.vue.d.ts +40 -68
  8. package/dist/components/Inputs/WinInput.vue.d.ts.map +1 -1
  9. package/dist/components/Inputs/WinSelect.vue.d.ts +82 -227
  10. package/dist/components/Inputs/WinSelect.vue.d.ts.map +1 -1
  11. package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts +34 -0
  12. package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts.map +1 -0
  13. package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts +55 -0
  14. package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts.map +1 -0
  15. package/dist/components/MapLocationForm/consts.d.ts +5 -0
  16. package/dist/components/MapLocationForm/consts.d.ts.map +1 -0
  17. package/dist/components/MapLocationForm/helpers.d.ts +2 -0
  18. package/dist/components/MapLocationForm/helpers.d.ts.map +1 -0
  19. package/dist/components/MapLocationForm/models.d.ts +50 -0
  20. package/dist/components/MapLocationForm/models.d.ts.map +1 -0
  21. package/dist/components/MapLocationForm/useGeocoding.d.ts +26 -0
  22. package/dist/components/MapLocationForm/useGeocoding.d.ts.map +1 -0
  23. package/dist/components/TestUi.vue.d.ts +1 -0
  24. package/dist/components/TestUi.vue.d.ts.map +1 -1
  25. package/dist/components/pdf/SectionsContainer.vue.d.ts +2 -2
  26. package/dist/components/pdf/SectionsContainer.vue.d.ts.map +1 -1
  27. package/dist/components/pdf/sections/TextSection.vue.d.ts.map +1 -1
  28. package/dist/style.css +1 -1
  29. package/dist/w2w-shared-ui.js +3904 -3790
  30. package/dist/w2w-shared-ui.umd.cjs +13 -13
  31. package/package.json +4 -2
  32. package/dist/components/DynamicForm/Controls/DynamicArrayControl.vue.d.ts +0 -23
  33. package/dist/components/DynamicForm/Controls/DynamicArrayControl.vue.d.ts.map +0 -1
  34. package/dist/components/DynamicForm/Controls/ObjectControl.vue.d.ts +0 -23
  35. package/dist/components/DynamicForm/Controls/ObjectControl.vue.d.ts.map +0 -1
  36. package/dist/components/DynamicForm/FormStepsIndicator.vue.d.ts.map +0 -1
  37. package/dist/components/DynamicForm/MapLocation.vue.d.ts +0 -3
  38. package/dist/components/DynamicForm/MapLocation.vue.d.ts.map +0 -1
  39. package/dist/components/DynamicForm/SelectCurrencyControl.vue.d.ts +0 -23
  40. package/dist/components/DynamicForm/SelectCurrencyControl.vue.d.ts.map +0 -1
  41. package/dist/components/DynamicForm/SelectZoneControl.vue.d.ts +0 -23
  42. package/dist/components/DynamicForm/SelectZoneControl.vue.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared-ui",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
@@ -27,7 +27,8 @@
27
27
  "update-w2w-deps": "npm install @win2win/shared@latest"
28
28
  },
29
29
  "dependencies": {
30
- "pinia": "^2.1.0"
30
+ "pinia": "^2.1.0",
31
+ "vue3-google-map": "^0.21.1"
31
32
  },
32
33
  "peerDependencies": {
33
34
  "@quasar/extras": "^1.16.0",
@@ -44,6 +45,7 @@
44
45
  "@vitejs/plugin-vue": "^5.0.5",
45
46
  "@vue/tsconfig": "^0.5.1",
46
47
  "@win2win/shared": "^1.0.65",
48
+ "axios": "^1.7.9",
47
49
  "lodash": "^4.17.21",
48
50
  "npm-run-all2": "^6.2.0",
49
51
  "quasar": "^2.16.0",
@@ -1,23 +0,0 @@
1
- import { FormControlModel } from '../models';
2
- declare let __VLS_typeProps: {
3
- control: FormControlModel;
4
- };
5
- type __VLS_PublicProps = {
6
- modelValue?: any[];
7
- } & typeof __VLS_typeProps;
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (modelValue: any[]) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
11
- "onUpdate:modelValue"?: ((modelValue: any[]) => any) | undefined;
12
- }, {}, {}>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToOption<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- //# sourceMappingURL=DynamicArrayControl.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DynamicArrayControl.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/DynamicForm/Controls/DynamicArrayControl.vue"],"names":[],"mappings":"AA4EA,OAAO,EAAE,gBAAgB,EAA0B,MAAM,WAAW,CAAC;AAMrE,QAAA,IAAI,eAAe,EAAG;IACpB,OAAO,EAAE,gBAAgB,CAAC;CAC3B,CAAC;AAiCF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,GAAG,OAAO,eAAe,CAAC;;;;;;AA0I3B,wBAOG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,23 +0,0 @@
1
- import { FormControlModel } from '../models';
2
- declare let __VLS_typeProps: {
3
- control: FormControlModel;
4
- };
5
- type __VLS_PublicProps = {
6
- modelValue?: any;
7
- } & typeof __VLS_typeProps;
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (modelValue: any) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
11
- "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
12
- }, {}, {}>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToOption<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- //# sourceMappingURL=ObjectControl.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ObjectControl.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/DynamicForm/Controls/ObjectControl.vue"],"names":[],"mappings":"AAyEA,OAAO,EAAE,gBAAgB,EAA0B,MAAM,WAAW,CAAC;AAWrE,QAAA,IAAI,eAAe,EAAG;IACpB,OAAO,EAAE,gBAAgB,CAAC;CAC3B,CAAC;AAqCF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;;;;;;AAsD3B,wBAOG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"FormStepsIndicator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/FormStepsIndicator.vue"],"names":[],"mappings":"AA0EA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;;;;;;;;AA4EpC,wBAMG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,3 +0,0 @@
1
- type __VLS_IntrinsicElementsCompletion = __VLS_IntrinsicElements;
2
- declare function __VLS_template(): {};
3
- //# sourceMappingURL=MapLocation.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MapLocation.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/MapLocation.vue"],"names":[],"mappings":"AA8rBA,KAAK,iCAAiC,GAAG,uBAAuB,CAAC;AACjE,iBAAS,cAAc,OAoBtB"}
@@ -1,23 +0,0 @@
1
- import { FormControlModel } from './models';
2
- declare let __VLS_typeProps: {
3
- control: FormControlModel;
4
- };
5
- type __VLS_PublicProps = {
6
- modelValue?: any;
7
- } & typeof __VLS_typeProps;
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (modelValue: any) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
11
- "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
12
- }, {}, {}>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToOption<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- //# sourceMappingURL=SelectCurrencyControl.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SelectCurrencyControl.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/SelectCurrencyControl.vue"],"names":[],"mappings":"AA+DA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAG5C,QAAA,IAAI,eAAe,EAAG;IACpB,OAAO,EAAE,gBAAgB,CAAC;CAC3B,CAAC;AAWF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;;;;;;AAoD3B,wBAOG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,23 +0,0 @@
1
- import { FormControlModel } from './models';
2
- declare let __VLS_typeProps: {
3
- control: FormControlModel;
4
- };
5
- type __VLS_PublicProps = {
6
- modelValue?: any;
7
- } & typeof __VLS_typeProps;
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (modelValue: any) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
11
- "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
12
- }, {}, {}>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToOption<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- //# sourceMappingURL=SelectZoneControl.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SelectZoneControl.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/SelectZoneControl.vue"],"names":[],"mappings":"AAsEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAI5C,QAAA,IAAI,eAAe,EAAG;IACpB,OAAO,EAAE,gBAAgB,CAAC;CAC3B,CAAC;AAiBF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;;;;;;AAoD3B,wBAOG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}