@fy-/fws-vue-core 3.0.3 → 3.0.5

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 (121) hide show
  1. package/package.json +6 -8
  2. package/src/components/fws/CmsArticleBoxed.vue +247 -0
  3. package/src/components/fws/CmsArticleSingle.vue +201 -0
  4. package/src/components/fws/DataTable.vue +659 -0
  5. package/src/components/fws/FilterData.vue +423 -0
  6. package/src/components/fws/UserData.vue +220 -0
  7. package/src/components/fws/UserFlow.vue +955 -0
  8. package/src/components/fws/UserOAuth2.vue +521 -0
  9. package/src/components/fws/UserProfile.vue +615 -0
  10. package/src/components/fws/UserProfileStrict.vue +233 -0
  11. package/src/components/ssr/ClientOnly.ts +10 -0
  12. package/src/components/ui/DefaultBreadcrumb.vue +99 -0
  13. package/src/components/ui/DefaultConfirm.vue +178 -0
  14. package/src/components/ui/DefaultConfirmWithInput.vue +217 -0
  15. package/src/components/ui/DefaultDropdown.vue +104 -0
  16. package/src/components/ui/DefaultDropdownLink.vue +94 -0
  17. package/src/components/ui/DefaultGallery.vue +1056 -0
  18. package/src/components/ui/DefaultInput.vue +768 -0
  19. package/src/components/ui/DefaultLoader.vue +125 -0
  20. package/src/components/ui/DefaultModal.vue +350 -0
  21. package/src/components/ui/DefaultNotif.vue +332 -0
  22. package/src/components/ui/DefaultPaging.vue +395 -0
  23. package/src/components/ui/DefaultSidebar.vue +267 -0
  24. package/src/components/ui/DefaultTagInput.vue +415 -0
  25. package/src/components/ui/transitions/CollapseTransition.vue +19 -0
  26. package/src/components/ui/transitions/ExpandTransition.vue +19 -0
  27. package/src/components/ui/transitions/FadeTransition.vue +17 -0
  28. package/src/components/ui/transitions/ScaleTransition.vue +21 -0
  29. package/src/components/ui/transitions/SlideTransition.vue +32 -0
  30. package/src/composables/event-bus.ts +15 -0
  31. package/src/composables/rest.ts +165 -0
  32. package/src/composables/seo.ts +142 -0
  33. package/src/composables/ssr.ts +103 -0
  34. package/src/composables/templating.ts +133 -0
  35. package/src/composables/translations.ts +45 -0
  36. package/src/env.d.ts +10 -0
  37. package/{dist/src/index.d.ts → src/index.ts} +71 -45
  38. package/src/plugin.ts +42 -0
  39. package/src/safelist.html +11 -0
  40. package/src/stores/serverRouter.ts +62 -0
  41. package/src/stores/user.ts +118 -0
  42. package/src/types.ts +58 -0
  43. package/dist/index.css +0 -2
  44. package/dist/index.js +0 -5767
  45. package/dist/src/components/fws/CmsArticleBoxed.vue.d.ts +0 -32
  46. package/dist/src/components/fws/CmsArticleBoxed.vue.d.ts.map +0 -1
  47. package/dist/src/components/fws/CmsArticleSingle.vue.d.ts +0 -29
  48. package/dist/src/components/fws/CmsArticleSingle.vue.d.ts.map +0 -1
  49. package/dist/src/components/fws/DataTable.vue.d.ts +0 -52
  50. package/dist/src/components/fws/DataTable.vue.d.ts.map +0 -1
  51. package/dist/src/components/fws/FilterData.vue.d.ts +0 -15
  52. package/dist/src/components/fws/FilterData.vue.d.ts.map +0 -1
  53. package/dist/src/components/fws/UserData.vue.d.ts +0 -8
  54. package/dist/src/components/fws/UserData.vue.d.ts.map +0 -1
  55. package/dist/src/components/fws/UserFlow.vue.d.ts +0 -116
  56. package/dist/src/components/fws/UserFlow.vue.d.ts.map +0 -1
  57. package/dist/src/components/fws/UserOAuth2.vue.d.ts +0 -17
  58. package/dist/src/components/fws/UserOAuth2.vue.d.ts.map +0 -1
  59. package/dist/src/components/fws/UserProfile.vue.d.ts +0 -40
  60. package/dist/src/components/fws/UserProfile.vue.d.ts.map +0 -1
  61. package/dist/src/components/fws/UserProfileStrict.vue.d.ts +0 -12
  62. package/dist/src/components/fws/UserProfileStrict.vue.d.ts.map +0 -1
  63. package/dist/src/components/ssr/ClientOnly.d.ts +0 -4
  64. package/dist/src/components/ssr/ClientOnly.d.ts.map +0 -1
  65. package/dist/src/components/ui/DefaultBreadcrumb.vue.d.ts +0 -11
  66. package/dist/src/components/ui/DefaultBreadcrumb.vue.d.ts.map +0 -1
  67. package/dist/src/components/ui/DefaultConfirm.vue.d.ts +0 -81
  68. package/dist/src/components/ui/DefaultConfirm.vue.d.ts.map +0 -1
  69. package/dist/src/components/ui/DefaultConfirmWithInput.vue.d.ts +0 -81
  70. package/dist/src/components/ui/DefaultConfirmWithInput.vue.d.ts.map +0 -1
  71. package/dist/src/components/ui/DefaultDropdown.vue.d.ts +0 -35
  72. package/dist/src/components/ui/DefaultDropdown.vue.d.ts.map +0 -1
  73. package/dist/src/components/ui/DefaultDropdownLink.vue.d.ts +0 -23
  74. package/dist/src/components/ui/DefaultDropdownLink.vue.d.ts.map +0 -1
  75. package/dist/src/components/ui/DefaultGallery.vue.d.ts +0 -114
  76. package/dist/src/components/ui/DefaultGallery.vue.d.ts.map +0 -1
  77. package/dist/src/components/ui/DefaultInput.vue.d.ts +0 -61
  78. package/dist/src/components/ui/DefaultInput.vue.d.ts.map +0 -1
  79. package/dist/src/components/ui/DefaultLoader.vue.d.ts +0 -12
  80. package/dist/src/components/ui/DefaultLoader.vue.d.ts.map +0 -1
  81. package/dist/src/components/ui/DefaultModal.vue.d.ts +0 -36
  82. package/dist/src/components/ui/DefaultModal.vue.d.ts.map +0 -1
  83. package/dist/src/components/ui/DefaultNotif.vue.d.ts +0 -3
  84. package/dist/src/components/ui/DefaultNotif.vue.d.ts.map +0 -1
  85. package/dist/src/components/ui/DefaultPaging.vue.d.ts +0 -13
  86. package/dist/src/components/ui/DefaultPaging.vue.d.ts.map +0 -1
  87. package/dist/src/components/ui/DefaultSidebar.vue.d.ts +0 -29
  88. package/dist/src/components/ui/DefaultSidebar.vue.d.ts.map +0 -1
  89. package/dist/src/components/ui/DefaultTagInput.vue.d.ts +0 -34
  90. package/dist/src/components/ui/DefaultTagInput.vue.d.ts.map +0 -1
  91. package/dist/src/components/ui/transitions/CollapseTransition.vue.d.ts +0 -18
  92. package/dist/src/components/ui/transitions/CollapseTransition.vue.d.ts.map +0 -1
  93. package/dist/src/components/ui/transitions/ExpandTransition.vue.d.ts +0 -18
  94. package/dist/src/components/ui/transitions/ExpandTransition.vue.d.ts.map +0 -1
  95. package/dist/src/components/ui/transitions/FadeTransition.vue.d.ts +0 -18
  96. package/dist/src/components/ui/transitions/FadeTransition.vue.d.ts.map +0 -1
  97. package/dist/src/components/ui/transitions/ScaleTransition.vue.d.ts +0 -18
  98. package/dist/src/components/ui/transitions/ScaleTransition.vue.d.ts.map +0 -1
  99. package/dist/src/components/ui/transitions/SlideTransition.vue.d.ts +0 -21
  100. package/dist/src/components/ui/transitions/SlideTransition.vue.d.ts.map +0 -1
  101. package/dist/src/composables/event-bus.d.ts +0 -8
  102. package/dist/src/composables/event-bus.d.ts.map +0 -1
  103. package/dist/src/composables/rest.d.ts +0 -24
  104. package/dist/src/composables/rest.d.ts.map +0 -1
  105. package/dist/src/composables/seo.d.ts +0 -26
  106. package/dist/src/composables/seo.d.ts.map +0 -1
  107. package/dist/src/composables/ssr.d.ts +0 -24
  108. package/dist/src/composables/ssr.d.ts.map +0 -1
  109. package/dist/src/composables/templating.d.ts +0 -7
  110. package/dist/src/composables/templating.d.ts.map +0 -1
  111. package/dist/src/composables/translations.d.ts +0 -8
  112. package/dist/src/composables/translations.d.ts.map +0 -1
  113. package/dist/src/index.d.ts.map +0 -1
  114. package/dist/src/plugin.d.ts +0 -3
  115. package/dist/src/plugin.d.ts.map +0 -1
  116. package/dist/src/stores/serverRouter.d.ts +0 -34
  117. package/dist/src/stores/serverRouter.d.ts.map +0 -1
  118. package/dist/src/stores/user.d.ts +0 -139
  119. package/dist/src/stores/user.d.ts.map +0 -1
  120. package/dist/src/types.d.ts +0 -48
  121. package/dist/src/types.d.ts.map +0 -1
