paket-ui 0.0.1 → 0.0.2

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 (29) hide show
  1. package/README.md +9 -9
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +1 -1
  4. package/dist/runtime/components/alert/AlertHelperForm.vue.d.ts +1 -1
  5. package/dist/runtime/components/alert/BaseAlert.vue.d.ts +3 -3
  6. package/dist/runtime/components/attachment/BaseAttachment.vue.d.ts +1 -1
  7. package/dist/runtime/components/attachment/ChipAttachment.vue.d.ts +1 -1
  8. package/dist/runtime/components/avatar/BaseAvatar.vue.d.ts +2 -2
  9. package/dist/runtime/components/badge/BaseBadge.vue.d.ts +2 -2
  10. package/dist/runtime/components/badge/IconBadge.vue.d.ts +3 -3
  11. package/dist/runtime/components/button/BaseButton.vue.d.ts +1 -1
  12. package/dist/runtime/components/button/IconButton.vue.d.ts +3 -3
  13. package/dist/runtime/components/button/LinkButton.vue.d.ts +3 -3
  14. package/dist/runtime/components/card/CardStatistic.vue.d.ts +1 -1
  15. package/dist/runtime/components/chat/Reply.vue.d.ts +1 -1
  16. package/dist/runtime/components/chip/ChipBase.vue.d.ts +2 -2
  17. package/dist/runtime/components/cropper/CropperImage.vue.d.ts +2 -2
  18. package/dist/runtime/components/dialog-reka/DialogContent.vue.d.ts +1 -1
  19. package/dist/runtime/components/dropdown/Dropdown.vue.d.ts +3 -3
  20. package/dist/runtime/components/dropdown/DropdownItem.vue.d.ts +3 -3
  21. package/dist/runtime/components/file/DropAreaFile.vue.d.ts +1 -1
  22. package/dist/runtime/components/input/ButtonFileInput.vue.d.ts +1 -1
  23. package/dist/runtime/components/input/IconButtonFileInput.vue.d.ts +1 -1
  24. package/dist/runtime/components/input/InputFieldPhone.vue.d.ts +2 -2
  25. package/dist/runtime/components/input/InputFileDropable.vue.d.ts +1 -1
  26. package/dist/runtime/components/input/InputRadio.vue.d.ts +1 -1
  27. package/dist/runtime/components/popover/WhatsAppChecker.vue.d.ts +1 -1
  28. package/dist/runtime/components/radio/Courier.vue.d.ts +1 -1
  29. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # Nakama UI (KiriminAja Design System)
1
+ # Paket UI (KiriminAja Design System)
2
2
 
3
3
  [![npm version][npm-version-src]][npm-version-href]
4
4
  [![npm downloads][npm-downloads-src]][npm-downloads-href]
5
5
  [![License][license-src]][license-href]
6
6
  [![Nuxt][nuxt-src]][nuxt-href]
7
7
 
8
- My new Nuxt module for doing amazing things.
8
+ The outfit for KiriminAja web app, including app.kiriminaja.com
9
9
 
10
10
  - [✨  Release Notes](/CHANGELOG.md)
11
11
  <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
@@ -24,7 +24,7 @@ My new Nuxt module for doing amazing things.
24
24
  Install the module to your Nuxt application with one command:
25
25
 
26
26
  ```bash
27
- npx nuxi module add @nakama/ui
27
+ npx nuxi module add paket-ui
28
28
  ```
29
29
 
30
30
  That's it! You can now use My Module in your Nuxt app ✨
@@ -62,11 +62,11 @@ That's it! You can now use My Module in your Nuxt app ✨
62
62
 
63
63
  <!-- Badges -->
64
64
 
