@modul/mbui 0.0.3-beta-pv-52770-fix-7cbf1d45 → 0.0.3

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 (33) hide show
  1. package/dist/@/config/button.d.ts +90 -0
  2. package/dist/@/config/button.js +92 -0
  3. package/dist/@/config/button.js.map +1 -0
  4. package/dist/@/config/index.d.ts +137 -0
  5. package/dist/@/config/index.js +99 -0
  6. package/dist/@/config/index.js.map +1 -0
  7. package/dist/Base/Links/TextLink.d.ts +4 -0
  8. package/dist/Base/Links/TextLink.js +9 -0
  9. package/dist/Base/Links/TextLink.js.map +1 -0
  10. package/dist/Base/Links/index.d.ts +2 -0
  11. package/dist/Base/Links/index.js +7 -0
  12. package/dist/Base/Links/index.js.map +1 -0
  13. package/dist/components/BottonNavigation/BottonNavigation.d.ts +6 -0
  14. package/dist/components/{ButtonNavigation/ButtonNavigation.js → BottonNavigation/BottonNavigation.js} +5 -5
  15. package/dist/components/{ButtonNavigation/ButtonNavigation.js.map → BottonNavigation/BottonNavigation.js.map} +1 -1
  16. package/dist/components/BottonNavigation/index.d.ts +3 -0
  17. package/dist/components/BottonNavigation/index.js +3 -0
  18. package/dist/components/BottonNavigation/index.js.map +1 -0
  19. package/dist/components/SvgIcon/index.d.ts +1 -0
  20. package/dist/components/SvgIcon/index.js +6 -0
  21. package/dist/components/SvgIcon/index.js.map +1 -0
  22. package/dist/index.d.ts +3 -3
  23. package/dist/index.js +1 -5
  24. package/dist/index.js.map +1 -1
  25. package/package.json +1 -1
  26. package/src/components/{ButtonNavigation/ButtonNavigation.tsx → BottonNavigation/BottonNavigation.tsx} +4 -4
  27. package/src/components/BottonNavigation/index.ts +7 -0
  28. package/src/index.ts +2 -4
  29. package/dist/components/ButtonNavigation/ButtonNavigation.d.ts +0 -6
  30. package/dist/components/ButtonNavigation/index.d.ts +0 -3
  31. package/dist/components/ButtonNavigation/index.js +0 -7
  32. package/dist/components/ButtonNavigation/index.js.map +0 -1
  33. package/src/components/ButtonNavigation/index.ts +0 -6