@@ -1,32 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
- article: {
3
- type: ObjectConstructor;
4
- required: true;
5
- };
6
- type: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- imageDomain: {
11
- type: StringConstructor;
12
- default: string;
13
- };
14
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
- article: {
16
- type: ObjectConstructor;
17
- required: true;
18
- };
19
- type: {
20
- type: StringConstructor;
21
- default: string;
22
- };
23
- imageDomain: {
24
- type: StringConstructor;
25
- default: string;
26
- };
27
- }>> & Readonly<{}>, {
28
- type: string;
29
- imageDomain: string;
30
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
31
- export default _default;
32
- //# sourceMappingURL=CmsArticleBoxed.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CmsArticleBoxed.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/CmsArticleBoxed.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2cA,wBAoBG"}
@@ -1,29 +0,0 @@
1
- import { Component } from 'vue';
2
- import { BreadcrumbLink } from '../../types';
3
- type __VLS_Props = {
4
- baseUrl: string;
5
- cmsAlias: string;
6
- notFound: Component;
7
- baseBreadcrumb?: BreadcrumbLink[];
8
- showImage?: boolean;
9
- showPreview?: boolean;
10
- showTitle?: boolean;
11
- postValue?: any;
12
- passData?: boolean;
13
- imageDomain?: string;
14
- multLanguage?: boolean;
15
- urlSlug?: string;
16
- };
17
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
18
- imageDomain: string;
19
- baseBreadcrumb: BreadcrumbLink[];
20
- showImage: boolean;
21
- showPreview: boolean;
22
- showTitle: boolean;
23
- postValue: any;
24
- passData: boolean;
25
- multLanguage: boolean;
26
- urlSlug: string;
27
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
28
- export default _default;
29
- //# sourceMappingURL=CmsArticleSingle.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CmsArticleSingle.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/CmsArticleSingle.vue"],"names":[],"mappings":"AAAA,OA2MO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAEpC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AASjD,KAAK,WAAW,GAAG;IACf,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,SAAS,CAAA;IACnB,cAAc,CAAC,EAAE,cAAc,EAAE,CAAA;IACjC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,GAAG,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAC;;iBAHc,MAAM;oBANH,cAAc,EAAE;eACrB,OAAO;iBACL,OAAO;eACT,OAAO;eACP,GAAG;cACJ,OAAO;kBAEH,OAAO;aACZ,MAAM;;AAyNpB,wBAQG"}
@@ -1,52 +0,0 @@
1
- interface DefaultStringObject {
2
- [key: string]: string;
3
- }
4
- interface DefaultAnyObject {
5
- [key: string]: any;
6
- }
7
- interface DefaultBoolObject {
8
- [key: string]: boolean;
9
- }
10
- interface SortingField {
11
- field: string;
12
- direction: string;
13
- }
14
- type __VLS_Props = {
15
- id: string;
16
- headers: DefaultStringObject;
17
- sortables?: DefaultBoolObject;
18
- showHeaders?: boolean;
19
- exportableColumns?: string[];
20
- csvFormatColumns?: Record<string, (value: any) => string>;
21
- defaultPerPage?: number;
22
- filtersData: DefaultAnyObject;
23
- apiPath: string;
24
- defaultSort?: SortingField;
25
- restFunction?: Function | null;
26
- };
27
- declare function __VLS_template(): {
28
- attrs: Partial<{}>;
29
- slots: Partial<Record<NonNullable<string | number>, (_: {
30
- value: any;
31
- }) => any>>;
32
- refs: {};
33
- rootEl: HTMLDivElement;
34
- };
35
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
36
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
37
- sortables: DefaultBoolObject;
38
- showHeaders: boolean;
39
- exportableColumns: string[];
40
- csvFormatColumns: Record<string, (value: any) => string>;
41
- defaultPerPage: number;
42
- defaultSort: SortingField;
43
- restFunction: Function | null;
44
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
45
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
46
- export default _default;
47
- type __VLS_WithTemplateSlots<T, S> = T & {
48
- new (): {
49
- $slots: S;
50
- };
51
- };
52
- //# sourceMappingURL=DataTable.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DataTable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/DataTable.vue"],"names":[],"mappings":"AAmqBA,UAAU,mBAAmB;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CACtB;AACD,UAAU,gBAAgB;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACnB;AACD,UAAU,iBAAiB;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB;AACD,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,MAAM,CAAA;CAClB;AAeD,KAAK,WAAW,GAAG;IACf,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,mBAAmB,CAAA;IAC5B,SAAS,CAAC,EAAE,iBAAiB,CAAA;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,MAAM,CAAC,CAAA;IACzD,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,WAAW,EAAE,gBAAgB,CAAA;IAC7B,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,CAAC,EAAE,YAAY,CAAA;IAC1B,YAAY,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAA;CAC/B,CAAC;AAyKJ,iBAAS,cAAc;WAgTT,OAAO,IAA6B;;;UAXqC,GAAG;;;EAgBzF;AA0BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;eAlgBL,iBAAiB;iBACf,OAAO;uBACD,MAAM,EAAE;sBACT,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,MAAM,CAAC;oBACxC,MAAM;iBAGT,YAAY;kBACX,QAAQ,GAAG,IAAI;wFAkgBhC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,15 +0,0 @@
1
- import { FilterDataItems } from '../../types';
2
- type __VLS_Props = {
3
- data?: Array<Array<FilterDataItems>>;
4
- css: string;
5
- modelValue?: Record<string, unknown>;
6
- };
7
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
- "update:modelValue": (...args: any[]) => void;
9
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11
- }>, {
12
- data: Array<Array<FilterDataItems>>;
13
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
14
- export default _default;
15
- //# sourceMappingURL=FilterData.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FilterData.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/FilterData.vue"],"names":[],"mappings":"AAyaA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAelD,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAA;IACpC,GAAG,EAAE,MAAM,CAAA;IACX,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CACrC,CAAC;;;;;;UAHO,KAAK,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;;AAyYxC,wBASG"}
@@ -1,8 +0,0 @@
1
- type __VLS_Props = {
2
- onCompleted?: (data: any) => void;
3
- };
4
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
5
- onCompleted: (data: any) => void;
6
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLFormElement>;
7
- export default _default;
8
- //# sourceMappingURL=UserData.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"UserData.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/UserData.vue"],"names":[],"mappings":"AAyOA,KAAK,WAAW,GAAG;IACf,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;CAClC,CAAC;;iBADc,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI;;AAyPrC,wBAQG"}
@@ -1,116 +0,0 @@
1
- type __VLS_Props = {
2
- returnDefault?: string;
3
- forceAction?: string;
4
- onSuccess?: Function;
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
- returnDefault: string;
8
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
9
- inputs: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
10
- id: string;
11
- showLabel?: boolean;
12
- label?: string;
13
- type?: string;
14
- placeholder?: string;
15
- autocomplete?: string;
16
- checkboxTrueValue?: string | boolean;
17
- checkboxFalseValue?: string | boolean;
18
- req?: boolean;
19
- modelValue?: string | number | Record<string, any> | string[] | number[] | undefined;
20
- checkboxValue?: boolean | any[] | Set<any> | undefined;
21
- options?: string[][];
22
- dpOptions?: Record<string, any>;
23
- help?: string;
24
- error?: string;
25
- color?: string;
26
- disabled?: boolean;
27
- maxLengthPerTag?: number;
28
- copyButton?: boolean;
29
- maxRange?: number;
30
- minRange?: number;
31
- maxTags?: number;
32
- }> & Readonly<{
33
- onBlur?: ((...args: any[]) => any) | undefined;
34
- onFocus?: ((...args: any[]) => any) | undefined;
35
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
36
- "onUpdate:checkboxValue"?: ((...args: any[]) => any) | undefined;
37
- }>, {
38
- focus: () => void;
39
- blur: () => void;
40
- getInputRef: () => HTMLInputElement | undefined;
41
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
- blur: (...args: any[]) => void;
43
- focus: (...args: any[]) => void;
44
- "update:modelValue": (...args: any[]) => void;
45
- "update:checkboxValue": (...args: any[]) => void;
46
- }, import('vue').PublicProps, {
47
- type: string;
48
- disabled: boolean;
49
- copyButton: boolean;
50
- showLabel: boolean;
51
- checkboxTrueValue: string | boolean;
52
- checkboxFalseValue: string | boolean;
53
- req: boolean;
54
- options: string[][];
55
- dpOptions: Record<string, any>;
56
- maxLengthPerTag: number;
57
- maxRange: number;
58
- minRange: number;
59
- }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
60
- inputRef: HTMLInputElement;
61
- }, HTMLDivElement, import('vue').ComponentProvideOptions, {
62
- P: {};
63
- B: {};
64
- D: {};
65
- C: {};
66
- M: {};
67
- Defaults: {};
68
- }, Readonly<{
69
- id: string;
70
- showLabel?: boolean;
71
- label?: string;
72
- type?: string;
73
- placeholder?: string;
74
- autocomplete?: string;
75
- checkboxTrueValue?: string | boolean;
76
- checkboxFalseValue?: string | boolean;
77
- req?: boolean;
78
- modelValue?: string | number | Record<string, any> | string[] | number[] | undefined;
79
- checkboxValue?: boolean | any[] | Set<any> | undefined;
80
- options?: string[][];
81
- dpOptions?: Record<string, any>;
82
- help?: string;
83
- error?: string;
84
- color?: string;
85
- disabled?: boolean;
86
- maxLengthPerTag?: number;
87
- copyButton?: boolean;
88
- maxRange?: number;
89
- minRange?: number;
90
- maxTags?: number;
91
- }> & Readonly<{
92
- onBlur?: ((...args: any[]) => any) | undefined;
93
- onFocus?: ((...args: any[]) => any) | undefined;
94
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
95
- "onUpdate:checkboxValue"?: ((...args: any[]) => any) | undefined;
96
- }>, {
97
- focus: () => void;
98
- blur: () => void;
99
- getInputRef: () => HTMLInputElement | undefined;
100
- }, {}, {}, {}, {
101
- type: string;
102
- disabled: boolean;
103
- copyButton: boolean;
104
- showLabel: boolean;
105
- checkboxTrueValue: string | boolean;
106
- checkboxFalseValue: string | boolean;
107
- req: boolean;
108
- options: string[][];
109
- dpOptions: Record<string, any>;
110
- maxLengthPerTag: number;
111
- maxRange: number;
112
- minRange: number;
113
- }> | null)[];
114
- }, any>;
115
- export default _default;
116
- //# sourceMappingURL=UserFlow.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"UserFlow.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/UserFlow.vue"],"names":[],"mappings":"AAi9BA,KAAK,WAAW,GAAG;IACf,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,QAAQ,CAAA;CACrB,CAAC;;mBAHgB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6mB1B,wBASG"}
@@ -1,17 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
- returnTo: {
3
- type: StringConstructor;
4
- required: false;
5
- default: string;
6
- };
7
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
8
- returnTo: {
9
- type: StringConstructor;
10
- required: false;
11
- default: string;
12
- };
13
- }>> & Readonly<{}>, {
14
- returnTo: string;
15
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
16
- export default _default;
17
- //# sourceMappingURL=UserOAuth2.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"UserOAuth2.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/UserOAuth2.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;AAi3BA,wBAaG"}
@@ -1,40 +0,0 @@
1
- import { Component } from 'vue';
2
- type __VLS_Props = {
3
- imageDomain?: string;
4
- onCompleted?: (data: any) => void;
5
- hidePublic?: boolean;
6
- hideBirthdate?: boolean;
7
- hideGender?: boolean;
8
- cropperComponent?: Component;
9
- uploaderClass?: any;
10
- };
11
- declare function __VLS_template(): {
12
- attrs: Partial<{}>;
13
- slots: {
14
- 'cropper-action'?(_: {
15
- pic: string;
16
- }): any;
17
- };
18
- refs: {
19
- uploadInput: HTMLInputElement;
20
- };
21
- rootEl: HTMLFormElement;
22
- };
23
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
25
- imageDomain: string;
26
- onCompleted: (data: any) => void;
27
- hidePublic: boolean;
28
- hideBirthdate: boolean;
29
- hideGender: boolean;
30
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
31
- uploadInput: HTMLInputElement;
32
- }, HTMLFormElement>;
33
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
34
- export default _default;
35
- type __VLS_WithTemplateSlots<T, S> = T & {
36
- new (): {
37
- $slots: S;
38
- };
39
- };
40
- //# sourceMappingURL=UserProfile.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"UserProfile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/UserProfile.vue"],"names":[],"mappings":"AAymBA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AASpC,KAAK,WAAW,GAAG;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;IACjC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B,aAAa,CAAC,EAAE,GAAG,CAAA;CACpB,CAAC;AAqKJ,iBAAS,cAAc;WA8XT,OAAO,IAA6B;;;;YAXX,GAAG;;;;;;EAgBzC;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;iBAtkBH,MAAM;iBACN,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI;gBACpB,OAAO;mBACJ,OAAO;gBACV,OAAO;;;mBA2kBtB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,12 +0,0 @@
1
- type __VLS_Props = {
2
- onCompleted?: (data: any) => void;
3
- termsText?: string;
4
- force18?: boolean;
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
- onCompleted: (data: any) => void;
8
- termsText: string;
9
- force18: boolean;
10
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLFormElement>;
11
- export default _default;
12
- //# sourceMappingURL=UserProfileStrict.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"UserProfileStrict.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/fws/UserProfileStrict.vue"],"names":[],"mappings":"AAmPA,KAAK,WAAW,GAAG;IACf,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;IACjC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;;iBAHc,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI;eACrB,MAAM;aACR,OAAO;;AA0PrB,wBAQG"}
@@ -1,4 +0,0 @@
1
- export declare const ClientOnly: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2
- [key: string]: any;
3
- }>[] | null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4
- //# sourceMappingURL=ClientOnly.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ClientOnly.d.ts","sourceRoot":"","sources":["../../../../src/components/ssr/ClientOnly.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;oPAOrB,CAAA"}
@@ -1,11 +0,0 @@
1
- import { BreadcrumbLink } from '../../types';
2
- type __VLS_Props = {
3
- nav: BreadcrumbLink[];
4
- showHome: boolean;
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
- nav: BreadcrumbLink[];
8
- showHome: boolean;
9
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
10
- export default _default;
11
- //# sourceMappingURL=DefaultBreadcrumb.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DefaultBreadcrumb.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/DefaultBreadcrumb.vue"],"names":[],"mappings":"AAqGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAOjD,KAAK,WAAW,GAAG;IACf,GAAG,EAAE,cAAc,EAAE,CAAA;IACrB,QAAQ,EAAE,OAAO,CAAA;CAClB,CAAC;;SAFK,cAAc,EAAE;cACX,OAAO;;AAkKrB,wBAQG"}
@@ -1,81 +0,0 @@
1
- import { nextTick } from 'vue';
2
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
3
- modalRef: ({
4
- $: import('vue').ComponentInternalInstance;
5
- $data: {};
6
- $props: {
7
- readonly id: string;
8
- readonly title?: string | undefined;
9
- readonly onOpen?: Function | undefined;
10
- readonly onClose?: Function | undefined;
11
- readonly closeIcon?: object | undefined;
12
- readonly mSize?: string | undefined;
13
- readonly ofy?: string | undefined;
14
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
15
- $attrs: import('vue').Attrs;
16
- $refs: {
17
- [x: string]: unknown;
18
- } & {
19
- modalRef: HTMLDivElement;
20
- };
21
- $slots: Readonly<{
22
- [name: string]: import('vue').Slot<any> | undefined;
23
- }>;
24
- $root: import('vue').ComponentPublicInstance | null;
25
- $parent: import('vue').ComponentPublicInstance | null;
26
- $host: Element | null;
27
- $emit: (event: string, ...args: any[]) => void;
28
- $el: any;
29
- $options: import('vue').ComponentOptionsBase<Readonly<{
30
- id: string;
31
- title?: string;
32
- onOpen?: Function;
33
- onClose?: Function;
34
- closeIcon?: object;
35
- mSize?: string;
36
- ofy?: string;
37
- }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
38
- closeIcon: object;
39
- mSize: string;
40
- ofy: string;
41
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
42
- beforeCreate?: (() => void) | (() => void)[];
43
- created?: (() => void) | (() => void)[];
44
- beforeMount?: (() => void) | (() => void)[];
45
- mounted?: (() => void) | (() => void)[];
46
- beforeUpdate?: (() => void) | (() => void)[];
47
- updated?: (() => void) | (() => void)[];
48
- activated?: (() => void) | (() => void)[];
49
- deactivated?: (() => void) | (() => void)[];
50
- beforeDestroy?: (() => void) | (() => void)[];
51
- beforeUnmount?: (() => void) | (() => void)[];
52
- destroyed?: (() => void) | (() => void)[];
53
- unmounted?: (() => void) | (() => void)[];
54
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
55
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
56
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
57
- };
58
- $forceUpdate: () => void;
59
- $nextTick: typeof nextTick;
60
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
61
- } & Readonly<{
62
- closeIcon: object;
63
- mSize: string;
64
- ofy: string;
65
- }> & Omit<Readonly<{
66
- id: string;
67
- title?: string;
68
- onOpen?: Function;
69
- onClose?: Function;
70
- closeIcon?: object;
71
- mSize?: string;
72
- ofy?: string;
73
- }> & Readonly<{}>, "closeIcon" | "mSize" | "ofy"> & {} & import('vue').ComponentCustomProperties & {} & {
74
- $slots: {
75
- before?(_: {}): any;
76
- default?(_: {}): any;
77
- };
78
- }) | null;
79
- }, any>;
80
- export default _default;
81
- //# sourceMappingURL=DefaultConfirm.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DefaultConfirm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/DefaultConfirm.vue"],"names":[],"mappings":"AAqLA,OAAO,EAAE,QAAQ,EAA+B,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAgL23f,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;AAT5igB,wBAOG"}
@@ -1,81 +0,0 @@
1
- import { nextTick } from 'vue';
2
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
3
- modalRef: ({
4
- $: import('vue').ComponentInternalInstance;
5
- $data: {};
6
- $props: {
7
- readonly id: string;
8
- readonly title?: string | undefined;
9
- readonly onOpen?: Function | undefined;
10
- readonly onClose?: Function | undefined;
11
- readonly closeIcon?: object | undefined;
12
- readonly mSize?: string | undefined;
13
- readonly ofy?: string | undefined;
14
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
15
- $attrs: import('vue').Attrs;
16
- $refs: {
17
- [x: string]: unknown;
18
- } & {
19
- modalRef: HTMLDivElement;
20
- };
21
- $slots: Readonly<{
22
- [name: string]: import('vue').Slot<any> | undefined;
23
- }>;
24
- $root: import('vue').ComponentPublicInstance | null;
25
- $parent: import('vue').ComponentPublicInstance | null;
26
- $host: Element | null;
27
- $emit: (event: string, ...args: any[]) => void;
28
- $el: any;
29
- $options: import('vue').ComponentOptionsBase<Readonly<{
30
- id: string;
31
- title?: string;
32
- onOpen?: Function;
33
- onClose?: Function;
34
- closeIcon?: object;
35
- mSize?: string;
36
- ofy?: string;
37
- }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
38
- closeIcon: object;
39
- mSize: string;
40
- ofy: string;
41
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
42
- beforeCreate?: (() => void) | (() => void)[];
43
- created?: (() => void) | (() => void)[];
44
- beforeMount?: (() => void) | (() => void)[];
45
- mounted?: (() => void) | (() => void)[];
46
- beforeUpdate?: (() => void) | (() => void)[];
47
- updated?: (() => void) | (() => void)[];
48
- activated?: (() => void) | (() => void)[];
49
- deactivated?: (() => void) | (() => void)[];
50
- beforeDestroy?: (() => void) | (() => void)[];
51
- beforeUnmount?: (() => void) | (() => void)[];
52
- destroyed?: (() => void) | (() => void)[];
53
- unmounted?: (() => void) | (() => void)[];
54
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
55
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
56
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
57
- };
58
- $forceUpdate: () => void;
59
- $nextTick: typeof nextTick;
60
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
61
- } & Readonly<{
62
- closeIcon: object;
63
- mSize: string;
64
- ofy: string;
65
- }> & Omit<Readonly<{
66
- id: string;
67
- title?: string;
68
- onOpen?: Function;
69
- onClose?: Function;
70
- closeIcon?: object;
71
- mSize?: string;
72
- ofy?: string;
73
- }> & Readonly<{}>, "closeIcon" | "mSize" | "ofy"> & {} & import('vue').ComponentCustomProperties & {} & {
74
- $slots: {
75
- before?(_: {}): any;
76
- default?(_: {}): any;
77
- };
78
- }) | null;
79
- }, any>;
80
- export default _default;
81
- //# sourceMappingURL=DefaultConfirmWithInput.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DefaultConfirmWithInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/DefaultConfirmWithInput.vue"],"names":[],"mappings":"AA4NA,OAAO,EAAE,QAAQ,EAA+B,MAAM,KAAK,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAmPggX,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;AATjrX,wBAOG"}
@@ -1,35 +0,0 @@
1
- type __VLS_Props = {
2
- show: boolean;
3
- handleClickOutside: any;
4
- preventClickOutside?: boolean;
5
- coordinates?: {
6
- left?: string;
7
- right?: string;
8
- top?: string;
9
- bottom?: string;
10
- };
11
- position: string[];
12
- closeDropdown: () => void;
13
- };
14
- declare function __VLS_template(): {
15
- attrs: Partial<{}>;
16
- slots: {
17
- default?(_: {}): any;
18
- };
19
- refs: {
20
- dropdownRef: HTMLDivElement;
21
- };
22
- rootEl: HTMLDivElement;
23
- };
24
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
26
- dropdownRef: HTMLDivElement;
27
- }, HTMLDivElement>;
28
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
- export default _default;
30
- type __VLS_WithTemplateSlots<T, S> = T & {
31
- new (): {
32
- $slots: S;
33
- };
34
- };
35
- //# sourceMappingURL=DefaultDropdown.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DefaultDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/DefaultDropdown.vue"],"names":[],"mappings":"AA8GA,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,OAAO,CAAA;IACb,kBAAkB,EAAE,GAAG,CAAA;IACvB,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,WAAW,CAAC,EAAE;QACZ,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,GAAG,CAAC,EAAE,MAAM,CAAA;QACZ,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;IACD,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,aAAa,EAAE,MAAM,IAAI,CAAA;CAC1B,CAAC;AAqBF,iBAAS,cAAc;WA2DT,OAAO,IAA6B;;yBAXrB,GAAG;;;;;;EAgB/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;kBAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,23 +0,0 @@
1
- type __VLS_Props = {
2
- handleClick?: () => void;
3
- label?: string;
4
- color?: string;
5
- };
6
- declare function __VLS_template(): {
7
- attrs: Partial<{}>;
8
- slots: {
9
- default?(_: {}): any;
10
- };
11
- refs: {};
12
- rootEl: HTMLButtonElement;
13
- };
14
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
16
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
- export default _default;
18
- type __VLS_WithTemplateSlots<T, S> = T & {
19
- new (): {
20
- $slots: S;
21
- };
22
- };
23
- //# sourceMappingURL=DefaultDropdownLink.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DefaultDropdownLink.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/DefaultDropdownLink.vue"],"names":[],"mappings":"AAmGA,KAAK,WAAW,GAAG;IACjB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAC;AAWF,iBAAS,cAAc;WAmCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,gTAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}