65
- [npm-version-src]: https://img.shields.io/npm/v/@nakama/ui/latest.svg?style=flat&colorA=020420&colorB=00DC82
66
- [npm-version-href]: https://npmjs.com/package/@nakama/ui
67
- [npm-downloads-src]: https://img.shields.io/npm/dm/@nakama/ui.svg?style=flat&colorA=020420&colorB=00DC82
68
- [npm-downloads-href]: https://npm.chart.dev/@nakama/ui
69
- [license-src]: https://img.shields.io/npm/l/@nakama/ui.svg?style=flat&colorA=020420&colorB=00DC82
70
- [license-href]: https://npmjs.com/package/@nakama/ui
65
+ [npm-version-src]: https://img.shields.io/npm/v/paket-ui/latest.svg?style=flat&colorA=020420&colorB=00DC82
66
+ [npm-version-href]: https://npmjs.com/package/paket-ui
67
+ [npm-downloads-src]: https://img.shields.io/npm/dm/paket-ui.svg?style=flat&colorA=020420&colorB=00DC82
68
+ [npm-downloads-href]: https://npm.chart.dev/paket-ui
69
+ [license-src]: https://img.shields.io/npm/l/paket-ui.svg?style=flat&colorA=020420&colorB=00DC82
70
+ [license-href]: https://npmjs.com/package/paket-ui
71
71
  [nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
72
72
  [nuxt-href]: https://nuxt.com
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "paket-ui",
3
- "version": "v0.0.1",
3
+ "version": "v0.0.2",
4
4
  "docs": "https://github.com/kiriminaja/nakama-ui",
5
5
  "configKey": "nakama",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defu } from 'defu';
2
2
  import { defineNuxtModule, createResolver, addPlugin, addComponentsDir, addImportsDir, hasNuxtModule, installModule } from '@nuxt/kit';
3
3
 
4
4
  const name = "paket-ui";
5
- const version = "v0.0.1";
5
+ const version = "v0.0.2";
6
6
 
