@modul/mbui 0.0.3-beta-pv-52770-26eac77b → 0.0.3-beta-pv-52770-7d2f2b64

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.
@@ -0,0 +1,14 @@
1
+ import { Tooltip } from "./Tooltip";
2
+ import { Tabs } from "./Tabs";
3
+ import { Slider } from "./Slider";
4
+ import { Popover } from "./Popover";
5
+ import Logo from "./Logo";
6
+ import { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator } from "./Input-OTP";
7
+ import { BottonNavigation } from "./components/BottonNavigation";
8
+ import { Collapse } from "./Collapse";
9
+ import { Button } from "./Base/Buttons";
10
+ import { Input } from "./Base/Input";
11
+ import { Audio } from "./Audio";
12
+ import { cn } from "./@/lib/utils";
13
+ export { Tooltip, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapse, Button, Input, Audio, cn, };
14
+ export type { BottonNavigation };
package/dist/index.js ADDED
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
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
+ const tslib_1 = require("tslib");
5
+ const Tooltip_1 = require("./Tooltip");
6
+ Object.defineProperty(exports, "Tooltip", { enumerable: true, get: function () { return Tooltip_1.Tooltip; } });
7
+ const Tabs_1 = require("./Tabs");
8
+ Object.defineProperty(exports, "Tabs", { enumerable: true, get: function () { return Tabs_1.Tabs; } });
9
+ const Slider_1 = require("./Slider");
10
+ Object.defineProperty(exports, "Slider", { enumerable: true, get: function () { return Slider_1.Slider; } });
11
+ const Popover_1 = require("./Popover");
12
+ Object.defineProperty(exports, "Popover", { enumerable: true, get: function () { return Popover_1.Popover; } });
13
+ const Logo_1 = (0, tslib_1.__importDefault)(require("./Logo"));
14
+ exports.Logo = Logo_1.default;
15
+ const Input_OTP_1 = require("./Input-OTP");
16
+ Object.defineProperty(exports, "InputOTP", { enumerable: true, get: function () { return Input_OTP_1.InputOTP; } });
17
+ Object.defineProperty(exports, "InputOTPGroup", { enumerable: true, get: function () { return Input_OTP_1.InputOTPGroup; } });
18
+ Object.defineProperty(exports, "InputOTPSlot", { enumerable: true, get: function () { return Input_OTP_1.InputOTPSlot; } });
19
+ Object.defineProperty(exports, "InputOTPSeparator", { enumerable: true, get: function () { return Input_OTP_1.InputOTPSeparator; } });
20
+ const Collapse_1 = require("./Collapse");
21
+ Object.defineProperty(exports, "Collapse", { enumerable: true, get: function () { return Collapse_1.Collapse; } });
22
+ const Buttons_1 = require("./Base/Buttons");
23
+ Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return Buttons_1.Button; } });
24
+ const Input_1 = require("./Base/Input");
25
+ Object.defineProperty(exports, "Input", { enumerable: true, get: function () { return Input_1.Input; } });
26
+ const Audio_1 = require("./Audio");
27
+ Object.defineProperty(exports, "Audio", { enumerable: true, get: function () { return Audio_1.Audio; } });
28
+ const utils_1 = require("./@/lib/utils");
29
+ Object.defineProperty(exports, "cn", { enumerable: true, get: function () { return utils_1.cn; } });
30
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
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,8 +1,10 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "0.0.3-beta-pv-52770-26eac77b",
3
+ "version": "0.0.3-beta-pv-52770-7d2f2b64",
4
4
  "packageManager": "yarn@3.5.1",
5
- "main": "src/index.ts",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "source": "./src/index.ts",
6
8
  "scripts": {
7
9
  "load-icons": "node scripts/icons/load-icons",
8
10
  "icons": "yarn load-icons && svgr icons_sources",
package/src/index.ts ADDED
@@ -0,0 +1,30 @@
1
+ import { Tooltip } from "./Tooltip";
2
+ import { Tabs } from "./Tabs";
3
+ import { Slider } from "./Slider";
4
+ import { Popover } from "./Popover";
5
+ import Logo from "./Logo";
6
+ import { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator } from "./Input-OTP";
7
+ import { BottonNavigation } from "./components/BottonNavigation";
8
+ import { Collapse } from "./Collapse";
9
+ import { Button } from "./Base/Buttons";
10
+ import { Input } from "./Base/Input";
11
+ import { Audio } from "./Audio";
12
+ import { cn } from "./@/lib/utils";
13
+
14
+ export {
15
+ Tooltip,
16
+ Tabs,
17
+ Slider,
18
+ Popover,
19
+ Logo,
20
+ InputOTP,
21
+ InputOTPGroup,
22
+ InputOTPSlot,
23
+ InputOTPSeparator,
24
+ Collapse,
25
+ Button,
26
+ Input,
27
+ Audio,
28
+ cn,
29
+ };
30
+ export type { BottonNavigation };