@tociva/tailng-ui 0.1.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/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @tociva/tailng-ui
2
+
3
+ Modern Angular UI components powered by Tailwind CSS.
4
+
5
+ ## Installation
6
+ ```bash
7
+ npm install @tociva/tailng-ui
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports$1) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ // Form Controls
18
+ __exportStar(require("./form-controls/src/public-api"), exports);
19
+ // Buttons & Indicators
20
+ __exportStar(require("./buttons-indicators/src/public-api"), exports);
21
+ // Layout
22
+ __exportStar(require("./layout/src/public-api"), exports);
23
+ // Navigation
24
+ __exportStar(require("./navigation/src/public-api"), exports);
25
+ // Popups & Overlays
26
+ __exportStar(require("./popups-overlays/src/public-api"), exports);
27
+ // Data Table & Structure
28
+ __exportStar(require("./data-table-structure/src/public-api"), exports);
29
+ // Utilities
30
+ __exportStar(require("./utilities/src/public-api"), exports);
31
+
32
+ /**
33
+ * Generated bundle index. Do not edit.
34
+ */
35
+ //# sourceMappingURL=tociva-tailng-ui.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tociva-tailng-ui.mjs","sources":["../../../../libs/ui/src/public-api.ts","../../../../libs/ui/src/tociva-tailng-ui.ts"],"sourcesContent":["// Form Controls\nexport * from './form-controls/src/public-api';\n\n// Buttons & Indicators\nexport * from './buttons-indicators/src/public-api';\n\n// Layout\nexport * from './layout/src/public-api';\n\n// Navigation\nexport * from './navigation/src/public-api';\n\n// Popups & Overlays\nexport * from './popups-overlays/src/public-api';\n\n// Data Table & Structure\nexport * from './data-table-structure/src/public-api';\n\n// Utilities\nexport * from './utilities/src/public-api';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;AACA,YAAA,CAAA,OAAA,CAAA,gCAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,qCAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,yBAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,6BAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,kCAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,uCAAA,CAAA,EAAA,OAAA,CAAA;AAEA;AACA,YAAA,CAAA,OAAA,CAAA,4BAAA,CAAA,EAAA,OAAA,CAAA;;ACnBA;;AAEG"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@tociva/tailng-ui",
3
+ "version": "0.1.0",
4
+ "description": "Modern Angular UI components powered by Tailwind CSS",
5
+ "license": "MIT",
6
+ "sideEffects": false,
7
+ "peerDependencies": {
8
+ "@angular/core": "^21.0.0",
9
+ "@angular/common": "^21.0.0",
10
+ "@angular/forms": "^21.0.0",
11
+ "@tociva/tailng-cdk": "^0.1.0"
12
+ },
13
+ "dependencies": {
14
+ "tslib": "^2.6.0"
15
+ },
16
+ "keywords": [
17
+ "angular",
18
+ "tailwind",
19
+ "ui",
20
+ "components",
21
+ "tailng"
22
+ ],
23
+ "module": "fesm2022/tociva-tailng-ui.mjs",
24
+ "typings": "types/tociva-tailng-ui.d.ts",
25
+ "exports": {
26
+ "./package.json": {
27
+ "default": "./package.json"
28
+ },
29
+ ".": {
30
+ "types": "./types/tociva-tailng-ui.d.ts",
31
+ "default": "./fesm2022/tociva-tailng-ui.mjs"
32
+ }
33
+ }
34
+ }