pukaad-ui-lib 1.100.0 → 1.101.0

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
3
  "configKey": "pukaadUI",
4
- "version": "1.100.0",
4
+ "version": "1.101.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -73,6 +73,7 @@ const module$1 = defineNuxtModule({
73
73
  addPlugin(resolver.resolve("./runtime/plugins/toast"));
74
74
  addPlugin(resolver.resolve("./runtime/plugins/quill.client"));
75
75
  addPlugin(resolver.resolve("./runtime/plugins/convert.client"));
76
+ addPlugin(resolver.resolve("./runtime/plugins/dayjs.plugin"));
76
77
  _nuxt.hook("nitro:config", (nitroConfig) => {
77
78
  nitroConfig.publicAssets ||= [];
78
79
  nitroConfig.publicAssets.push({
@@ -14,8 +14,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
14
14
  onComplete?: ((value: string) => any) | undefined;
15
15
  onClose?: (() => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -14,8 +14,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
14
14
  onComplete?: ((value: string) => any) | undefined;
15
15
  onClose?: (() => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -35,10 +35,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
35
35
  required: boolean;
36
36
  id: string;
37
37
  name: string;
38
- limit: number;
39
38
  description: string;
40
39
  options: AutocompleteOption[] | string[] | number[];
41
40
  placeholder: string;
41
+ limit: number;
42
42
  disabledErrorMessage: boolean;
43
43
  disabledBorder: boolean;
44
44
  showCounter: boolean;
@@ -35,10 +35,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
35
35
  required: boolean;
36
36
  id: string;
37
37
  name: string;
38
- limit: number;
39
38
  description: string;
40
39
  options: AutocompleteOption[] | string[] | number[];
41
40
  placeholder: string;
41
+ limit: number;
42
42
  disabledErrorMessage: boolean;
43
43
  disabledBorder: boolean;
44
44
  showCounter: boolean;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
19
19
  }>, {
20
20
  name: string;
21
- limit: number;
22
21
  placeholder: string;
22
+ limit: number;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
19
19
  }>, {
20
20
  name: string;
21
- limit: number;
22
21
  placeholder: string;
22
+ limit: number;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -14,8 +14,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
14
14
  onComplete?: ((value: string) => any) | undefined;
15
15
  onClose?: (() => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -14,8 +14,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
14
14
  onComplete?: ((value: string) => any) | undefined;
15
15
  onClose?: (() => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,7 @@
1
+ import dayjsUtil from "../utils/dayjs.js";
2
+ declare const _default: import("nuxt/app").Plugin<{
3
+ dayjs: typeof dayjsUtil;
4
+ }> & import("nuxt/app").ObjectPlugin<{
5
+ dayjs: typeof dayjsUtil;
6
+ }>;
7
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { defineNuxtPlugin } from "nuxt/app";
2
+ import dayjsUtil from "../utils/dayjs.js";
3
+ export default defineNuxtPlugin(() => {
4
+ return {
5
+ provide: {
6
+ dayjs: dayjsUtil
7
+ }
8
+ };
9
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.100.0",
3
+ "version": "1.101.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",