@actabldesign/bellhop-react 0.0.10 → 0.0.12
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 +38 -38
- package/dist/components/stencil-generated/components.js +7 -0
- package/dist/components/stencil-generated/components.server.d.ts +2 -6
- package/dist/components/stencil-generated/components.server.d.ts.map +1 -1
- package/dist/components/stencil-generated/components.server.js +1671 -0
- package/dist/components/stencil-generated/index.js +6 -0
- package/dist/components/table/DataTable.js +514 -0
- package/dist/components/table/index.js +95 -0
- package/dist/index.js +8 -14
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -12387,8 +12387,8 @@ var BhPagination = typeof window !== "undefined" ? /* @__PURE__ */ E({
|
|
|
12387
12387
|
pageSize: "page-size",
|
|
12388
12388
|
showPageSizeSelector: "show-page-size-selector",
|
|
12389
12389
|
showItemCount: "show-item-count",
|
|
12390
|
-
|
|
12391
|
-
|
|
12390
|
+
compact: "compact",
|
|
12391
|
+
maxPageNumbers: "max-page-numbers",
|
|
12392
12392
|
disabled: "disabled",
|
|
12393
12393
|
rowsPerPageLabel: "rows-per-page-label",
|
|
12394
12394
|
showingResultsLabel: "showing-results-label",
|
|
@@ -12445,23 +12445,15 @@ var BhPopover = typeof window !== "undefined" ? /* @__PURE__ */ E({
|
|
|
12445
12445
|
elementClass: BhPopoverElement,
|
|
12446
12446
|
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
12447
12447
|
react: React,
|
|
12448
|
-
events: {
|
|
12449
|
-
onBhItemSelect: "bhItemSelect",
|
|
12450
|
-
onBhPortfolioClick: "bhPortfolioClick",
|
|
12451
|
-
onBhSearchChange: "bhSearchChange"
|
|
12452
|
-
},
|
|
12448
|
+
events: {},
|
|
12453
12449
|
defineCustomElement: defineBhPopover
|
|
12454
12450
|
}) : /* @__PURE__ */ h({
|
|
12455
12451
|
tagName: "bh-popover",
|
|
12456
12452
|
properties: {
|
|
12457
12453
|
popoverTitle: "popover-title",
|
|
12458
|
-
|
|
12459
|
-
|
|
12460
|
-
|
|
12461
|
-
showSearch: "show-search",
|
|
12462
|
-
showAvatar: "show-avatar",
|
|
12463
|
-
avatarSrc: "avatar-src",
|
|
12464
|
-
items: "items"
|
|
12454
|
+
content: "content",
|
|
12455
|
+
maxWidth: "max-width",
|
|
12456
|
+
position: "position"
|
|
12465
12457
|
},
|
|
12466
12458
|
hydrateModule: import("@actabldesign/bellhop-core/hydrate")
|
|
12467
12459
|
});
|
|
@@ -12531,6 +12523,8 @@ var BhSidebar = typeof window !== "undefined" ? /* @__PURE__ */ E({
|
|
|
12531
12523
|
tagName: "bh-sidebar",
|
|
12532
12524
|
properties: {
|
|
12533
12525
|
logoType: "logo-type",
|
|
12526
|
+
logoSrc: "logo-src",
|
|
12527
|
+
assetBasePath: "asset-base-path",
|
|
12534
12528
|
avatarUrl: "avatar-url",
|
|
12535
12529
|
avatarInitials: "avatar-initials",
|
|
12536
12530
|
avatarName: "avatar-name",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actabldesign/bellhop-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "React components for Bellhop - Stencil wrappers and native React table primitives",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"build:watch": "tsc --watch"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@actabldesign/bellhop-core": "^0.0.
|
|
31
|
+
"@actabldesign/bellhop-core": "^0.0.8",
|
|
32
32
|
"@stencil/react-output-target": "^1.0.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|