@deneb-ui/ui 2.0.15 → 2.0.17

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,48 @@
1
+ import React from 'react';
2
+ export interface CustomerReviewItem {
3
+ id?: string | number;
4
+ author: string;
5
+ rating: number;
6
+ date?: string;
7
+ comment: string;
8
+ verified?: boolean;
9
+ productName?: string;
10
+ helpfulCount?: number;
11
+ [key: string]: unknown;
12
+ }
13
+ export interface EditableCustomerReviewsProps extends React.HTMLAttributes<HTMLElement> {
14
+ /**
15
+ * Field path prefix for live Fivora Visual Editing synchronization (e.g. "home").
16
+ */
17
+ sectionPath?: string;
18
+ /**
19
+ * Title of the reviews section.
20
+ */
21
+ title?: string;
22
+ /**
23
+ * Subtitle tag.
24
+ */
25
+ subtitle?: string;
26
+ /**
27
+ * Average score (e.g. 4.9).
28
+ */
29
+ averageRating?: number | string;
30
+ /**
31
+ * Total review count display.
32
+ */
33
+ totalReviews?: number | string;
34
+ /**
35
+ * Array of reviews.
36
+ */
37
+ reviews?: CustomerReviewItem[];
38
+ className?: string;
39
+ }
40
+ /**
41
+ * EditableCustomerReviews is an elite social-proof component featuring
42
+ * star breakdowns, verified buyer authentication badges, helpful counters,
43
+ * and live Fivora visual editing synchronization.
44
+ *
45
+ * Created by Chamika Gayashan & Induranga Kawishwara
46
+ */
47
+ export declare function EditableCustomerReviews({ sectionPath, title, subtitle, averageRating, totalReviews, reviews, className, style, ...props }: EditableCustomerReviewsProps): React.JSX.Element;
48
+ export declare const CustomerReviews: typeof EditableCustomerReviews;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CustomerReviews = void 0;
4
+ exports.EditableCustomerReviews = EditableCustomerReviews;
5
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
+ const react_1 = require("react");
7
+ const DEFAULT_REVIEWS = [
8
+ {
9
+ id: 1,
10
+ author: 'Liam Vance',
11
+ rating: 5,
12
+ date: '2 days ago',
13
+ comment: 'The cushioning and responsiveness are unbelievable. Best performance shoe I have owned for tempo runs.',
14
+ verified: true,
15
+ productName: 'VANTA Aero X',
16
+ helpfulCount: 14,
17
+ },
18
+ {
19
+ id: 2,
20
+ author: 'Elena Rostova',
21
+ rating: 5,
22
+ date: '1 week ago',
23
+ comment: 'Sleek design, fits true to size, and the breathability is noticeable on 10k morning runs. Highly recommended!',
24
+ verified: true,
25
+ productName: 'VANTA Flux 01',
26
+ helpfulCount: 9,
27
+ },
28
+ {
29
+ id: 3,
30
+ author: 'Marcus Chen',
31
+ rating: 4,
32
+ date: '2 weeks ago',
33
+ comment: 'Exceptional build quality and premium materials. Fast shipping and very responsive WhatsApp support.',
34
+ verified: true,
35
+ productName: 'VANTA Stealth Pro',
36
+ helpfulCount: 6,
37
+ },
38
+ ];
39
+ /**
40
+ * EditableCustomerReviews is an elite social-proof component featuring
41
+ * star breakdowns, verified buyer authentication badges, helpful counters,
42
+ * and live Fivora visual editing synchronization.
43
+ *
44
+ * Created by Chamika Gayashan & Induranga Kawishwara
45
+ */
46
+ function EditableCustomerReviews({ sectionPath = 'home', title = 'Loved by Athletes & Runners Worldwide', subtitle = 'Verified Customer Reviews', averageRating = '4.9', totalReviews = '1,420+', reviews = DEFAULT_REVIEWS, className = '', style, ...props }) {
47
+ const [selectedStarFilter, setSelectedStarFilter] = (0, react_1.useState)(null);
48
+ const filteredReviews = (0, react_1.useMemo)(() => {
49
+ if (selectedStarFilter === null)
50
+ return reviews;
51
+ return reviews.filter((r) => r.rating === selectedStarFilter);
52
+ }, [reviews, selectedStarFilter]);
53
+ return ((0, jsx_runtime_1.jsxs)("section", { "data-preview-page-key": sectionPath, className: `editable-customer-reviews max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 ${className}`.trim(), style: style, ...props, children: [(0, jsx_runtime_1.jsxs)("div", { className: "text-center max-w-2xl mx-auto mb-12", children: [subtitle && ((0, jsx_runtime_1.jsx)("span", { "data-preview-field-path": `${sectionPath}.reviewsSubtitle`, className: "text-xs font-black tracking-widest uppercase text-lime-400 block mb-2", children: subtitle })), (0, jsx_runtime_1.jsx)("h2", { "data-preview-field-path": `${sectionPath}.reviewsTitle`, className: "text-3xl sm:text-4xl font-extrabold tracking-tight text-white leading-tight", children: title }), (0, jsx_runtime_1.jsxs)("div", { className: "mt-4 flex items-center justify-center gap-3", children: [(0, jsx_runtime_1.jsx)("div", { className: "flex text-amber-400 text-lg", children: '★★★★★' }), (0, jsx_runtime_1.jsxs)("span", { className: "text-white font-extrabold text-lg", children: [(0, jsx_runtime_1.jsx)("span", { "data-preview-field-path": `${sectionPath}.reviewsAverage`, children: averageRating }), " / 5.0"] }), (0, jsx_runtime_1.jsxs)("span", { className: "text-slate-400 text-sm", children: ["(", (0, jsx_runtime_1.jsx)("span", { "data-preview-field-path": `${sectionPath}.reviewsCount`, children: totalReviews }), " reviews)"] })] })] }), (0, jsx_runtime_1.jsxs)("div", { className: "flex justify-center gap-2 mb-8", children: [(0, jsx_runtime_1.jsx)("button", { type: "button", onClick: () => setSelectedStarFilter(null), className: `px-3.5 py-1.5 rounded-xl text-xs font-bold transition-all ${selectedStarFilter === null
54
+ ? 'bg-lime-400 text-slate-950 font-extrabold shadow-sm'
55
+ : 'bg-slate-900/60 text-slate-400 hover:text-white border border-slate-800'}`, children: "All Reviews" }), [5, 4, 3].map((stars) => ((0, jsx_runtime_1.jsxs)("button", { type: "button", onClick: () => setSelectedStarFilter(stars), className: `px-3.5 py-1.5 rounded-xl text-xs font-bold transition-all flex items-center gap-1 ${selectedStarFilter === stars
56
+ ? 'bg-lime-400 text-slate-950 font-extrabold shadow-sm'
57
+ : 'bg-slate-900/60 text-slate-400 hover:text-white border border-slate-800'}`, children: [(0, jsx_runtime_1.jsxs)("span", { children: [stars, " Stars"] }), (0, jsx_runtime_1.jsx)("span", { className: "text-amber-400", children: "\u2605" })] }, stars)))] }), (0, jsx_runtime_1.jsx)("div", { className: "grid grid-cols-1 md:grid-cols-3 gap-6", children: filteredReviews.map((review, i) => ((0, jsx_runtime_1.jsxs)("div", { className: "p-6 rounded-2xl bg-gradient-to-b from-slate-900/60 to-slate-950/80 border border-slate-800/80 flex flex-col justify-between hover:border-slate-700 transition-all duration-200", children: [(0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsxs)("div", { className: "flex items-center justify-between mb-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "flex text-amber-400 text-sm", children: Array.from({ length: review.rating }).map((_, idx) => ((0, jsx_runtime_1.jsx)("span", { children: "\u2605" }, idx))) }), review.verified !== false && ((0, jsx_runtime_1.jsxs)("span", { className: "inline-flex items-center gap-1 px-2.5 py-0.5 rounded-full text-[10px] font-bold bg-emerald-500/10 text-emerald-400 border border-emerald-500/20", children: [(0, jsx_runtime_1.jsx)("svg", { className: "w-3 h-3 fill-current", viewBox: "0 0 20 20", children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", clipRule: "evenodd" }) }), "Verified Buyer"] }))] }), (0, jsx_runtime_1.jsxs)("p", { "data-preview-field-path": `${sectionPath}.review${i + 1}Comment`, className: "text-sm text-slate-300 leading-relaxed italic mb-4", children: ["\u201C", review.comment, "\u201D"] })] }), (0, jsx_runtime_1.jsxs)("div", { className: "pt-4 border-t border-slate-800/60 flex items-center justify-between", children: [(0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("span", { "data-preview-field-path": `${sectionPath}.review${i + 1}Author`, className: "block text-xs font-bold text-white", children: review.author }), review.productName && ((0, jsx_runtime_1.jsxs)("span", { className: "text-[11px] text-slate-400 block", children: ["Purchased: ", review.productName] }))] }), review.date && ((0, jsx_runtime_1.jsx)("span", { className: "text-[11px] text-slate-500 font-mono", children: review.date }))] })] }, review.id || i))) })] }));
58
+ }
59
+ // Canonical alias
60
+ exports.CustomerReviews = EditableCustomerReviews;
@@ -0,0 +1,55 @@
1
+ import React from 'react';
2
+ import { ProductItem, ProductCardVariant } from './EditableProductCard';
3
+ export interface EditableProductGridProps extends React.HTMLAttributes<HTMLElement> {
4
+ /**
5
+ * Field path prefix for live Fivora Visual Editing synchronization (e.g. "home").
6
+ */
7
+ sectionPath?: string;
8
+ /**
9
+ * Title of the product grid section.
10
+ */
11
+ title?: string;
12
+ /**
13
+ * Subtitle or category tag for the grid section.
14
+ */
15
+ subtitle?: string;
16
+ /**
17
+ * Array of product items.
18
+ */
19
+ products: ProductItem[];
20
+ /**
21
+ * Optional category filter tabs (e.g. ['All', 'Sneakers', 'Performance', 'Lifestyle']).
22
+ */
23
+ categories?: string[];
24
+ /**
25
+ * Card visual variant: 'modern-glass' | 'classic' | 'minimal' | 'horizontal'.
26
+ */
27
+ cardVariant?: ProductCardVariant;
28
+ /**
29
+ * Responsive columns configuration.
30
+ */
31
+ columns?: {
32
+ mobile?: number;
33
+ tablet?: number;
34
+ desktop?: number;
35
+ };
36
+ /**
37
+ * Callback when a user clicks the quick view action on a card.
38
+ */
39
+ onQuickView?: (product: ProductItem, itemPath: string) => void;
40
+ /**
41
+ * Custom field path prefix for individual cards (default: "product").
42
+ * e.g. "home.product1", "home.product2", etc.
43
+ */
44
+ cardPrefix?: string;
45
+ className?: string;
46
+ }
47
+ /**
48
+ * EditableProductGrid is an elite, fully responsive e-commerce showcase grid
49
+ * with interactive category filtering, live Fivora visual editing synchronization,
50
+ * and built-in Quick View modal triggers.
51
+ *
52
+ * Created by Chamika Gayashan & Induranga Kawishwara
53
+ */
54
+ export declare function EditableProductGrid({ sectionPath, title, subtitle, products, categories, cardVariant, columns, onQuickView, cardPrefix, className, style, ...props }: EditableProductGridProps): React.JSX.Element;
55
+ export declare const ProductGrid: typeof EditableProductGrid;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProductGrid = void 0;
4
+ exports.EditableProductGrid = EditableProductGrid;
5
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
+ const react_1 = require("react");
7
+ const EditableProductCard_1 = require("./EditableProductCard");
8
+ /**
9
+ * EditableProductGrid is an elite, fully responsive e-commerce showcase grid
10
+ * with interactive category filtering, live Fivora visual editing synchronization,
11
+ * and built-in Quick View modal triggers.
12
+ *
13
+ * Created by Chamika Gayashan & Induranga Kawishwara
14
+ */
15
+ function EditableProductGrid({ sectionPath = 'home', title = 'Featured Collection', subtitle = 'Just Dropped', products = [], categories = ['All'], cardVariant = 'modern-glass', columns = { mobile: 1, tablet: 2, desktop: 4 }, onQuickView, cardPrefix = 'product', className = '', style, ...props }) {
16
+ const [activeCategory, setActiveCategory] = (0, react_1.useState)(categories[0] || 'All');
17
+ const filteredProducts = (0, react_1.useMemo)(() => {
18
+ if (!activeCategory || activeCategory.toLowerCase() === 'all') {
19
+ return products;
20
+ }
21
+ return products.filter((p) => {
22
+ const cat = String(p.category || '').toLowerCase();
23
+ return cat === activeCategory.toLowerCase();
24
+ });
25
+ }, [products, activeCategory]);
26
+ // Map column config to CSS grid class names
27
+ const gridColClasses = (0, react_1.useMemo)(() => {
28
+ const m = columns.mobile || 1;
29
+ const t = columns.tablet || 2;
30
+ const d = columns.desktop || 4;
31
+ const mClass = m === 2 ? 'grid-cols-2' : 'grid-cols-1';
32
+ const tClass = t === 3 ? 'sm:grid-cols-3' : 'sm:grid-cols-2';
33
+ const dClass = d === 3 ? 'lg:grid-cols-3' : d === 2 ? 'lg:grid-cols-2' : 'lg:grid-cols-4';
34
+ return `${mClass} ${tClass} ${dClass}`;
35
+ }, [columns]);
36
+ return ((0, jsx_runtime_1.jsxs)("section", { "data-preview-page-key": sectionPath, className: `editable-product-grid max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 ${className}`.trim(), style: style, ...props, children: [(0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col md:flex-row md:items-end justify-between mb-10 gap-6", children: [(0, jsx_runtime_1.jsxs)("div", { children: [subtitle && ((0, jsx_runtime_1.jsx)("span", { "data-preview-field-path": `${sectionPath}.gridSubtitle`, className: "text-xs font-black tracking-widest uppercase text-lime-400 block mb-2", children: subtitle })), (0, jsx_runtime_1.jsx)("h2", { "data-preview-field-path": `${sectionPath}.gridTitle`, className: "text-3xl sm:text-4xl font-extrabold tracking-tight text-white leading-tight", children: title })] }), categories.length > 1 && ((0, jsx_runtime_1.jsx)("div", { className: "flex flex-wrap items-center gap-2", children: categories.map((cat) => {
37
+ const isActive = activeCategory.toLowerCase() === cat.toLowerCase();
38
+ return ((0, jsx_runtime_1.jsx)("button", { type: "button", onClick: () => setActiveCategory(cat), className: `px-4 py-2 rounded-xl text-xs font-bold transition-all duration-200 ${isActive
39
+ ? 'bg-white text-slate-950 shadow-md scale-102 font-extrabold'
40
+ : 'bg-slate-900/60 text-slate-400 hover:text-white border border-slate-800/80 hover:bg-slate-850'}`, children: cat }, cat));
41
+ }) }))] }), filteredProducts.length > 0 ? ((0, jsx_runtime_1.jsx)("div", { className: `grid ${gridColClasses} gap-6 sm:gap-8`, children: filteredProducts.map((product, idx) => {
42
+ const itemPath = `${sectionPath}.${cardPrefix}${idx + 1}`;
43
+ return ((0, jsx_runtime_1.jsxs)("div", { className: "relative group", children: [(0, jsx_runtime_1.jsx)(EditableProductCard_1.EditableProductCard, { itemPath: itemPath, product: product, cardVariant: cardVariant, className: "h-full" }), onQuickView && ((0, jsx_runtime_1.jsx)("div", { className: "absolute top-4 right-4 z-20 opacity-0 group-hover:opacity-100 transition-opacity duration-200", children: (0, jsx_runtime_1.jsx)("button", { type: "button", onClick: () => onQuickView(product, itemPath), className: "p-2.5 rounded-xl bg-slate-950/80 backdrop-blur-md text-white hover:bg-lime-400 hover:text-slate-950 shadow-lg transition-all active:scale-95", title: "Quick View", "aria-label": `Quick View ${product.name || product.title}`, children: (0, jsx_runtime_1.jsxs)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [(0, jsx_runtime_1.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" }), (0, jsx_runtime_1.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" })] }) }) }))] }, product.id || idx));
44
+ }) })) : (
45
+ /* Empty State */
46
+ (0, jsx_runtime_1.jsxs)("div", { className: "text-center py-20 px-4 rounded-3xl border border-dashed border-slate-800 bg-slate-900/30", children: [(0, jsx_runtime_1.jsxs)("p", { className: "text-sm font-medium text-slate-400", children: ["No products found matching category \"", activeCategory, "\"."] }), (0, jsx_runtime_1.jsx)("button", { type: "button", onClick: () => setActiveCategory('All'), className: "mt-4 px-4 py-2 rounded-xl text-xs font-bold bg-lime-400 text-slate-950 hover:bg-lime-300 transition-colors", children: "View All Products" })] }))] }));
47
+ }
48
+ // Canonical alias
49
+ exports.ProductGrid = EditableProductGrid;
package/dist/index.d.ts CHANGED
@@ -9,7 +9,9 @@ export * from './EditableBox';
9
9
  export * from './EditableGrid';
