@bbki.ng/components 1.5.39 → 1.5.40
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/dist/index.d.ts +1 -0
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -264,6 +264,13 @@ var BlinkDot = (props) => {
|
|
|
264
264
|
|
|
265
265
|
// src/nav/Nav.tsx
|
|
266
266
|
var Nav = (props) => {
|
|
267
|
+
if (props.mini) {
|
|
268
|
+
return /* @__PURE__ */ import_react6.default.createElement("div", {
|
|
269
|
+
className: `p-8 w-full flex items-center ${props.className}`
|
|
270
|
+
}, /* @__PURE__ */ import_react6.default.createElement(Breadcrumb, {
|
|
271
|
+
paths: props.paths
|
|
272
|
+
}));
|
|
273
|
+
}
|
|
267
274
|
return /* @__PURE__ */ import_react6.default.createElement("div", {
|
|
268
275
|
className: `p-8 w-full flex items-center ${props.className}`
|
|
269
276
|
}, /* @__PURE__ */ import_react6.default.createElement(Logo, {
|
package/dist/index.mjs
CHANGED
|
@@ -203,6 +203,13 @@ var BlinkDot = (props) => {
|
|
|
203
203
|
|
|
204
204
|
// src/nav/Nav.tsx
|
|
205
205
|
var Nav = (props) => {
|
|
206
|
+
if (props.mini) {
|
|
207
|
+
return /* @__PURE__ */ React7.createElement("div", {
|
|
208
|
+
className: `p-8 w-full flex items-center ${props.className}`
|
|
209
|
+
}, /* @__PURE__ */ React7.createElement(Breadcrumb, {
|
|
210
|
+
paths: props.paths
|
|
211
|
+
}));
|
|
212
|
+
}
|
|
206
213
|
return /* @__PURE__ */ React7.createElement("div", {
|
|
207
214
|
className: `p-8 w-full flex items-center ${props.className}`
|
|
208
215
|
}, /* @__PURE__ */ React7.createElement(Logo, {
|