@@ -0,0 +1,90 @@
1
+ declare const _default: {
2
+ textColor: {
3
+ btn: {
4
+ primary: {
5
+ DEFAULT: string;
6
+ outline: {
7
+ DEFAULT: string;
8
+ hover: string;
9
+ focus: string;
10
+ active: string;
11
+ };
12
+ };
13
+ secondary: string;
14
+ success: string;
15
+ ghost: string;
16
+ outline: {
17
+ DEFAULT: string;
18
+ hover: string;
19
+ focus: string;
20
+ active: string;
21
+ };
22
+ };
23
+ };
24
+ backgroundColor: {
25
+ btn: {
26
+ primary: {
27
+ DEFAULT: string;
28
+ hover: string;
29
+ focus: string;
30
+ active: string;
31
+ };
32
+ secondary: {
33
+ DEFAULT: string;
34
+ hover: string;
35
+ focus: string;
36
+ active: string;
37
+ };
38
+ success: {
39
+ DEFAULT: string;
40
+ hover: string;
41
+ focus: string;
42
+ active: string;
43
+ };
44
+ ghost: {
45
+ DEFAULT: string;
46
+ hover: string;
47
+ focus: string;
48
+ active: string;
49
+ };
50
+ };
51
+ };
52
+ borderColor: {
53
+ btn: {
54
+ primary: {
55
+ DEFAULT: string;
56
+ hover: string;
57
+ focus: string;
58
+ active: string;
59
+ outline: {
60
+ DEFAULT: string;
61
+ hover: string;
62
+ focus: string;
63
+ active: string;
64
+ };
65
+ };
66
+ secondary: {
67
+ DEFAULT: string;
68
+ hover: string;
69
+ focus: string;
70
+ active: string;
71
+ };
72
+ success: {
73
+ DEFAULT: string;
74
+ hover: string;
75
+ focus: string;
76
+ active: string;
77
+ };
78
+ ghost: {
79
+ DEFAULT: string;
80
+ hover: string;
81
+ focus: string;
82
+ active: string;
83
+ };
84
+ outline: {
85
+ DEFAULT: string;
86
+ };
87
+ };
88
+ };
89
+ };
90
+ export default _default;
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ textColor: {
5
+ btn: {
6
+ primary: {
7
+ DEFAULT: 'var(--btn-primary)',
8
+ outline: {
9
+ DEFAULT: 'var(--btn-primary-bg)',
10
+ hover: 'var(--btn-primary-hover-bg)',
11
+ focus: 'var(var(--btn-primary-focus-bg)',
12
+ active: 'var(--btn-primary-active-bg)',
13
+ }
14
+ },
15
+ secondary: 'var(--btn-secondary)',
16
+ success: 'var(--btn-success)',
17
+ ghost: 'var(--btn-ghost)',
18
+ outline: {
19
+ DEFAULT: 'var(--btn-ghost)',
20
+ hover: 'var(--btn-ghost-hover-bg)',
21
+ focus: 'var(var(--btn-ghost-focus-bg)',
22
+ active: 'var(--btn-ghost-active-bg)',
23
+ }
24
+ }
25
+ },
26
+ backgroundColor: {
27
+ btn: {
28
+ primary: {
29
+ DEFAULT: 'var(--btn-primary-bg)',
30
+ hover: 'var(--btn-primary-hover-bg)',
31
+ focus: 'var(var(--btn-primary-focus-bg)',
32
+ active: 'var(--btn-primary-active-bg)',
33
+ },
34
+ secondary: {
35
+ DEFAULT: 'var(--btn-secondary-bg)',
36
+ hover: 'var(--btn-secondary-hover-bg)',
37
+ focus: 'var(var(--btn-secondary-focus-bg)',
38
+ active: 'var(--btn-secondary-active-bg)',
39
+ },
40
+ success: {
41
+ DEFAULT: 'var(--btn-success-bg)',
42
+ hover: 'var(--btn-success-hover-bg)',
43
+ focus: 'var(var(--btn-success-focus-bg)',
44
+ active: 'var(--btn-success-active-bg)',
45
+ },
46
+ ghost: {
47
+ DEFAULT: 'var(--btn-ghost-bg)',
48
+ hover: 'var(--btn-ghost-hover-bg)',
49
+ focus: 'var(var(--btn-ghost-focus-bg)',
50
+ active: 'var(--btn-ghost-active-bg)',
51
+ }
52
+ }
53
+ },
54
+ borderColor: {
55
+ btn: {
56
+ primary: {
57
+ DEFAULT: 'var(--btn-primary-bg)',
58
+ hover: 'var(--btn-primary-hover-bg)',
59
+ focus: 'var(var(--btn-primary-focus-bg)',
60
+ active: 'var(--btn-primary-active-bg)',
61
+ outline: {
62
+ DEFAULT: 'var(--btn-primary-bg)',
63
+ hover: 'var(--btn-primary-hover-bg)',
64
+ focus: 'var(var(--btn-primary-focus-bg)',
65
+ active: 'var(--btn-primary-active-bg)',
66
+ }
67
+ },
68
+ secondary: {
69
+ DEFAULT: 'var(--btn-secondary-bg)',
70
+ hover: 'var(--btn-secondary-hover-bg)',
71
+ focus: 'var(var(--btn-secondary-focus-bg)',
72
+ active: 'var(--btn-secondary-active-bg)',
73
+ },
74
+ success: {
75
+ DEFAULT: 'var(--btn-success-bg)',
76
+ hover: 'var(--btn-success-hover-bg)',
77
+ focus: 'var(var(--btn-success-focus-bg)',
78
+ active: 'var(--btn-success-active-bg)',
79
+ },
80
+ ghost: {
81
+ DEFAULT: 'var(--btn-ghost-bg)',
82
+ hover: 'var(--btn-ghost-hover-bg)',
83
+ focus: 'var(var(--btn-ghost-focus-bg)',
84
+ active: 'var(--btn-ghost-active-bg)',
85
+ },
86
+ outline: {
87
+ DEFAULT: 'var(--btn-ghost)',
88
+ }
89
+ }
90
+ }
91
+ };
92
+ //# sourceMappingURL=button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button.js","sourceRoot":"","sources":["../../../src/@/config/button.ts"],"names":[],"mappings":";;AAAA,kBAAe;IACd,SAAS,EAAE;QACV,GAAG,EAAE;YACJ,OAAO,EAAE;gBACR,OAAO,EAAE,oBAAoB;gBAC7B,OAAO,EAAE;oBACR,OAAO,EAAE,uBAAuB;oBAChC,KAAK,EAAE,6BAA6B;oBACpC,KAAK,EAAE,iCAAiC;oBACxC,MAAM,EAAE,8BAA8B;iBACtC;aACD;YACD,SAAS,EAAE,sBAAsB;YACjC,OAAO,EAAE,oBAAoB;YAC7B,KAAK,EAAE,kBAAkB;YACzB,OAAO,EAAE;gBACR,OAAO,EAAE,kBAAkB;gBAC3B,KAAK,EAAE,2BAA2B;gBAClC,KAAK,EAAE,+BAA+B;gBACtC,MAAM,EAAE,4BAA4B;aACpC;SACD;KACD;IACD,eAAe,EAAE;QAChB,GAAG,EAAE;YACJ,OAAO,EAAE;gBACR,OAAO,EAAE,uBAAuB;gBAChC,KAAK,EAAE,6BAA6B;gBACpC,KAAK,EAAE,iCAAiC;gBACxC,MAAM,EAAE,8BAA8B;aACtC;YACD,SAAS,EAAE;gBACV,OAAO,EAAE,yBAAyB;gBAClC,KAAK,EAAE,+BAA+B;gBACtC,KAAK,EAAE,mCAAmC;gBAC1C,MAAM,EAAE,gCAAgC;aACxC;YACD,OAAO,EAAE;gBACR,OAAO,EAAE,uBAAuB;gBAChC,KAAK,EAAE,6BAA6B;gBACpC,KAAK,EAAE,iCAAiC;gBACxC,MAAM,EAAE,8BAA8B;aACtC;YACD,KAAK,EAAE;gBACN,OAAO,EAAE,qBAAqB;gBAC9B,KAAK,EAAE,2BAA2B;gBAClC,KAAK,EAAE,+BAA+B;gBACtC,MAAM,EAAE,4BAA4B;aACpC;SACD;KACD;IACD,WAAW,EAAE;QACZ,GAAG,EAAE;YACJ,OAAO,EAAE;gBACR,OAAO,EAAE,uBAAuB;gBAChC,KAAK,EAAE,6BAA6B;gBACpC,KAAK,EAAE,iCAAiC;gBACxC,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EAAE;oBACR,OAAO,EAAE,uBAAuB;oBAChC,KAAK,EAAE,6BAA6B;oBACpC,KAAK,EAAE,iCAAiC;oBACxC,MAAM,EAAE,8BAA8B;iBACtC;aACD;YACD,SAAS,EAAE;gBACV,OAAO,EAAE,yBAAyB;gBAClC,KAAK,EAAE,+BAA+B;gBACtC,KAAK,EAAE,mCAAmC;gBAC1C,MAAM,EAAE,gCAAgC;aACxC;YACD,OAAO,EAAE;gBACR,OAAO,EAAE,uBAAuB;gBAChC,KAAK,EAAE,6BAA6B;gBACpC,KAAK,EAAE,iCAAiC;gBACxC,MAAM,EAAE,8BAA8B;aACtC;YACD,KAAK,EAAE;gBACN,OAAO,EAAE,qBAAqB;gBAC9B,KAAK,EAAE,2BAA2B;gBAClC,KAAK,EAAE,+BAA+B;gBACtC,MAAM,EAAE,4BAA4B;aACpC;YACD,OAAO,EAAE;gBACR,OAAO,EAAE,kBAAkB;aAC3B;SACD;KACD;CACD,CAAA"}
@@ -0,0 +1,137 @@
1
+ declare const _default: {
2
+ container: {};
3
+ extend: {
4
+ keyframes: {
5
+ 'accordion-down': {
6
+ from: {
7
+ height: string;
8
+ };
9
+ to: {
10
+ height: string;
11
+ };
12
+ };
13
+ 'accordion-up': {
14
+ from: {
15
+ height: string;
16
+ };
17
+ to: {
18
+ height: string;
19
+ };
20
+ };
21
+ };
22
+ animation: {
23
+ 'accordion-down': string;
24
+ 'accordion-up': string;
25
+ };
26
+ textColor: {
27
+ btn: {
28
+ primary: {
29
+ DEFAULT: string;
30
+ outline: {
31
+ DEFAULT: string;
32
+ hover: string;
33
+ focus: string;
34
+ active: string;
35
+ };
36
+ };
37
+ secondary: string;
38
+ success: string;
39
+ ghost: string;
40
+ outline: {
41
+ DEFAULT: string;
42
+ hover: string;
43
+ focus: string;
44
+ active: string;
45
+ };
46
+ };
47
+ };
48
+ backgroundColor: {
49
+ btn: {
50
+ primary: {
51
+ DEFAULT: string;
52
+ hover: string;
53
+ focus: string;
54
+ active: string;
55
+ };
56
+ secondary: {
57
+ DEFAULT: string;
58
+ hover: string;
59
+ focus: string;
60
+ active: string;
61
+ };
62
+ success: {
63
+ DEFAULT: string;
64
+ hover: string;
65
+ focus: string;
66
+ active: string;
67
+ };
68
+ ghost: {
69
+ DEFAULT: string;
70
+ hover: string;
71
+ focus: string;
72
+ active: string;
73
+ };
74
+ };
75
+ };
76
+ borderColor: {
77
+ btn: {
78
+ primary: {
79
+ DEFAULT: string;
80
+ hover: string;
81
+ focus: string;
82
+ active: string;
83
+ outline: {
84
+ DEFAULT: string;
85
+ hover: string;
86
+ focus: string;
87
+ active: string;
88
+ };
89
+ };
90
+ secondary: {
91
+ DEFAULT: string;
92
+ hover: string;
93
+ focus: string;
94
+ active: string;
95
+ };
96
+ success: {
97
+ DEFAULT: string;
98
+ hover: string;
99
+ focus: string;
100
+ active: string;
101
+ };
102
+ ghost: {
103
+ DEFAULT: string;
104
+ hover: string;
105
+ focus: string;
106
+ active: string;
107
+ };
108
+ outline: {
109
+ DEFAULT: string;
110
+ };
111
+ };
112
+ };
113
+ colors: {
114
+ primary: {
115
+ DEFAULT: string;
116
+ hover: string;
117
+ focus: string;
118
+ active: string;
119
+ };
120
+ success: {
121
+ DEFAULT: string;
122
+ hover: string;
123
+ focus: string;
124
+ active: string;
125
+ };
126
+ secondary: {
127
+ DEFAULT: string;
128
+ hover: string;
129
+ focus: string;
130
+ active: string;
131
+ };
132
+ transparent: string;
133
+ current: string;
134
+ };
135
+ };
136
+ };
137
+ export default _default;
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const button_1 = (0, tslib_1.__importDefault)(require("./button"));
5
+ exports.default = {
6
+ container: {},
7
+ extend: {
8
+ colors: {
9
+ primary: {
10
+ DEFAULT: 'var(--primary)',
11
+ hover: 'var(--primary-hover)',
12
+ focus: 'var(var(--primary-focus)',
13
+ active: 'var(--primary-active)',
14
+ },
15
+ success: {
16
+ DEFAULT: 'var(--success)',
17
+ hover: 'var(--success-hover)',
18
+ focus: 'var(var(--success-focus)',
19
+ active: 'var(--success-active)',
20
+ },
21
+ secondary: {
22
+ DEFAULT: 'var(--secondary)',
23
+ hover: 'var(--secondary-hover)',
24
+ focus: 'var(var(--secondary-focus)',
25
+ active: 'var(--secondary-active)',
26
+ },
27
+ transparent: 'transparent',
28
+ current: 'currentColor',
29
+ },
30
+ ...button_1.default,
31
+ // textColor: {
32
+ // base: 'var(--text-cl)',
33
+ // 'btn-primary': 'var(--btn-primary-cl)',
34
+ // 'btn-success': 'var(--btn-success-cl)',
35
+ // primary: 'var(--btn-txt-primary)',
36
+ // 'primary-hover': 'var(--btn-txt-primary-hover)',
37
+ // 'primary-focus': 'var(--btn-txt-primary-focus)',
38
+ // 'primary-active': 'var(--btn-txt-primary-active)',
39
+ // },
40
+ // border: {
41
+ // 'btn-primary-outline': '2px solid red'
42
+ // },
43
+ // colors: {
44
+ // border: 'hsl(var(--border))',
45
+ // input: 'hsl(var(--input))',
46
+ // ring: 'hsl(var(--ring))',
47
+ // background: 'hsl(var(--background))',
48
+ // foreground: 'hsl(var(--foreground))',
49
+ // primary: {
50
+ // DEFAULT: 'hsl(var(--primary))',
51
+ // foreground: 'hsl(var(--primary-foreground))',
52
+ // },
53
+ // secondary: {
54
+ // DEFAULT: 'hsl(var(--secondary))',
55
+ // foreground: 'hsl(var(--secondary-foreground))',
56
+ // },
57
+ // destructive: {
58
+ // DEFAULT: 'hsl(var(--destructive))',
59
+ // foreground: 'hsl(var(--destructive-foreground))',
60
+ // },
61
+ // muted: {
62
+ // DEFAULT: 'hsl(var(--muted))',
63
+ // foreground: 'hsl(var(--muted-foreground))',
64
+ // },
65
+ // accent: {
66
+ // DEFAULT: 'hsl(var(--accent))',
67
+ // foreground: 'hsl(var(--accent-foreground))',
68
+ // },
69
+ // popover: {
70
+ // DEFAULT: 'hsl(var(--popover))',
71
+ // foreground: 'hsl(var(--popover-foreground))',
72
+ // },
73
+ // card: {
74
+ // DEFAULT: 'hsl(var(--card))',
75
+ // foreground: 'hsl(var(--card-foreground))',
76
+ // },
77
+ // },
78
+ // borderRadius: {
79
+ // lg: `var(--radius)`,
80
+ // md: `calc(var(--radius) - 2px)`,
81
+ // sm: 'calc(var(--radius) - 4px)',
82
+ // },
83
+ keyframes: {
84
+ 'accordion-down': {
85
+ from: { height: '0' },
86
+ to: { height: 'var(--radix-accordion-content-height)' },
87
+ },
88
+ 'accordion-up': {
89
+ from: { height: 'var(--radix-accordion-content-height)' },
90
+ to: { height: '0' },
91
+ },
92
+ },
93
+ animation: {
94
+ 'accordion-down': 'accordion-down 0.2s ease-out',
95
+ 'accordion-up': 'accordion-up 0.2s ease-out',
96
+ },
97
+ },
98
+ };
99
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/@/config/index.ts"],"names":[],"mappings":";;;AAAA,mEAA6B;AAE7B,kBAAe;IACb,SAAS,EAAE,EAAE;IACb,MAAM,EAAE;QACP,MAAM,EAAE;YACP,OAAO,EAAE;gBACR,OAAO,EAAE,gBAAgB;gBACzB,KAAK,EAAE,sBAAsB;gBAC7B,KAAK,EAAE,0BAA0B;gBACjC,MAAM,EAAE,uBAAuB;aAC/B;YACD,OAAO,EAAE;gBACR,OAAO,EAAE,gBAAgB;gBACzB,KAAK,EAAE,sBAAsB;gBAC7B,KAAK,EAAE,0BAA0B;gBACjC,MAAM,EAAE,uBAAuB;aAC/B;YACD,SAAS,EAAE;gBACV,OAAO,EAAE,kBAAkB;gBAC3B,KAAK,EAAE,wBAAwB;gBAC/B,KAAK,EAAE,4BAA4B;gBACnC,MAAM,EAAE,yBAAyB;aACjC;YACD,WAAW,EAAE,aAAa;YAC1B,OAAO,EAAE,cAAc;SACvB;QACD,GAAG,gBAAM;QACT,eAAe;QACd,0BAA0B;QAC1B,0CAA0C;QAC1C,0CAA0C;QAC1C,qCAAqC;QACrC,mDAAmD;QACnD,mDAAmD;QACnD,qDAAqD;QACtD,KAAK;QAEL,YAAY;QACZ,0CAA0C;QAC1C,KAAK;QAEL,YAAY;QACZ,iCAAiC;QACjC,+BAA+B;QAC/B,6BAA6B;QAC7B,yCAAyC;QACzC,yCAAyC;QACzC,cAAc;QACd,oCAAoC;QACpC,kDAAkD;QAClD,MAAM;QACN,gBAAgB;QAChB,sCAAsC;QACtC,oDAAoD;QACpD,MAAM;QACN,kBAAkB;QAClB,wCAAwC;QACxC,sDAAsD;QACtD,MAAM;QACN,YAAY;QACZ,kCAAkC;QAClC,gDAAgD;QAChD,MAAM;QACN,aAAa;QACb,mCAAmC;QACnC,iDAAiD;QACjD,MAAM;QACN,cAAc;QACd,oCAAoC;QACpC,kDAAkD;QAClD,MAAM;QACN,WAAW;QACX,iCAAiC;QACjC,+CAA+C;QAC/C,MAAM;QACN,KAAK;QACL,kBAAkB;QAClB,wBAAwB;QACxB,oCAAoC;QACpC,oCAAoC;QACpC,KAAK;QAEL,SAAS,EAAE;YACV,gBAAgB,EAAE;gBACjB,IAAI,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE;gBACrB,EAAE,EAAE,EAAE,MAAM,EAAE,uCAAuC,EAAE;aACvD;YACD,cAAc,EAAE;gBACf,IAAI,EAAE,EAAE,MAAM,EAAE,uCAAuC,EAAE;gBACzD,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE;aACnB;SACD;QACD,SAAS,EAAE;YACV,gBAAgB,EAAE,8BAA8B;YAChD,cAAc,EAAE,4BAA4B;SAC5C;KACD;CACD,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ declare type TextLinkProps = React.HTMLProps<HTMLAnchorElement>;
3
+ declare const TextLink: React.ForwardRefExoticComponent<Omit<TextLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
4
+ export default TextLink;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const react_1 = (0, tslib_1.__importDefault)(require("react"));
5
+ const TextLink = react_1.default.forwardRef(({ children, ...props }, ref) => {
6
+ return (react_1.default.createElement("a", { ref: ref, ...props }, children));
7
+ });
8
+ exports.default = TextLink;
9
+ //# sourceMappingURL=TextLink.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextLink.js","sourceRoot":"","sources":["../../../src/Base/Links/TextLink.tsx"],"names":[],"mappings":";;;AAAA,+DAAyB;AAIzB,MAAM,QAAQ,GAAG,eAAK,CAAC,UAAU,CAAmC,CAAC,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACnG,OAAO,CACN,qCACC,GAAG,EAAE,GAAG,KACJ,KAAK,IAER,QAAQ,CACN,CACJ,CAAA;AACF,CAAC,CAAC,CAAA;AAEF,kBAAe,QAAQ,CAAA"}
@@ -0,0 +1,2 @@
1
+ import TextLink from './TextLink';
2
+ export { TextLink };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TextLink = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const TextLink_1 = (0, tslib_1.__importDefault)(require("./TextLink"));
6
+ exports.TextLink = TextLink_1.default;
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Base/Links/index.ts"],"names":[],"mappings":";;;;AAAA,uEAAiC;AAExB,mBAFF,kBAAQ,CAEE"}
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ export interface BottonNavigation {
3
+ className?: string;
4
+ }
5
+ declare const BottonNavigation: React.ForwardRefExoticComponent<React.RefAttributes<BottonNavigation>>;
6
+ export { BottonNavigation };
@@ -1,12 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ButtonNavigation = void 0;
3
+ exports.BottonNavigation = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = (0, tslib_1.__importStar)(require("react"));
6
6
  const icons_1 = require("../SvgIcon/icons");