10
10
  export * from './EditableSection';
11
11
  export * from './EditableProductCard';
12
+ export * from './EditableProductGrid';
12
13
  export * from './EditableProductDetail';
14
+ export * from './EditableCustomerReviews';
13
15
  export * from './EditableServiceCard';
14
16
  export * from './EditableCard';
15
17
  export * from './EditablePricingCard';
@@ -48,7 +50,9 @@ export { EditableSection as Section } from './EditableSection';
48
50
  export { EditableBox as Box } from './EditableBox';
49
51
  export { EditableList as List } from './EditableList';
50
52
  export { EditableProductCard as ProductCard } from './EditableProductCard';
53
+ export { EditableProductGrid as ProductGrid } from './EditableProductGrid';
51
54
  export { EditableProductDetail as ProductDetail } from './EditableProductDetail';
55
+ export { EditableCustomerReviews as CustomerReviews } from './EditableCustomerReviews';
52
56
  export { EditableServiceCard as ServiceCard } from './EditableServiceCard';
53
57
  export { EditablePricingCard as PricingCard } from './EditablePricingCard';
54
58
  export { EditableTestimonialCard as TestimonialCard } from './EditableTestimonialCard';
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
18
18
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- exports.CEEG_AUTHOR = exports.CEEG_FRAMEWORK_VERSION = exports.CEEG_FRAMEWORK_NAME = exports.DENEB_AUTHOR = exports.DENEB_FRAMEWORK_VERSION = exports.DENEB_FRAMEWORK_NAME = exports.FloatingContactWidget = exports.CookieConsentBanner = exports.ProductQuickView = exports.TrustBadges = exports.StickyMobileBar = exports.CategoryPills = exports.AnnouncementBar = exports.HeroSplit = exports.Hero = exports.Footer = exports.Header = exports.Navbar = exports.ContactForm = exports.FAQ = exports.Accordion = exports.TestimonialCard = exports.PricingCard = exports.ServiceCard = exports.ProductDetail = exports.ProductCard = exports.List = exports.Box = exports.Section = exports.Grid = exports.Image = exports.Quote = exports.Badge = exports.Paragraph = exports.Heading = exports.Text = exports.Dialog = exports.Card = exports.Button = void 0;
21
+ exports.CEEG_AUTHOR = exports.CEEG_FRAMEWORK_VERSION = exports.CEEG_FRAMEWORK_NAME = exports.DENEB_AUTHOR = exports.DENEB_FRAMEWORK_VERSION = exports.DENEB_FRAMEWORK_NAME = exports.FloatingContactWidget = exports.CookieConsentBanner = exports.ProductQuickView = exports.TrustBadges = exports.StickyMobileBar = exports.CategoryPills = exports.AnnouncementBar = exports.HeroSplit = exports.Hero = exports.Footer = exports.Header = exports.Navbar = exports.ContactForm = exports.FAQ = exports.Accordion = exports.TestimonialCard = exports.PricingCard = exports.ServiceCard = exports.CustomerReviews = exports.ProductDetail = exports.ProductGrid = exports.ProductCard = exports.List = exports.Box = exports.Section = exports.Grid = exports.Image = exports.Quote = exports.Badge = exports.Paragraph = exports.Heading = exports.Text = exports.Dialog = exports.Card = exports.Button = void 0;
22
22
  __exportStar(require("./EditableText"), exports);
