bonkers-ui 1.0.62 → 1.0.64

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 (59) hide show
  1. package/README.md +152 -0
  2. package/_types/sizing.js.map +1 -1
  3. package/bonkers-ui.umd.js +7 -7
  4. package/bonkers-ui.umd.js.map +1 -1
  5. package/components/ui-alert/index.d.ts +23 -56
  6. package/components/ui-badge/index.d.ts +33 -68
  7. package/components/ui-ber-rank/index.js +1 -0
  8. package/components/ui-ber-rank/ui-ber-rank.vue3.js +1 -0
  9. package/components/ui-button/index.d.ts +51 -86
  10. package/components/ui-card-cta/index.d.ts +39 -75
  11. package/components/ui-card-result/index.d.ts +39 -75
  12. package/components/ui-card-result/ui-card-result.vue.js +1 -0
  13. package/components/ui-card-simple/index.d.ts +9 -39
  14. package/components/ui-checkbox/index.d.ts +47 -84
  15. package/components/ui-checkbox/ui-checkbox.vue.js +1 -0
  16. package/components/ui-dropdown/index.d.ts +47 -90
  17. package/components/ui-dropdown/ui-dropdown.vue.d.ts +0 -3
  18. package/components/ui-dropdown/ui-dropdown.vue.js +19 -20
  19. package/components/ui-dropdown/ui-dropdown.vue.js.map +1 -1
  20. package/components/ui-icon-wrapper/index.d.ts +31 -64
  21. package/components/ui-icon-wrapper/ui-icon-wrapper.vue.js +1 -0
  22. package/components/ui-input/_typings.d.ts +2 -2
  23. package/components/ui-input/index.d.ts +148 -193
  24. package/components/ui-input-range/ui-input-range.vue.js +1 -0
  25. package/components/ui-list-item/index.d.ts +74 -111
  26. package/components/ui-modal/index.d.ts +31 -64
  27. package/components/ui-modal/ui-backdrop/index.d.ts +9 -39
  28. package/components/ui-modal/ui-backdrop/ui-backdrop.vue.js +1 -0
  29. package/components/ui-modal/ui-modal.vue.js +1 -0
  30. package/components/ui-notification-badge/index.d.ts +22 -54
  31. package/components/ui-notification-badge/index.js +1 -0
  32. package/components/ui-notification-badge/ui-notification-badge.vue3.js +1 -0
  33. package/components/ui-order-card/index.d.ts +29 -62
  34. package/components/ui-plain-radio/index.d.ts +60 -98
  35. package/components/ui-radio/index.d.ts +60 -98
  36. package/components/ui-radio/ui-radio.vue.js +1 -0
  37. package/components/ui-radio-compact/index.d.ts +45 -81
  38. package/components/ui-radio-fancy/index.d.ts +70 -108
  39. package/components/ui-result-card-range/index.d.ts +33 -68
  40. package/components/ui-ripple/index.d.ts +9 -39
  41. package/components/ui-ripple/index.js +1 -0
  42. package/components/ui-ripple/ui-ripple.vue3.js +1 -0
  43. package/components/ui-select/index.d.ts +41 -77
  44. package/components/ui-snackbar/index.d.ts +29 -62
  45. package/components/ui-table/index.d.ts +22 -54
  46. package/components/ui-table/ui-table-cell/index.d.ts +21 -54
  47. package/components/ui-table/ui-table-row/index.d.ts +16 -48
  48. package/components/ui-table/ui-table-row/ui-table-row.vue.js +1 -0
  49. package/components/ui-table/ui-table.vue.js +1 -0
  50. package/components/ui-tabs/ui-tabs.vue.js +1 -0
  51. package/components/ui-toggle/index.d.ts +62 -101
  52. package/components/ui-toggle/ui-toggle.vue.js +1 -0
  53. package/components/ui-typography/index.d.ts +61 -100
  54. package/components/ui-typography/ui-typography.vue.js +2 -2
  55. package/components/ui-verification-input/index.d.ts +29 -63
  56. package/components/ui-verification-input/ui-verification-input.vue.js +1 -0
  57. package/index.js +5 -2
  58. package/package.json +38 -38
  59. package/types.js +11 -5