7
7
  const btnClasses = "block hover:bg-btn-ghost-hover focus:bg-btn-ghost-focus active:bg-btn-ghost-active p-[8px] w-full text-[10px] text-center hover:text-primary leading-[1.33] transition duration-300";
8
8
  const iconClasses = "block mx-auto mb-[8px]";
9
- const ButtonNavigation = React.forwardRef(
9
+ const BottonNavigation = React.forwardRef(
10
10
  // @ts-ignore
11
11
  ({ className, ...props }, ref) => {
12
12
  return (React.createElement("nav", { className: "" },
@@ -32,6 +32,6 @@ const ButtonNavigation = React.forwardRef(
32
32
  React.createElement(icons_1.ChatSolid, { width: "24px", height: "24px", className: iconClasses }),
33
33
  "\u0427\u0430\u0442")))));
34
34
  });
35
- exports.ButtonNavigation = ButtonNavigation;
36
- ButtonNavigation.displayName = "ButtonNavigation";
37
- //# sourceMappingURL=ButtonNavigation.js.map
35
+ exports.BottonNavigation = BottonNavigation;
36
+ BottonNavigation.displayName = "BottonNavigation";
37
+ //# sourceMappingURL=BottonNavigation.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonNavigation.js","sourceRoot":"","sources":["../../../src/components/ButtonNavigation/ButtonNavigation.tsx"],"names":[],"mappings":";;;;AAAA,0DAA8B;AAC9B,4CAA6E;AAM7E,MAAM,UAAU,GAAG,qLAAqL,CAAC;AACzM,MAAM,WAAW,GAAG,wBAAwB,CAAC;AAE7C,MAAM,gBAAgB,GAAG,KAAK,CAAC,UAAU;AACxC,aAAa;AACZ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IAE/B,OAAO,CACT,6BAAK,SAAS,EAAC,EAAE;QAChB,4BAAI,SAAS,EAAC,oBAAoB;YACjC,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAC,qLAAqL,EAAC,IAAI,EAAC,EAAE;oBACzM,oBAAC,YAAI,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,EAAC,SAAS,EAAC,wBAAwB,GAAE;iEAE7E,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,eAAO,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAE1D,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,aAAK,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAExD,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,gBAAQ,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAE3D,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,gCAAQ,SAAS,EAAE,UAAU;oBAC5B,oBAAC,iBAAS,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;yCAEvD,CACL,CACD,CACA,CACH,CAAA;AACH,CAAC,CACF,CAAA;AAIQ,4CAAgB;AAFzB,gBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAA"}
1
+ {"version":3,"file":"BottonNavigation.js","sourceRoot":"","sources":["../../../src/components/BottonNavigation/BottonNavigation.tsx"],"names":[],"mappings":";;;;AAAA,0DAA8B;AAC9B,4CAA6E;AAM7E,MAAM,UAAU,GAAG,qLAAqL,CAAC;AACzM,MAAM,WAAW,GAAG,wBAAwB,CAAC;AAE7C,MAAM,gBAAgB,GAAG,KAAK,CAAC,UAAU;AACxC,aAAa;AACZ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IAE/B,OAAO,CACT,6BAAK,SAAS,EAAC,EAAE;QAChB,4BAAI,SAAS,EAAC,oBAAoB;YACjC,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAC,qLAAqL,EAAC,IAAI,EAAC,EAAE;oBACzM,oBAAC,YAAI,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,EAAC,SAAS,EAAC,wBAAwB,GAAE;iEAE7E,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,eAAO,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAE1D,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,aAAK,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAExD,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,2BAAG,SAAS,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE;oBAChC,oBAAC,gBAAQ,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;iEAE3D,CACA;YACL,4BAAI,SAAS,EAAC,EAAE;gBACf,gCAAQ,SAAS,EAAE,UAAU;oBAC5B,oBAAC,iBAAS,IAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,SAAS,EAAE,WAAW,GAAG;yCAEvD,CACL,CACD,CACA,CACH,CAAA;AACH,CAAC,CACF,CAAA;AAIQ,4CAAgB;AAFzB,gBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { BottonNavigation } from './BottonNavigation';
2
+ export { BottonNavigation };
3
+ export default BottonNavigation;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/BottonNavigation/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export * as default from './icons';
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = void 0;
4
+ const tslib_1 = require("tslib");
5
+ exports.default = (0, tslib_1.__importStar)(require("./icons"));
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/SvgIcon/index.ts"],"names":[],"mappings":";;;;AAAA,gEAAkC"}
package/dist/index.d.ts CHANGED
@@ -4,11 +4,11 @@ import { Slider } from "./Slider";
4
4
  import { Popover } from "./Popover";
5
5
  import Logo from "./Logo";
6
6
  import { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator } from "./Input-OTP";
7
- import { ButtonNavigation } from "./components/ButtonNavigation";
8
- import * as Icon from "./components/SvgIcon/icons";
7
+ import { BottonNavigation } from "./components/BottonNavigation";
9
8
  import { Collapse } from "./Collapse";
10
9
  import { Button } from "./Base/Buttons";
11
10
  import { Input } from "./Base/Input";
12
11
  import { Audio } from "./Audio";
13
12
  import { cn } from "./@/lib/utils";
14
- export { Tooltip, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapse, Button, Input, Audio, cn, ButtonNavigation, Icon, };
13
+ export { Tooltip, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapse, Button, Input, Audio, cn, };
14
+ export type { BottonNavigation };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Icon = exports.ButtonNavigation = exports.cn = exports.Audio = exports.Input = exports.Button = exports.Collapse = exports.InputOTPSeparator = exports.InputOTPSlot = exports.InputOTPGroup = exports.InputOTP = exports.Logo = exports.Popover = exports.Slider = exports.Tabs = exports.Tooltip = void 0;
3
+ exports.cn = exports.Audio = exports.Input = exports.Button = exports.Collapse = exports.InputOTPSeparator = exports.InputOTPSlot = exports.InputOTPGroup = exports.InputOTP = exports.Logo = exports.Popover = exports.Slider = exports.Tabs = exports.Tooltip = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const Tooltip_1 = require("./Tooltip");
6
6
  Object.defineProperty(exports, "Tooltip", { enumerable: true, get: function () { return Tooltip_1.Tooltip; } });
@@ -17,10 +17,6 @@ Object.defineProperty(exports, "InputOTP", { enumerable: true, get: function ()
17
17
  Object.defineProperty(exports, "InputOTPGroup", { enumerable: true, get: function () { return Input_OTP_1.InputOTPGroup; } });
18
18
  Object.defineProperty(exports, "InputOTPSlot", { enumerable: true, get: function () { return Input_OTP_1.InputOTPSlot; } });
19
19
  Object.defineProperty(exports, "InputOTPSeparator", { enumerable: true, get: function () { return Input_OTP_1.InputOTPSeparator; } });
20
- const ButtonNavigation_1 = require("./components/ButtonNavigation");
21
- Object.defineProperty(exports, "ButtonNavigation", { enumerable: true, get: function () { return ButtonNavigation_1.ButtonNavigation; } });
22
- const Icon = (0, tslib_1.__importStar)(require("./components/SvgIcon/icons"));
23
- exports.Icon = Icon;
24
20
  const Collapse_1 = require("./Collapse");
25
21
  Object.defineProperty(exports, "Collapse", { enumerable: true, get: function () { return Collapse_1.Collapse; } });
26
22
  const Buttons_1 = require("./Base/Buttons");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,uCAAoC;AAenC,wFAfQ,iBAAO,OAeR;AAdR,iCAA8B;AAe7B,qFAfQ,WAAI,OAeR;AAdL,qCAAkC;AAejC,uFAfQ,eAAM,OAeR;AAdP,uCAAoC;AAenC,wFAfQ,iBAAO,OAeR;AAdR,+DAA0B;AAezB,eAfM,cAAI,CAeN;AAdL,2CAAuF;AAetF,yFAfQ,oBAAQ,OAeR;AACR,8FAhBkB,yBAAa,OAgBlB;AACb,6FAjBiC,wBAAY,OAiBjC;AACZ,kGAlB+C,6BAAiB,OAkB/C;AAjBlB,oEAAiE;AAuBhE,iGAvBQ,mCAAgB,OAuBR;AAtBjB,8EAAmD;AAuBlD,oBAAI;AAtBL,yCAAsC;AAgBrC,yFAhBQ,mBAAQ,OAgBR;AAfT,4CAAwC;AAgBvC,uFAhBQ,gBAAM,OAgBR;AAfP,wCAAqC;AAgBpC,sFAhBQ,aAAK,OAgBR;AAfN,mCAAgC;AAgB/B,sFAhBQ,aAAK,OAgBR;AAfN,yCAAmC;AAgBlC,mFAhBQ,UAAE,OAgBR"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,uCAAoC;AAcnC,wFAdQ,iBAAO,OAcR;AAbR,iCAA8B;AAc7B,qFAdQ,WAAI,OAcR;AAbL,qCAAkC;AAcjC,uFAdQ,eAAM,OAcR;AAbP,uCAAoC;AAcnC,wFAdQ,iBAAO,OAcR;AAbR,+DAA0B;AAczB,eAdM,cAAI,CAcN;AAbL,2CAAuF;AActF,yFAdQ,oBAAQ,OAcR;AACR,8FAfkB,yBAAa,OAelB;AACb,6FAhBiC,wBAAY,OAgBjC;AACZ,kGAjB+C,6BAAiB,OAiB/C;AAflB,yCAAsC;AAgBrC,yFAhBQ,mBAAQ,OAgBR;AAfT,4CAAwC;AAgBvC,uFAhBQ,gBAAM,OAgBR;AAfP,wCAAqC;AAgBpC,sFAhBQ,aAAK,OAgBR;AAfN,mCAAgC;AAgB/B,sFAhBQ,aAAK,OAgBR;AAfN,yCAAmC;AAgBlC,mFAhBQ,UAAE,OAgBR"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "0.0.3-beta-pv-52770-fix-7cbf1d45",
3
+ "version": "0.0.3",
4
4
  "packageManager": "yarn@3.5.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,14 +1,14 @@
1
1
  import * as React from "react"
2
2
  import { Home, Services, ChatSolid, Clock, Payment } from "../SvgIcon/icons";
3
3
 
4
- interface IBottonNavigation {
4
+ export interface BottonNavigation {
5
5
  className?: string
6
6
  }
7
7
 
8
8
  const btnClasses = "block hover:bg-btn-ghost-hover focus:bg-btn-ghost-focus active:bg-btn-ghost-active p-[8px] w-full text-[10px] text-center hover:text-primary leading-[1.33] transition duration-300";
9
9
  const iconClasses = "block mx-auto mb-[8px]";
10
10
 
11
- const ButtonNavigation = React.forwardRef<IBottonNavigation>(
11
+ const BottonNavigation = React.forwardRef<BottonNavigation>(
12
12
  // @ts-ignore
13
13
  ({ className, ...props }, ref) => {
14
14
 
@@ -51,6 +51,6 @@ const ButtonNavigation = React.forwardRef<IBottonNavigation>(
51
51
  }
52
52
  )
53
53
 
54
- ButtonNavigation.displayName = "ButtonNavigation"
54
+ BottonNavigation.displayName = "BottonNavigation"
55
55
 
56
- export { ButtonNavigation }
56
+ export { BottonNavigation }
@@ -0,0 +1,7 @@
1
+ import { BottonNavigation } from './BottonNavigation'
2
+
3
+ // @ts-ignore
4
+ export { BottonNavigation }
5
+
6
+ export default BottonNavigation
7
+
package/src/index.ts CHANGED
@@ -4,8 +4,7 @@ import { Slider } from "./Slider";
4
4
  import { Popover } from "./Popover";
5
5
  import Logo from "./Logo";
6
6
  import { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator } from "./Input-OTP";
7
- import { ButtonNavigation } from "./components/ButtonNavigation";
8
- import * as Icon from "./components/SvgIcon/icons";
7
+ import { BottonNavigation } from "./components/BottonNavigation";
9
8
  import { Collapse } from "./Collapse";
10
9
  import { Button } from "./Base/Buttons";
11
10
  import { Input } from "./Base/Input";
@@ -27,6 +26,5 @@ export {
27
26
  Input,
28
27
  Audio,
29
28
  cn,
30
- ButtonNavigation,
31
- Icon,
32
29
  };
30
+ export type { BottonNavigation };
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- interface IBottonNavigation {
3
- className?: string;
4
- }
5
- declare const ButtonNavigation: React.ForwardRefExoticComponent<React.RefAttributes<IBottonNavigation>>;
6
- export { ButtonNavigation };
@@ -1,3 +0,0 @@
1
- import { ButtonNavigation } from './ButtonNavigation';
2
- export { ButtonNavigation };
3
- export default ButtonNavigation;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ButtonNavigation = void 0;
4
- const ButtonNavigation_1 = require("./ButtonNavigation");
5
- Object.defineProperty(exports, "ButtonNavigation", { enumerable: true, get: function () { return ButtonNavigation_1.ButtonNavigation; } });
6
- exports.default = ButtonNavigation_1.ButtonNavigation;
7
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ButtonNavigation/index.ts"],"names":[],"mappings":";;;AAAA,yDAAqD;AAE5C,iGAFA,mCAAgB,OAEA;AAEzB,kBAAe,mCAAgB,CAAA"}
@@ -1,6 +0,0 @@
1
- import { ButtonNavigation } from './ButtonNavigation'
2
-
3
- export { ButtonNavigation }
4
-
5
- export default ButtonNavigation
6
-