23
23
  __exportStar(require("./EditableImage"), exports);
24
24
  __exportStar(require("./EditableList"), exports);
@@ -26,7 +26,9 @@ __exportStar(require("./EditableBox"), exports);
26
26
  __exportStar(require("./EditableGrid"), exports);
27
27
  __exportStar(require("./EditableSection"), exports);
28
28
  __exportStar(require("./EditableProductCard"), exports);
29
+ __exportStar(require("./EditableProductGrid"), exports);
29
30
  __exportStar(require("./EditableProductDetail"), exports);
31
+ __exportStar(require("./EditableCustomerReviews"), exports);
30
32
  __exportStar(require("./EditableServiceCard"), exports);
31
33
  __exportStar(require("./EditableCard"), exports);
32
34
  __exportStar(require("./EditablePricingCard"), exports);
@@ -81,8 +83,12 @@ var EditableList_1 = require("./EditableList");
81
83
  Object.defineProperty(exports, "List", { enumerable: true, get: function () { return EditableList_1.EditableList; } });
82
84
  var EditableProductCard_1 = require("./EditableProductCard");
83
85
  Object.defineProperty(exports, "ProductCard", { enumerable: true, get: function () { return EditableProductCard_1.EditableProductCard; } });
86
+ var EditableProductGrid_1 = require("./EditableProductGrid");
87
+ Object.defineProperty(exports, "ProductGrid", { enumerable: true, get: function () { return EditableProductGrid_1.EditableProductGrid; } });
84
88
  var EditableProductDetail_1 = require("./EditableProductDetail");
85
89
  Object.defineProperty(exports, "ProductDetail", { enumerable: true, get: function () { return EditableProductDetail_1.EditableProductDetail; } });
90
+ var EditableCustomerReviews_1 = require("./EditableCustomerReviews");
91
+ Object.defineProperty(exports, "CustomerReviews", { enumerable: true, get: function () { return EditableCustomerReviews_1.EditableCustomerReviews; } });
86
92
  var EditableServiceCard_1 = require("./EditableServiceCard");
87
93
  Object.defineProperty(exports, "ServiceCard", { enumerable: true, get: function () { return EditableServiceCard_1.EditableServiceCard; } });
88
94
  var EditablePricingCard_1 = require("./EditablePricingCard");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deneb-ui/ui",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "DENEB UI - The premier visual-first React component framework for the modern web. Created by Chamika Gayashan & Induranga Kawishwara.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/deneb-ui/core.git",
12
+ "url": "git+https://github.com/deneb-ui/core.git",
13
13
  "directory": "packages/deneb-ui"
14
14
  },
15
15
  "homepage": "https://github.com/deneb-ui/core#readme",