7
7
  const defaultOptions = {
8
8
  prefix: "Nx"
@@ -7,7 +7,7 @@ interface IInfoField {
7
7
  variant?: keyof typeof variantConfigHelper;
8
8
  }
9
9
  declare const _default: import("vue").DefineComponent<IInfoField, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IInfoField> & Readonly<{}>, {
10
- variant: keyof typeof variantConfigHelper;
11
10
  icon: string;
11
+ variant: keyof typeof variantConfigHelper;
12
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
13
  export default _default;
@@ -17,12 +17,12 @@ type __VLS_Slots = {} & {
17
17
  trailing?: (props: typeof __VLS_7) => any;
18
18
  };
19
19
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
20
- title: string;
21
20
  class: HTMLAttributes["class"];
22
- iconName: string;
23
- variant: keyof typeof variantConfig;
21
+ title: string;
24
22
  description: string;
23
+ variant: keyof typeof variantConfig;
25
24
  iconSize: keyof typeof iconSizeConfig;
25
+ iconName: string;
26
26
  descriptionClass: HTMLAttributes["class"];
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
28
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -17,8 +17,8 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
17
17
  type: "image" | "file" | "video";
18
18
  width: string;
19
19
  alt: string;
20
- height: string;
21
20
  openable: boolean;
21
+ height: string;
22
22
  iconFallbackSize: keyof typeof iconFallbackSizeConfig;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  export default _default;
@@ -17,9 +17,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
17
17
  onOnClick?: (() => any) | undefined;
18
18
  onOnDismiss?: (() => any) | undefined;
19
19
  }>, {
20
+ class: HTMLAttributes["class"];
20
21
  type: "image" | "file" | "video" | "audio" | "contact" | "location";
21
22
  label: string;
22
- class: HTMLAttributes["class"];
23
23
  src: string;
24
24
  dismissable: boolean;
25
25
  iconFallbackSize: keyof typeof iconFallbackSizeConfig;
@@ -14,11 +14,11 @@ type __VLS_Slots = {} & {
14
14
  default?: (props: typeof __VLS_1) => any;
15
15
  };
16
16
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
- text: string;
18
17
  class: HTMLAttributes["class"];
18
+ text: string;
19
+ variant: keyof typeof variantConfig;
19
20
  size: keyof typeof sizeConfig;
20
21
  src: string;
21
- variant: keyof typeof variantConfig;
22
22
  alt: string;
23
23
  shape: "circle" | "square";
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,10 +8,10 @@ type __VLS_Props = {
8
8
  bgColor?: string;
9
9
  };
10
10
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
- label: string;
12
11
  class: HTMLAttributes["class"];
13
- size: keyof typeof sizeConfig;
12
+ label: string;
14
13
  variant: keyof typeof variantConfig;
14
+ size: keyof typeof sizeConfig;
15
15
  bgColor: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
@@ -11,12 +11,12 @@ type __VLS_Props = {
11
11
  textClass?: HTMLAttributes['class'];
12
12
  };
13
13
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
- label: string;
15
14
  class: HTMLAttributes["class"];
16
- size: keyof typeof sizeConfig;
17
- iconName: string;
15
+ label: string;
18
16
  variant: keyof typeof variantConfig;
17
+ size: keyof typeof sizeConfig;
19
18
  iconSize: keyof typeof iconSizeConfig;
19
+ iconName: string;
20
20
  bgColor: string;
21
21
  textClass: HTMLAttributes["class"];
22
22
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -10,7 +10,7 @@ type __VLS_Props = {
10
10
  };
11
11
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
12
  label: string;
13
- size: keyof typeof sizeConfig;
14
13
  variant: keyof typeof variantConfig;
14
+ size: keyof typeof sizeConfig;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  export default _default;
@@ -14,12 +14,12 @@ type __VLS_Props = {
14
14
  labelClass?: HTMLAttributes['class'];
15
15
  };
16
16
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
- label: string;
18
17
  class: HTMLAttributes["class"];
19
- size: keyof typeof sizeConfig;
20
- iconName: string;
18
+ label: string;
21
19
  variant: keyof typeof variantConfig;
20
+ size: keyof typeof sizeConfig;
22
21
  iconSize: keyof typeof iconSizeConfig;
22
+ iconName: string;
23
23
  iconPosition: "left" | "right";
24
24
  iconClass: HTMLAttributes["class"];
25
25
  labelClass: HTMLAttributes["class"];
@@ -13,11 +13,11 @@ type __VLS_Props = {
13
13
  loading?: boolean;
14
14
  };
15
15
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
- label: string;
17
16
  class: HTMLAttributes["class"];
18
- size: keyof typeof sizeConfig;
19
- variant: keyof typeof variantConfig;
20
17
  target: string;
18
+ label: string;
21
19
  icon: string;
20
+ variant: keyof typeof variantConfig;
21
+ size: keyof typeof sizeConfig;
22
22
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  export default _default;
@@ -30,10 +30,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
30
30
  icon: string;
31
31
  iconClass: HTMLAttributes["class"];
32
32
  labelClass: HTMLAttributes["class"];
33
- contentClass: HTMLAttributes["class"];
34
33
  count: number;
35
34
  currency: boolean;
36
35
  hoverable: boolean;
36
+ contentClass: HTMLAttributes["class"];
37
37
  parentTotal: number;
38
38
  active: boolean;
39
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -39,10 +39,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
39
39
  "recorder-remove": () => void;
40
40
  recorded: (value: FileList) => void;
41
41
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
42
- onRecorded?: ((value: FileList) => any) | undefined;
43
42
  onSubmit?: (() => any) | undefined;
44
43
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
45
44
  "onRecorder-remove"?: (() => any) | undefined;
45
+ onRecorded?: ((value: FileList) => any) | undefined;
46
46
  }>, {
47
47
  modelValue: string;
48
48
  disabled: boolean;
@@ -15,11 +15,11 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
15
15
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
16
16
  onClose?: (() => any) | undefined;
17
17
  }>, {
18
- label: string;
19
18
  class: HTMLAttributes["class"];
20
- iconName: string;
19
+ label: string;
21
20
  variant: keyof typeof variantConfig;
22
21
  iconSize: keyof typeof iconSizeConfig;
22
+ iconName: string;
23
23
  classLabel: HTMLAttributes["class"];
24
24
  classButton: HTMLAttributes["class"];
25
25
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -6,11 +6,11 @@ type __VLS_Props = {
6
6
  aspectRatio?: number;
7
7
  };
8
8
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
- close: () => any;
10
9
  onChange: (payload: File) => any;
10
+ close: () => any;
11
11
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
- onClose?: (() => any) | undefined;
13
12
  onOnChange?: ((payload: File) => any) | undefined;
13
+ onClose?: (() => any) | undefined;
14
14
  }>, {
15
15
  title: string;
16
16
  aspectRatio: number;
@@ -11,8 +11,8 @@ type __VLS_Slots = {} & {
11
11
  default?: (props: typeof __VLS_22) => any;
12
12
  };
13
13
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
- title: string;
15
14
  class: HTMLAttributes["class"];
15
+ title: string;
16
16
  description: string;
17
17
  dissmissOnOutsideClick: boolean;
18
18
  isScrollable: boolean;
@@ -29,12 +29,12 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
29
29
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
30
30
  "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
31
31
  }>, {
32
- label: string;
33
32
  class: HTMLAttributes["class"];
34
- size: keyof typeof sizeConfig;
35
- iconName: string;
33
+ label: string;
36
34
  variant: keyof typeof variantConfig;
35
+ size: keyof typeof sizeConfig;
37
36
  iconSize: keyof typeof iconSizeConfig;
37
+ iconName: string;
38
38
  iconPosition: "left" | "right";
39
39
  iconClass: HTMLAttributes["class"];
40
40
  contentClass: HTMLAttributes["class"];
@@ -16,13 +16,13 @@ type __VLS_Slots = {} & {
16
16
  default?: (props: typeof __VLS_6) => any;
17
17
  };
18
18
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
19
- label: string;
20
19
  class: HTMLAttributes["class"];
21
- size: keyof typeof sizeConfig;
22
- variant: keyof typeof variantConfig;
23
20
  value: string;
21
+ label: string;
24
22
  icon: string;
25
23
  description: string;
24
+ variant: keyof typeof variantConfig;
25
+ size: keyof typeof sizeConfig;
26
26
  iconClass: HTMLAttributes["class"];
27
27
  command: string;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -16,9 +16,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
16
16
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
17
  onDrop?: ((value: DragEvent) => any) | undefined;
18
18
  }>, {
19
+ class: HTMLAttributes["class"];
19
20
  progress: number;
20
21
  label: string;
21
- class: HTMLAttributes["class"];
22
22
  description: string;
23
23
  errorMessage: string;
24
24
  state: "default" | "validate";
@@ -17,9 +17,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
17
17
  onOnChange?: ((payload: FileList | null) => any) | undefined;
18
18
  }>, {
19
19
  label: string;
20
+ variant: keyof typeof variantConfig;
20
21
  size: keyof typeof sizeConfig;
21
22
  iconName: string;
22
- variant: keyof typeof variantConfig;
23
23
  isMultiple: boolean;
24
24
  accept: string[];
25
25
  maxFileSize: number;
@@ -24,9 +24,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
24
24
  onOnSelect?: ((payload: TFileOptions) => any) | undefined;
25
25
  }>, {
26
26
  class: HTMLAttributes["class"];
27
+ variant: keyof typeof variantConfig;
27
28
  size: keyof typeof sizeConfig;
28
29
  iconName: string;
29
- variant: keyof typeof variantConfig;
30
30
  disabled: boolean;
31
31
  fileOptions: TFileOptions[];
32
32
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -21,10 +21,10 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {
21
21
  "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
22
22
  }>, {
23
23
  class: HTMLAttributes["class"];
24
- name: string;
25
24
  modelValue: string;
26
- placeholder: string;
25
+ name: string;
27
26
  id: string;
27
+ placeholder: string;
28
28
  defaultValue: string;
29
29
  maxLength: number;
30
30
  autocomplete: string;
@@ -18,8 +18,8 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
19
19
  "onUpdate:modelValue"?: ((payload: File) => any) | undefined;
20
20
  }>, {
21
- label: string;
22
21
  modelValue: File;
22
+ label: string;
23
23
  defaultValue: File;
24
24
  suggestionLabel: string;
25
25
  accept: string[];
@@ -14,8 +14,8 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
14
14
  "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
15
15
  }>, {
16
16
  class: HTMLAttributes["class"];
17
- size: string;
18
17
  modelValue: string;
18
+ size: string;
19
19
  id: string;
20
20
  defaultValue: string;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,7 +7,7 @@ type __VLS_Props = {
7
7
  };
8
8
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
9
  class: HTMLAttributes["class"];
10
- loading: boolean;
11
10
  valid: boolean;
11
+ loading: boolean;
12
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
13
  export default _default;
@@ -38,8 +38,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
38
38
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
39
39
  onClick?: (() => any) | undefined;
40
40
  }>, {
41
- image: string;
42
41
  class: HTMLAttributes["class"];
42
+ image: string;
43
43
  size: "small" | "medium";
44
44
  selected: boolean;
45
45
  disabledMessage: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "paket-ui",
3
- "version": "v0.0.1",
3
+ "version": "v0.0.2",
4
4
  "description": "KiriminAja Nakama UI, a UI component library for Nuxt 3 applications.",
5
5
  "repository": "kiriminaja/nakama-ui",
6
6
  "license": "MIT",