@@ -1,109 +1,13 @@
1
1
  import { EColors } from '../../_types/colors';
2
- import { ETypographySizes, ETextAlign, ETextWeight, ETextTransform } from './_typings';
3
- import { ComponentInternalInstance, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { ETextAlign, ETypographySizes, ETextWeight, ETextTransform } from './_typings';
3
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, Component, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
4
4
  import UiTypography from "./ui-typography.vue";
5
5
  export { UiTypography };
6
6
  /**
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  **/
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{}> & Omit<{
14
- readonly size?: ETypographySizes | undefined;
15
- readonly align?: ETextAlign | undefined;
16
- readonly kind?: EColors | undefined;
17
- readonly weight?: ETextWeight | undefined;
18
- readonly lineHeight?: boolean | undefined;
19
- readonly textTransform?: ETextTransform | undefined;
20
- readonly underline?: boolean | undefined;
21
- readonly is?: string | Component | undefined;
22
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
23
- align: {
24
- type: PropType<ETextAlign>;
25
- };
26
- size: {
27
- type: PropType<ETypographySizes>;
28
- };
29
- kind: {
30
- type: PropType<EColors>;
31
- };
32
- weight: {
33
- type: PropType<ETextWeight>;
34
- };
35
- lineHeight: {
36
- type: PropType<boolean>;
37
- };
38
- textTransform: {
39
- type: PropType<ETextTransform>;
40
- };
41
- underline: {
42
- type: PropType<boolean>;
43
- };
44
- is: {
45
- type: PropType<string | Component>;
46
- };
47
- }>>, never>;
48
- $attrs: {
49
- [x: string]: unknown;
50
- };
51
- $refs: {
52
- [x: string]: unknown;
53
- };
54
- $slots: Readonly<{
55
- [name: string]: Slot<any> | undefined;
56
- }>;
57
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
58
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
59
- $emit: (event: string, ...args: any[]) => void;
60
- $el: any;
61
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
62
- align: {
63
- type: PropType<ETextAlign>;
64
- };
65
- size: {
66
- type: PropType<ETypographySizes>;
67
- };
68
- kind: {
69
- type: PropType<EColors>;
70
- };
71
- weight: {
72
- type: PropType<ETextWeight>;
73
- };
74
- lineHeight: {
75
- type: PropType<boolean>;
76
- };
77
- textTransform: {
78
- type: PropType<ETextTransform>;
79
- };
80
- underline: {
81
- type: PropType<boolean>;
82
- };
83
- is: {
84
- type: PropType<string | Component>;
85
- };
86
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
87
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
88
- created?: ((() => void) | (() => void)[]) | undefined;
89
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
90
- mounted?: ((() => void) | (() => void)[]) | undefined;
91
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
92
- updated?: ((() => void) | (() => void)[]) | undefined;
93
- activated?: ((() => void) | (() => void)[]) | undefined;
94
- deactivated?: ((() => void) | (() => void)[]) | undefined;
95
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
96
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
97
- destroyed?: ((() => void) | (() => void)[]) | undefined;
98
- unmounted?: ((() => void) | (() => void)[]) | undefined;
99
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
100
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
101
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
102
- };
103
- $forceUpdate: () => void;
104
- $nextTick: typeof nextTick;
105
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
106
- } & Readonly<ExtractPropTypes<{
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
107
11
  align: {
108
12
  type: PropType<ETextAlign>;
109
13
  };
@@ -128,7 +32,64 @@ declare const deprecatedDefault: {
128
32
  is: {
129
33
  type: PropType<string | Component>;
130
34
  };
131
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
35
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
36
+ align: {
37
+ type: PropType<ETextAlign>;
38
+ };
39
+ size: {
40
+ type: PropType<ETypographySizes>;
41
+ };
42
+ kind: {
43
+ type: PropType<EColors>;
44
+ };
45
+ weight: {
46
+ type: PropType<ETextWeight>;
47
+ };
48
+ lineHeight: {
49
+ type: PropType<boolean>;
50
+ };
51
+ textTransform: {
52
+ type: PropType<ETextTransform>;
53
+ };
54
+ underline: {
55
+ type: PropType<boolean>;
56
+ };
57
+ is: {
58
+ type: PropType<string | Component>;
59
+ };
60
+ }>>, {}, true, {}, {}, {
61
+ P: {};
62
+ B: {};
63
+ D: {};
64
+ C: {};
65
+ M: {};
66
+ Defaults: {};
67
+ }, Readonly<ExtractPropTypes<{
68
+ align: {
69
+ type: PropType<ETextAlign>;
70
+ };
71
+ size: {
72
+ type: PropType<ETypographySizes>;
73
+ };
74
+ kind: {
75
+ type: PropType<EColors>;
76
+ };
77
+ weight: {
78
+ type: PropType<ETextWeight>;
79
+ };
80
+ lineHeight: {
81
+ type: PropType<boolean>;
82
+ };
83
+ textTransform: {
84
+ type: PropType<ETextTransform>;
85
+ };
86
+ underline: {
87
+ type: PropType<boolean>;
88
+ };
89
+ is: {
90
+ type: PropType<string | Component>;
91
+ };
92
+ }>>, {}, {}, {}, {}, {}>;
132
93
  __isFragment?: undefined;
133
94
  __isTeleport?: undefined;
134
95
  __isSuspense?: undefined;
@@ -11,10 +11,10 @@ const m = /* @__PURE__ */ R({
11
11
  lineHeight: { type: Boolean },
12
12
  textTransform: {},
13
13
  underline: { type: Boolean },
14
- is: { type: [String, Object, Function] }
14
+ is: {}
15
15
  },
16
16
  setup(T) {
17
- return (e, p) => (o(), A(s(e.is || "p"), {
17
+ return (e, C) => (o(), A(s(e.is || "p"), {
18
18
  class: k(["ui-typography", [
19
19
  e.size === n(i).MD && "text-md",
20
20
  e.size === n(i).XXS && "text-xxs",
@@ -1,74 +1,40 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiVerificationInput from "./ui-verification-input.vue";
3
3
  export { UiVerificationInput };
4
4
  /**
5
5
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
6
6
  */
7
7
  declare const deprecatedDefault: {
8
- new (...args: any[]): {
9
- $: ComponentInternalInstance;
10
- $data: {};
11
- $props: Partial<{}> & Omit<{
12
- readonly inputsCount: number;
13
- readonly type?: "text" | undefined;
14
- onOnFiled?: ((...args: any[]) => any) | undefined;
15
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
16
- inputsCount: {
17
- type: PropType<number>;
18
- required: true;
19
- };
20
- type: {
21
- type: PropType<"text">;
22
- };
23
- }>> & {
24
- onOnFiled?: ((...args: any[]) => any) | undefined;
25
- }, never>;
26
- $attrs: {
27
- [x: string]: unknown;
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
9
+ inputsCount: {
10
+ type: PropType<number>;
11
+ required: true;
28
12
  };
29
- $refs: {
30
- [x: string]: unknown;
13
+ type: {
14
+ type: PropType<"text">;
31
15
  };
32
- $slots: Readonly<{
33
- [name: string]: Slot<any> | undefined;
34
- }>;
35
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
36
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
37
- $emit: (event: "onFiled", ...args: any[]) => void;
38
- $el: any;
39
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
40
- inputsCount: {
41
- type: PropType<number>;
42
- required: true;
43
- };
44
- type: {
45
- type: PropType<"text">;
46
- };
47
- }>> & {
48
- onOnFiled?: ((...args: any[]) => any) | undefined;
49
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
50
- onFiled: (...args: any[]) => void;
51
- }, string, {}, {}, string, {}> & {
52
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53
- created?: ((() => void) | (() => void)[]) | undefined;
54
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
55
- mounted?: ((() => void) | (() => void)[]) | undefined;
56
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
57
- updated?: ((() => void) | (() => void)[]) | undefined;
58
- activated?: ((() => void) | (() => void)[]) | undefined;
59
- deactivated?: ((() => void) | (() => void)[]) | undefined;
60
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
61
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
62
- destroyed?: ((() => void) | (() => void)[]) | undefined;
63
- unmounted?: ((() => void) | (() => void)[]) | undefined;
64
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
65
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
66
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
16
+ }>> & {
17
+ onOnFiled?: ((...args: any[]) => any) | undefined;
18
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
19
+ onFiled: (...args: any[]) => void;
20
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
21
+ inputsCount: {
22
+ type: PropType<number>;
23
+ required: true;
67
24
  };
68
- $forceUpdate: () => void;
69
- $nextTick: typeof nextTick;
70
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
71
- } & Readonly<ExtractPropTypes<{
25
+ type: {
26
+ type: PropType<"text">;
27
+ };
28
+ }>> & {
29
+ onOnFiled?: ((...args: any[]) => any) | undefined;
30
+ }, {}, true, {}, {}, {
31
+ P: {};
32
+ B: {};
33
+ D: {};
34
+ C: {};
35
+ M: {};
36
+ Defaults: {};
37
+ }, Readonly<ExtractPropTypes<{
72
38
  inputsCount: {
73
39
  type: PropType<number>;
74
40
  required: true;
@@ -78,7 +44,7 @@ declare const deprecatedDefault: {
78
44
  };
79
45
  }>> & {
80
46
  onOnFiled?: ((...args: any[]) => any) | undefined;
81
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
47
+ }, {}, {}, {}, {}, {}>;
82
48
  __isFragment?: undefined;
83
49
  __isTeleport?: undefined;
84
50
  __isSuspense?: undefined;
@@ -1,5 +1,6 @@
1
1
  (function(){"use strict";try{if(typeof document<"u"){var t=document.createElement("style");t.appendChild(document.createTextNode(".inputs[data-v-c13dfde7]{grid-template-columns:repeat(auto-fill,38px);grid-gap:24px}.inputs .input-wrapper[data-v-c13dfde7]{position:relative;height:58px}.inputs input[data-v-c13dfde7]{width:100%;border:none;text-align:center;font-size:36px;font-weight:700;outline:none}.inputs .input-wrapper .bottom-wrapper[data-v-c13dfde7]{position:absolute;bottom:0;width:100%;height:5px;background-color:var(--color-secondary-300);border-radius:3px;transition:background-color .3s ease-in-out}.inputs input:focus~.bottom-wrapper[data-v-c13dfde7]{background-color:var(--color-primary)}.inputs input[data-v-c13dfde7]::-moz-placeholder{font-size:55px;color:var(--color-secondary-300);opacity:1;transform:scale(1);-moz-transition:opacity .3s ease-in-out,transform .3s ease-in-out;transition:opacity .3s ease-in-out,transform .3s ease-in-out}.inputs input[data-v-c13dfde7]::placeholder{font-size:55px;color:var(--color-secondary-300);opacity:1;transform:scale(1);transition:opacity .3s ease-in-out,transform .3s ease-in-out}.inputs input[data-v-c13dfde7]:focus::-moz-placeholder{opacity:0;transform:scale(0)}.inputs input[data-v-c13dfde7]:focus::placeholder{opacity:0;transform:scale(0)}")),document.head.appendChild(t)}}catch(o){console.error("vite-plugin-css-injected-by-js",o)}})();
2
2
  import o from "./ui-verification-input.vue2.js";
3
+
3
4
  import t from "../../_virtual/_plugin-vue_export-helper.js";
4
5
  const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-c13dfde7"]]);
5
6
  export {
package/index.js CHANGED
@@ -40,6 +40,7 @@ import * as D from "./components/ui-verification-input/index.js";
40
40
  import { default as v } from "./components/ui-alert/ui-alert.vue.js";
41
41
  import { default as H } from "./components/ui-badge/ui-badge.vue.js";
42
42
  import { default as Q } from "./components/ui-ber-rank/ui-ber-rank.vue.js";
43
+
43
44
  import { default as Y } from "./components/ui-button/ui-button.vue.js";
44
45
  import { default as _ } from "./components/ui-card-cta/ui-card-cta.vue.js";
45
46
  import { default as ro } from "./components/ui-card-simple/ui-card-simple.vue.js";
@@ -48,14 +49,16 @@ import { default as ao } from "./components/ui-icon/ui-icon.vue.js";
48
49
  import { default as po } from "./components/ui-input/ui-input.vue.js";
49
50
  import { default as so } from "./components/ui-list-item/ui-list-item.vue.js";
50
51
  import { default as no } from "./components/ui-notification-badge/ui-notification-badge.vue.js";
51
- /* empty css */import { default as Uo } from "./components/ui-order-card/ui-order-card.vue.js";
52
+ /* empty css */
53
+ import { default as Uo } from "./components/ui-order-card/ui-order-card.vue.js";
52
54
  import { default as $o } from "./components/ui-plain-radio/ui-plain-radio.vue.js";
53
55
  import { default as Eo } from "./components/ui-progress/ui-progress.vue.js";
54
56
  import { default as To } from "./components/ui-radio-compact/ui-radio-compact.vue.js";
55
57
  import { default as Co } from "./components/ui-radio-fancy/ui-radio-fancy.vue.js";
56
58
  import { default as So } from "./components/ui-result-card-range/ui-result-card-range.vue.js";
57
59
  import { default as Bo } from "./components/ui-ripple/ui-ripple.vue.js";
58
- /* empty css */import { default as ko } from "./components/ui-select/ui-select.vue.js";
60
+ /* empty css */
61
+ import { default as ko } from "./components/ui-select/ui-select.vue.js";
59
62
  import { default as zo } from "./components/ui-skeleton/ui-skeleton.vue.js";
60
63
  import { default as Ao } from "./components/ui-snackbar/ui-snackbar.vue.js";
61
64
  import { default as Lo } from "./components/ui-table/ui-table-cell/ui-table-cell.vue.js";
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "bonkers-ui",
3
- "version": "v1.0.62",
3
+ "version": "v1.0.64",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "storybook": "storybook dev -p 6006",
7
7
  "build-storybook": "storybook build",
8
8
  "build": "vue-tsc && vite build",
9
- "postbuild": " node postbuild.js",
10
9
  "lint:script": "eslint --fix './src/**/*.{ts,tsx,vue}'",
11
10
  "lint:style": "stylelint --fix './src/**/*.{css,scss,vue}'",
12
11
  "lint:markup": "vue-tsc --noEmit",
@@ -17,13 +16,8 @@
17
16
  "i": "bun install --frozen-lockfile"
18
17
  },
19
18
  "dependencies": {
20
- "bun-types": "^1.0.11",
21
- "eslint-plugin-tailwindcss": "^3.13.0",
22
- "shelljs": "^0.8.5",
23
- "storybook-addon-designs": "^6.3.1",
24
- "tailwindcss": "^3.3.5",
25
- "vue": "^3.0.0",
26
- "vue-router": "^4.2.5"
19
+ "tailwindcss": "^3.4.0",
20
+ "vue": "^3.3.13"
27
21
  },
28
22
  "peerDependencies": {
29
23
  "@fortawesome/fontawesome-svg-core": "^6.4.2",
@@ -31,50 +25,53 @@
31
25
  "@fortawesome/free-regular-svg-icons": "^6.4.2",
32
26
  "@fortawesome/free-solid-svg-icons": "^6.4.2",
33
27
  "@fortawesome/vue-fontawesome": "^3.0.5",
28
+ "tailwindcss": "^3.0.0",
34
29
  "vue": "^3.0.0"
35
30
  },
36
31
  "devDependencies": {
37
- "@rollup/plugin-typescript": "^11.1.5",
38
- "@storybook/addon-essentials": "^7.5.3",
39
- "@storybook/addon-links": "^7.5.3",
40
- "@storybook/addon-mdx-gfm": "^7.5.3",
41
- "@storybook/vue3": "^7.5.3",
42
- "@storybook/vue3-vite": "^7.5.3",
32
+ "vue-router": "^4.2.5",
33
+ "bun-types": "^1.0.18",
34
+ "eslint-plugin-tailwindcss": "^3.13.0",
35
+ "shelljs": "^0.8.5",
36
+ "@storybook/addon-essentials": "^7.6.6",
37
+ "@storybook/addon-links": "^7.6.6",
38
+ "@storybook/vue3": "^7.6.6",
39
+ "@storybook/vue3-vite": "^7.6.6",
43
40
  "@types/glob": "^8.1.0",
44
- "@typescript-eslint/eslint-plugin": "^6.10.0",
45
- "@typescript-eslint/parser": "^6.10.0",
46
- "@vitejs/plugin-vue": "^4.4.1",
41
+ "@typescript-eslint/eslint-plugin": "^6.15.0",
42
+ "@typescript-eslint/parser": "^6.15.0",
43
+ "@vitejs/plugin-vue": "^4.5.2",
47
44
  "@vue/eslint-config-typescript": "^12.0.0",
48
- "@vue/test-utils": "^2.4.1",
45
+ "@vue/test-utils": "^2.4.3",
49
46
  "autoprefixer": "^10.4.16",
50
- "eslint": "8.53.0",
47
+ "eslint": "8.56.0",
51
48
  "eslint-plugin-storybook": "^0.6.15",
52
- "eslint-plugin-vue": "^9.18.1",
53
- "gh-pages": "^6.0.0",
49
+ "eslint-plugin-vue": "^9.19.2",
50
+ "gh-pages": "^6.1.0",
54
51
  "husky": "4.3.8",
55
- "jsdom": "^22.1.0",
56
- "lint-staged": "^15.0.2",
57
- "postcss": "^8.4.31",
58
- "postcss-cli": "^10.1.0",
59
- "postcss-html": "^1.4.1",
52
+ "jsdom": "^23.0.1",
53
+ "lint-staged": "^15.2.0",
54
+ "postcss": "^8.4.32",
55
+ "postcss-cli": "^11.0.0",
56
+ "postcss-html": "^1.5.0",
60
57
  "react": "^18.2.0",
61
58
  "react-dom": "^18.2.0",
62
- "storybook": "^7.5.3",
59
+ "storybook": "^7.6.6",
63
60
  "storybook-tailwind-dark-mode": "^1.0.22",
64
- "stylelint": "^15.11.0",
65
- "stylelint-config-recommended": "^13.0.0",
61
+ "stylelint": "15.11.0",
62
+ "stylelint-config-recommended": "^14.0.0",
66
63
  "stylelint-config-recommended-vue": "^1.5.0",
67
- "stylelint-config-standard": "^34.0.0",
68
- "typescript": "^5.2.2",
69
- "vite": "^4.5.0",
64
+ "stylelint-config-standard": "^35.0.0",
65
+ "typescript": "^5.3.3",
66
+ "vite": "^5.0.10",
70
67
  "vite-plugin-css-injected-by-js": "^3.3.0",
71
- "vite-plugin-dts": "^3.6.3",
72
- "vite-plugin-static-copy": "^0.17.0",
73
- "vite-tsconfig-paths": "^4.2.1",
74
- "vitest": "^0.34.6",
68
+ "vite-plugin-dts": "^3.6.4",
69
+ "vite-plugin-static-copy": "^1.0.0",
70
+ "vite-tsconfig-paths": "^4.2.2",
71
+ "vitest": "^1.1.0",
75
72
  "vue-eslint-parser": "^9.3.2",
76
73
  "vue-loader": "^17.3.1",
77
- "vue-tsc": "^1.8.22"
74
+ "vue-tsc": "^1.8.25"
78
75
  },
79
76
  "lint-staged": {
80
77
  "*.{ts,tsx,vue}": [
@@ -107,5 +104,8 @@
107
104
  "types": "./components/*/index.d.ts",
108
105
  "import": "./components/*/index.js"
109
106
  }
107
+ },
108
+ "overrides": {
109
+ "rollup": "npm:@rollup/wasm-node"
110
110
  }
111
111
  }
package/types.js CHANGED
@@ -15,26 +15,32 @@ import { EColors as w } from "./_types/colors.js";
15
15
  import { EAlertTypes as C } from "./components/ui-alert/_types.js";
16
16
  import { EBadgeKind as J, EBadgeSize as M } from "./components/ui-badge/_typings.js";
17
17
  import "./components/ui-ber-rank/ui-ber-rank.vue.js";
18
+
18
19
  import { EBerSize as j } from "./components/ui-ber-rank/_types.js";
19
20
  import "./components/ui-button/ui-button.vue.js";
20
21
  import { EButtonSizes as v, EButtonTypes as F } from "./components/ui-button/_typings.js";
21
22
  import { ERadioSizes as H } from "./components/ui-radio-fancy/_typings.js";
22
23
  import { ESkeletonKind as P } from "./components/ui-skeleton/_typings.js";
23
24
  import "./components/ui-icon-wrapper/ui-icon-wrapper.vue2.js";
24
- /* empty css */import { EIconWrapperSizes as U, EIconWrapperTypes as V } from "./components/ui-icon-wrapper/_typings.js";
25
+ /* empty css */
26
+ import { EIconWrapperSizes as U, EIconWrapperTypes as V } from "./components/ui-icon-wrapper/_typings.js";
25
27
  import "./components/ui-input/ui-input.vue.js";
26
28
  import { EAutocomplete as Y, EInputKinds as Z, EInputType as _ } from "./components/ui-input/_typings.js";
27
29
  import "./components/ui-list-item/ui-list-item.vue.js";
28
30
  import { EListItemSize as oo, EListItemSpacing as ro, EListItemTypes as to } from "./components/ui-list-item/_types.js";
29
31
  import "./components/ui-modal/ui-modal.vue2.js";
30
- /* empty css */import { EModalSizes as eo } from "./components/ui-modal/_typings.js";
32
+ /* empty css */
33
+ import { EModalSizes as eo } from "./components/ui-modal/_typings.js";
31
34
  import "./components/ui-notification-badge/ui-notification-badge.vue.js";
32
- /* empty css */import { EBadgeOrigin as mo } from "./components/ui-notification-badge/_types.js";
35
+ /* empty css */
36
+ import { EBadgeOrigin as mo } from "./components/ui-notification-badge/_types.js";
33
37
  import "./components/ui-snackbar/ui-snackbar.vue.js";
34
38
  import { ESnackbarTypes as xo } from "./components/ui-snackbar/_types.js";
35
39
  import "./components/ui-table/ui-table.vue2.js";
36
- /* empty css */import { ERowKind as no } from "./components/ui-table/ui-table-row/_typings.js";
37
- /* empty css */import { ETableKind as ao } from "./components/ui-table/_types.js";
40
+ /* empty css */
41
+ import { ERowKind as no } from "./components/ui-table/ui-table-row/_typings.js";
42
+ /* empty css */
43
+ import { ETableKind as ao } from "./components/ui-table/_types.js";
38
44
  import { EJustify as So } from "./_types/align.js";
39
45
  export {
40
46
  C as EAlertTypes,