@ukic/canary-react 2.0.0-canary.12 → 2.0.0-canary.14
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/components.d.ts +7 -6
- package/dist/components.js +12 -11
- package/dist/core/core.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/react-component-lib/createComponent.d.ts +10 -10
- package/dist/react-component-lib/createComponent.js +107 -107
- package/dist/react-component-lib/createOverlayComponent.d.ts +21 -21
- package/dist/react-component-lib/createOverlayComponent.js +190 -190
- package/dist/react-component-lib/index.d.ts +2 -2
- package/dist/react-component-lib/index.js +2 -2
- package/dist/react-component-lib/interfaces.d.ts +29 -29
- package/dist/react-component-lib/interfaces.js +1 -1
- package/dist/react-component-lib/utils/attachProps.d.ts +16 -16
- package/dist/react-component-lib/utils/attachProps.js +108 -108
- package/dist/react-component-lib/utils/case.d.ts +2 -2
- package/dist/react-component-lib/utils/case.js +8 -8
- package/dist/react-component-lib/utils/dev.d.ts +2 -2
- package/dist/react-component-lib/utils/dev.js +12 -12
- package/dist/react-component-lib/utils/index.d.ts +10 -10
- package/dist/react-component-lib/utils/index.js +46 -46
- package/package.json +6 -5
- package/dist/react-component-lib/slottedSVG.d.ts +0 -2
- package/dist/react-component-lib/slottedSVG.js +0 -36
package/dist/components.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
import type { JSX } from '@ukic/canary-web-components';
|
2
|
-
export declare const IcDataTable: import("react").ForwardRefExoticComponent<JSX.IcDataTable & Omit<import("react").HTMLAttributes<HTMLIcDataTableElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDataTableElement>>;
|
3
|
-
export declare const
|
4
|
-
export declare const
|
5
|
-
export declare const
|
6
|
-
export declare const
|
1
|
+
import type { JSX } from '@ukic/canary-web-components';
|
2
|
+
export declare const IcDataTable: import("react").ForwardRefExoticComponent<JSX.IcDataTable & Omit<import("react").HTMLAttributes<HTMLIcDataTableElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDataTableElement>>;
|
3
|
+
export declare const IcDateInput: import("react").ForwardRefExoticComponent<JSX.IcDateInput & Omit<import("react").HTMLAttributes<HTMLIcDateInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDateInputElement>>;
|
4
|
+
export declare const IcDatePicker: import("react").ForwardRefExoticComponent<JSX.IcDatePicker & Omit<import("react").HTMLAttributes<HTMLIcDatePickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDatePickerElement>>;
|
5
|
+
export declare const IcMenuWithMulti: import("react").ForwardRefExoticComponent<JSX.IcMenuWithMulti & Omit<import("react").HTMLAttributes<HTMLIcMenuWithMultiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcMenuWithMultiElement>>;
|
6
|
+
export declare const IcPaginationBar: import("react").ForwardRefExoticComponent<JSX.IcPaginationBar & Omit<import("react").HTMLAttributes<HTMLIcPaginationBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcPaginationBarElement>>;
|
7
|
+
export declare const IcSelectWithMulti: import("react").ForwardRefExoticComponent<JSX.IcSelectWithMulti & Omit<import("react").HTMLAttributes<HTMLIcSelectWithMultiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcSelectWithMultiElement>>;
|
package/dist/components.js
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
-
/* eslint-disable */
|
2
|
-
/* tslint:disable */
|
3
|
-
/* auto-generated react proxies */
|
4
|
-
import { createReactComponent } from './react-component-lib';
|
5
|
-
import { defineCustomElements } from '@ukic/canary-web-components/loader';
|
6
|
-
defineCustomElements();
|
7
|
-
export var IcDataTable = /*@__PURE__*/ createReactComponent('ic-data-table');
|
8
|
-
export var
|
9
|
-
export var
|
10
|
-
export var
|
11
|
-
export var
|
1
|
+
/* eslint-disable */
|
2
|
+
/* tslint:disable */
|
3
|
+
/* auto-generated react proxies */
|
4
|
+
import { createReactComponent } from './react-component-lib';
|
5
|
+
import { defineCustomElements } from '@ukic/canary-web-components/loader';
|
6
|
+
defineCustomElements();
|
7
|
+
export var IcDataTable = /*@__PURE__*/ createReactComponent('ic-data-table');
|
8
|
+
export var IcDateInput = /*@__PURE__*/ createReactComponent('ic-date-input');
|
9
|
+
export var IcDatePicker = /*@__PURE__*/ createReactComponent('ic-date-picker');
|
10
|
+
export var IcMenuWithMulti = /*@__PURE__*/ createReactComponent('ic-menu-with-multi');
|
11
|
+
export var IcPaginationBar = /*@__PURE__*/ createReactComponent('ic-pagination-bar');
|
12
|
+
export var IcSelectWithMulti = /*@__PURE__*/ createReactComponent('ic-select-with-multi');
|
package/dist/core/core.css
CHANGED
@@ -104,4 +104,4 @@ html{font-family:var(--ic-font-body-family);color:var(--ic-color-primary-text)}a
|
|
104
104
|
min(255, calc(var(--ic-theme-calc) + 65))
|
105
105
|
min(255, calc(var(--ic-theme-calc) + 70))
|
106
106
|
min(255, calc(var(--ic-theme-calc) + 77)) / 20%
|
107
|
-
);--ic-hyperlink:#1759bc;--ic-hyperlink-visited:#330072;--ic-hyperlink-hover:#7c2855;--ic-hyperlink-contrast:#5c98f2;--ic-hyperlink-contrast-visited:#bc75ff;--ic-hyperlink-contrast-hover:#db76ac;--ic-focus-blue:#0044d7;--ic-focus-glow:#80a1e8;--ic-hc-focus-outline:3px solid transparent;--ic-table-row-selected:#c7d7ef;--ic-breakpoint-xs:0;--ic-breakpoint-sm:576px;--ic-breakpoint-md:768px;--ic-breakpoint-lg:992px;--ic-breakpoint-xl:1200px;--ic-space-1px:0.063rem;--ic-space-xxxs:0.125rem;--ic-space-xxs:0.25rem;--ic-space-xs:0.5rem;--ic-space-sm:0.75rem;--ic-space-md:1rem;--ic-space-lg:1.5rem;--ic-space-xl:2rem;--ic-space-xxl:3rem;--ic-z-index-base-value:0;--ic-z-index-page-header:calc(var(--ic-z-index-base-value) + 10);--ic-z-index-back-to-top:calc(var(--ic-z-index-base-value) + 20);--ic-z-index-popover:calc(var(--ic-z-index-base-value) + 50);--ic-z-index-sticky-page-header:calc(var(--ic-z-index-base-value) + 60);--ic-z-index-navigation-item:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-navigation-menu:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-menu:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-side-navigation:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-dialog:calc(var(--ic-z-index-base-value) + 100);--ic-z-index-toast:calc(var(--ic-z-index-base-value) + 110);--ic-z-index-tooltip:calc(var(--ic-z-index-base-value) + 110);--ic-z-index-classification-banner:calc(var(--ic-z-index-base-value) + 200)}
|
107
|
+
);--ic-hyperlink:#1759bc;--ic-hyperlink-visited:#330072;--ic-hyperlink-hover:#7c2855;--ic-hyperlink-contrast:#5c98f2;--ic-hyperlink-contrast-visited:#bc75ff;--ic-hyperlink-contrast-hover:#db76ac;--ic-focus-blue:#0044d7;--ic-focus-glow:#80a1e8;--ic-hc-focus-outline:3px solid transparent;--ic-table-row-selected:#c7d7ef;--ic-breakpoint-xs:0;--ic-breakpoint-sm:576px;--ic-breakpoint-md:768px;--ic-breakpoint-lg:992px;--ic-breakpoint-xl:1200px;--ic-space-1px:0.063rem;--ic-space-xxxs:0.125rem;--ic-space-xxs:0.25rem;--ic-space-xs:0.5rem;--ic-space-sm:0.75rem;--ic-space-md:1rem;--ic-space-lg:1.5rem;--ic-space-xl:2rem;--ic-space-xxl:3rem;--ic-z-index-base-value:0;--ic-z-index-page-header:calc(var(--ic-z-index-base-value) + 10);--ic-z-index-back-to-top:calc(var(--ic-z-index-base-value) + 20);--ic-z-index-date-picker:calc(var(--ic-z-index-base-value) + 50);--ic-z-index-popover:calc(var(--ic-z-index-base-value) + 50);--ic-z-index-sticky-page-header:calc(var(--ic-z-index-base-value) + 60);--ic-z-index-navigation-item:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-navigation-menu:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-menu:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-side-navigation:calc(var(--ic-z-index-base-value) + 70);--ic-z-index-dialog:calc(var(--ic-z-index-base-value) + 100);--ic-z-index-toast:calc(var(--ic-z-index-base-value) + 110);--ic-z-index-tooltip:calc(var(--ic-z-index-base-value) + 110);--ic-z-index-classification-banner:calc(var(--ic-z-index-base-value) + 200)}
|
package/dist/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./components";
|
1
|
+
export * from "./components";
|
package/dist/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./components";
|
1
|
+
export * from "./components";
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
export interface HTMLStencilElement extends HTMLElement {
|
3
|
-
componentOnReady(): Promise<this>;
|
4
|
-
}
|
5
|
-
interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
|
6
|
-
forwardedRef: React.RefObject<ElementType>;
|
7
|
-
ref?: React.Ref<any>;
|
8
|
-
}
|
9
|
-
export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
|
10
|
-
export {};
|
1
|
+
import React from 'react';
|
2
|
+
export interface HTMLStencilElement extends HTMLElement {
|
3
|
+
componentOnReady(): Promise<this>;
|
4
|
+
}
|
5
|
+
interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
|
6
|
+
forwardedRef: React.RefObject<ElementType>;
|
7
|
+
ref?: React.Ref<any>;
|
8
|
+
}
|
9
|
+
export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
|
10
|
+
export {};
|
@@ -1,107 +1,107 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
if (typeof b !== "function" && b !== null)
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
11
|
-
extendStatics(d, b);
|
12
|
-
function __() { this.constructor = d; }
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
14
|
-
};
|
15
|
-
})();
|
16
|
-
var __assign = (this && this.__assign) || function () {
|
17
|
-
__assign = Object.assign || function(t) {
|
18
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
19
|
-
s = arguments[i];
|
20
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
21
|
-
t[p] = s[p];
|
22
|
-
}
|
23
|
-
return t;
|
24
|
-
};
|
25
|
-
return __assign.apply(this, arguments);
|
26
|
-
};
|
27
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
28
|
-
var t = {};
|
29
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
30
|
-
t[p] = s[p];
|
31
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
32
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
33
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
34
|
-
t[p[i]] = s[p[i]];
|
35
|
-
}
|
36
|
-
return t;
|
37
|
-
};
|
38
|
-
import React, { createElement } from 'react';
|
39
|
-
import { attachProps, camelToDashCase, createForwardRef, dashToPascalCase, isCoveredByReact, mergeRefs } from './utils';
|
40
|
-
export var createReactComponent = function (tagName, ReactComponentContext, manipulatePropsFunction, defineCustomElement) {
|
41
|
-
if (defineCustomElement !== undefined) {
|
42
|
-
defineCustomElement();
|
43
|
-
}
|
44
|
-
var displayName = dashToPascalCase(tagName);
|
45
|
-
var ReactComponent = /** @class */ (function (_super) {
|
46
|
-
__extends(class_1, _super);
|
47
|
-
function class_1(props) {
|
48
|
-
var _this = _super.call(this, props) || this;
|
49
|
-
_this.setComponentElRef = function (element) {
|
50
|
-
_this.componentEl = element;
|
51
|
-
};
|
52
|
-
return _this;
|
53
|
-
}
|
54
|
-
class_1.prototype.componentDidMount = function () {
|
55
|
-
this.componentDidUpdate(this.props);
|
56
|
-
};
|
57
|
-
class_1.prototype.componentDidUpdate = function (prevProps) {
|
58
|
-
attachProps(this.componentEl, this.props, prevProps);
|
59
|
-
};
|
60
|
-
class_1.prototype.render = function () {
|
61
|
-
var _a = this.props, children = _a.children, forwardedRef = _a.forwardedRef, style = _a.style, className = _a.className, ref = _a.ref, cProps = __rest(_a, ["children", "forwardedRef", "style", "className", "ref"]);
|
62
|
-
var propsToPass = Object.keys(cProps).reduce(function (acc, name) {
|
63
|
-
var value = cProps[name];
|
64
|
-
if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
|
65
|
-
var eventName = name.substring(2).toLowerCase();
|
66
|
-
if (typeof document !== 'undefined' && isCoveredByReact(eventName)) {
|
67
|
-
acc[name] = value;
|
68
|
-
}
|
69
|
-
}
|
70
|
-
else {
|
71
|
-
// we should only render strings, booleans, and numbers as attrs in html.
|
72
|
-
// objects, functions, arrays etc get synced via properties on mount.
|
73
|
-
var type = typeof value;
|
74
|
-
if (type === 'string' || type === 'boolean' || type === 'number') {
|
75
|
-
acc[camelToDashCase(name)] = value;
|
76
|
-
}
|
77
|
-
}
|
78
|
-
return acc;
|
79
|
-
}, {});
|
80
|
-
if (manipulatePropsFunction) {
|
81
|
-
propsToPass = manipulatePropsFunction(this.props, propsToPass);
|
82
|
-
}
|
83
|
-
var newProps = __assign(__assign({}, propsToPass), { ref: mergeRefs(forwardedRef, this.setComponentElRef), style: style });
|
84
|
-
/**
|
85
|
-
* We use createElement here instead of
|
86
|
-
* React.createElement to work around a
|
87
|
-
* bug in Vite (https://github.com/vitejs/vite/issues/6104).
|
88
|
-
* React.createElement causes all elements to be rendered
|
89
|
-
* as <tagname> instead of the actual Web Component.
|
90
|
-
*/
|
91
|
-
return createElement(tagName, newProps, children);
|
92
|
-
};
|
93
|
-
Object.defineProperty(class_1, "displayName", {
|
94
|
-
get: function () {
|
95
|
-
return displayName;
|
96
|
-
},
|
97
|
-
enumerable: false,
|
98
|
-
configurable: true
|
99
|
-
});
|
100
|
-
return class_1;
|
101
|
-
}(React.Component));
|
102
|
-
// If context was passed to createReactComponent then conditionally add it to the Component Class
|
103
|
-
if (ReactComponentContext) {
|
104
|
-
ReactComponent.contextType = ReactComponentContext;
|
105
|
-
}
|
106
|
-
return createForwardRef(ReactComponent, displayName);
|
107
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
if (typeof b !== "function" && b !== null)
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
11
|
+
extendStatics(d, b);
|
12
|
+
function __() { this.constructor = d; }
|
13
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
14
|
+
};
|
15
|
+
})();
|
16
|
+
var __assign = (this && this.__assign) || function () {
|
17
|
+
__assign = Object.assign || function(t) {
|
18
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
19
|
+
s = arguments[i];
|
20
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
21
|
+
t[p] = s[p];
|
22
|
+
}
|
23
|
+
return t;
|
24
|
+
};
|
25
|
+
return __assign.apply(this, arguments);
|
26
|
+
};
|
27
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
28
|
+
var t = {};
|
29
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
30
|
+
t[p] = s[p];
|
31
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
32
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
33
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
34
|
+
t[p[i]] = s[p[i]];
|
35
|
+
}
|
36
|
+
return t;
|
37
|
+
};
|
38
|
+
import React, { createElement } from 'react';
|
39
|
+
import { attachProps, camelToDashCase, createForwardRef, dashToPascalCase, isCoveredByReact, mergeRefs } from './utils';
|
40
|
+
export var createReactComponent = function (tagName, ReactComponentContext, manipulatePropsFunction, defineCustomElement) {
|
41
|
+
if (defineCustomElement !== undefined) {
|
42
|
+
defineCustomElement();
|
43
|
+
}
|
44
|
+
var displayName = dashToPascalCase(tagName);
|
45
|
+
var ReactComponent = /** @class */ (function (_super) {
|
46
|
+
__extends(class_1, _super);
|
47
|
+
function class_1(props) {
|
48
|
+
var _this = _super.call(this, props) || this;
|
49
|
+
_this.setComponentElRef = function (element) {
|
50
|
+
_this.componentEl = element;
|
51
|
+
};
|
52
|
+
return _this;
|
53
|
+
}
|
54
|
+
class_1.prototype.componentDidMount = function () {
|
55
|
+
this.componentDidUpdate(this.props);
|
56
|
+
};
|
57
|
+
class_1.prototype.componentDidUpdate = function (prevProps) {
|
58
|
+
attachProps(this.componentEl, this.props, prevProps);
|
59
|
+
};
|
60
|
+
class_1.prototype.render = function () {
|
61
|
+
var _a = this.props, children = _a.children, forwardedRef = _a.forwardedRef, style = _a.style, className = _a.className, ref = _a.ref, cProps = __rest(_a, ["children", "forwardedRef", "style", "className", "ref"]);
|
62
|
+
var propsToPass = Object.keys(cProps).reduce(function (acc, name) {
|
63
|
+
var value = cProps[name];
|
64
|
+
if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
|
65
|
+
var eventName = name.substring(2).toLowerCase();
|
66
|
+
if (typeof document !== 'undefined' && isCoveredByReact(eventName)) {
|
67
|
+
acc[name] = value;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
else {
|
71
|
+
// we should only render strings, booleans, and numbers as attrs in html.
|
72
|
+
// objects, functions, arrays etc get synced via properties on mount.
|
73
|
+
var type = typeof value;
|
74
|
+
if (type === 'string' || type === 'boolean' || type === 'number') {
|
75
|
+
acc[camelToDashCase(name)] = value;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
return acc;
|
79
|
+
}, {});
|
80
|
+
if (manipulatePropsFunction) {
|
81
|
+
propsToPass = manipulatePropsFunction(this.props, propsToPass);
|
82
|
+
}
|
83
|
+
var newProps = __assign(__assign({}, propsToPass), { ref: mergeRefs(forwardedRef, this.setComponentElRef), style: style });
|
84
|
+
/**
|
85
|
+
* We use createElement here instead of
|
86
|
+
* React.createElement to work around a
|
87
|
+
* bug in Vite (https://github.com/vitejs/vite/issues/6104).
|
88
|
+
* React.createElement causes all elements to be rendered
|
89
|
+
* as <tagname> instead of the actual Web Component.
|
90
|
+
*/
|
91
|
+
return createElement(tagName, newProps, children);
|
92
|
+
};
|
93
|
+
Object.defineProperty(class_1, "displayName", {
|
94
|
+
get: function () {
|
95
|
+
return displayName;
|
96
|
+
},
|
97
|
+
enumerable: false,
|
98
|
+
configurable: true
|
99
|
+
});
|
100
|
+
return class_1;
|
101
|
+
}(React.Component));
|
102
|
+
// If context was passed to createReactComponent then conditionally add it to the Component Class
|
103
|
+
if (ReactComponentContext) {
|
104
|
+
ReactComponent.contextType = ReactComponentContext;
|
105
|
+
}
|
106
|
+
return createForwardRef(ReactComponent, displayName);
|
107
|
+
};
|
@@ -1,21 +1,21 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { OverlayEventDetail } from './interfaces';
|
3
|
-
import { StencilReactForwardedRef } from './utils';
|
4
|
-
interface OverlayElement extends HTMLElement {
|
5
|
-
present: () => Promise<void>;
|
6
|
-
dismiss: (data?: any, role?: string | undefined) => Promise<boolean>;
|
7
|
-
}
|
8
|
-
export interface ReactOverlayProps {
|
9
|
-
children?: React.ReactNode;
|
10
|
-
isOpen: boolean;
|
11
|
-
onDidDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
12
|
-
onDidPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
13
|
-
onWillDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
14
|
-
onWillPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
15
|
-
}
|
16
|
-
export declare const createOverlayComponent: <OverlayComponent extends object, OverlayType extends OverlayElement>(tagName: string, controller: {
|
17
|
-
create: (options: any) => Promise<OverlayType>;
|
18
|
-
}, customElement?: any) => React.ForwardRefExoticComponent<React.PropsWithoutRef<OverlayComponent & ReactOverlayProps & {
|
19
|
-
forwardedRef?: StencilReactForwardedRef<OverlayType>;
|
20
|
-
}> & React.RefAttributes<OverlayType>>;
|
21
|
-
export {};
|
1
|
+
import React from 'react';
|
2
|
+
import { OverlayEventDetail } from './interfaces';
|
3
|
+
import { StencilReactForwardedRef } from './utils';
|
4
|
+
interface OverlayElement extends HTMLElement {
|
5
|
+
present: () => Promise<void>;
|
6
|
+
dismiss: (data?: any, role?: string | undefined) => Promise<boolean>;
|
7
|
+
}
|
8
|
+
export interface ReactOverlayProps {
|
9
|
+
children?: React.ReactNode;
|
10
|
+
isOpen: boolean;
|
11
|
+
onDidDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
12
|
+
onDidPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
13
|
+
onWillDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
14
|
+
onWillPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
15
|
+
}
|
16
|
+
export declare const createOverlayComponent: <OverlayComponent extends object, OverlayType extends OverlayElement>(tagName: string, controller: {
|
17
|
+
create: (options: any) => Promise<OverlayType>;
|
18
|
+
}, customElement?: any) => React.ForwardRefExoticComponent<React.PropsWithoutRef<OverlayComponent & ReactOverlayProps & {
|
19
|
+
forwardedRef?: StencilReactForwardedRef<OverlayType>;
|
20
|
+
}> & React.RefAttributes<OverlayType>>;
|
21
|
+
export {};
|