@planningcenter/tapestry 1.1.0-rc.7 → 1.1.0-rc.9
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/ext/@stencil/core/internal/client/index.js +1 -17
- package/dist/ext/@stencil/core/internal/client/index.js.map +1 -1
- package/dist/index.css +128 -98
- package/dist/index.css.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/popover-container.js +723 -0
- package/dist/packages/tapestry-wc/dist/components/popover-container.js.map +1 -0
- package/dist/packages/tapestry-wc/dist/components/sidenav-item-enhancer.js +2 -2
- package/dist/packages/tapestry-wc/dist/components/sidenav-item-enhancer.js.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/sidenav-popover.js +93 -0
- package/dist/packages/tapestry-wc/dist/components/sidenav-popover.js.map +1 -0
- package/dist/packages/tapestry-wc/dist/components/tds-page-header.js +1 -1
- package/dist/packages/tapestry-wc/dist/components/tds-page-header.js.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-item.js +3 -3
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-item.js.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-responsive-header.js +22 -8
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-responsive-header.js.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-section.js +2 -2
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav-section.js.map +1 -1
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav.js +17 -16
- package/dist/packages/tapestry-wc/dist/components/tds-sidenav.js.map +1 -1
- package/dist/unstable.css +128 -98
- package/dist/unstable.css.map +1 -1
- package/dist/webComponents.css +128 -98
- package/dist/webComponents.css.map +1 -1
- package/package.json +3 -3
- package/react-types/index.d.ts +12 -4
|
@@ -466,22 +466,6 @@ var parsePropertyValue = (propValue, propType) => {
|
|
|
466
466
|
}
|
|
467
467
|
return propValue;
|
|
468
468
|
};
|
|
469
|
-
var getElement = (ref) => ref;
|
|
470
|
-
|
|
471
|
-
// src/runtime/event-emitter.ts
|
|
472
|
-
var createEvent = (ref, name, flags) => {
|
|
473
|
-
const elm = getElement(ref);
|
|
474
|
-
return {
|
|
475
|
-
emit: (detail) => {
|
|
476
|
-
return emitEvent(elm, name, {
|
|
477
|
-
bubbles: !!(flags & 4 /* Bubbles */),
|
|
478
|
-
composed: !!(flags & 2 /* Composed */),
|
|
479
|
-
cancelable: !!(flags & 1 /* Cancellable */),
|
|
480
|
-
detail
|
|
481
|
-
});
|
|
482
|
-
}
|
|
483
|
-
};
|
|
484
|
-
};
|
|
485
469
|
var emitEvent = (elm, name, opts) => {
|
|
486
470
|
const ev = plt.ce(name, opts);
|
|
487
471
|
elm.dispatchEvent(ev);
|
|
@@ -1754,5 +1738,5 @@ var hostListenerOpts = (flags) => supportsListenerOptions ? {
|
|
|
1754
1738
|
capture: (flags & 2 /* Capture */) !== 0
|
|
1755
1739
|
} : (flags & 2 /* Capture */) !== 0;
|
|
1756
1740
|
|
|
1757
|
-
export { BUILD, H, H as HTMLElement, Host, NAMESPACE, addHostEventListeners, connectedCallback, consoleError,
|
|
1741
|
+
export { BUILD, H, H as HTMLElement, Host, NAMESPACE, addHostEventListeners, connectedCallback, consoleError, disconnectedCallback, getHostRef, getValue, h, isMemberInElement, modeResolutionChain, nextTick, parsePropertyValue, plt, postUpdateComponent, promiseResolve, proxyComponent, proxyCustomElement, registerHost, renderVdom, setValue, styles, supportsConstructableStylesheets, supportsListenerOptions, win, writeTask };
|
|
1758
1742
|
//# sourceMappingURL=index.js.map
|