@shoper/phoenix_design_system 0.2.1 → 0.2.2-2
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/build/cjs/external/lit-html/async-directive.js +16 -0
- package/build/cjs/external/lit-html/async-directive.js.map +1 -0
- package/build/cjs/external/lit-html/directive-helpers.js +14 -0
- package/build/cjs/external/lit-html/directive-helpers.js.map +1 -0
- package/build/cjs/external/lit-html/directive.js +15 -0
- package/build/cjs/external/lit-html/directive.js.map +1 -0
- package/build/cjs/external/lit-html/directives/ref.js +17 -0
- package/build/cjs/external/lit-html/directives/ref.js.map +1 -0
- package/build/cjs/external/lit-html/lit-html.js +14 -0
- package/build/cjs/external/lit-html/lit-html.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal.js +206 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_backdrop.js +65 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_backdrop.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_body.js +19 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_body.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_close.js +41 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_close.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_constants.js +19 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_constants.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_footer.js +19 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_footer.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_header.js +19 -0
- package/build/cjs/packages/phoenix/src/components/modal/modal_header.js.map +1 -0
- package/build/cjs/packages/phoenix/src/components/portal/portal.js +10 -5
- package/build/cjs/packages/phoenix/src/components/portal/portal.js.map +1 -1
- package/build/cjs/packages/phoenix/src/components/portal/portal_constants.js +3 -1
- package/build/cjs/packages/phoenix/src/components/portal/portal_constants.js.map +1 -1
- package/build/cjs/packages/phoenix/src/components/portal/portal_target.js +7 -7
- package/build/cjs/packages/phoenix/src/core/phoenix_light_lit_element.js +34 -1
- package/build/cjs/packages/phoenix/src/core/phoenix_light_lit_element.js.map +1 -1
- package/build/cjs/packages/phoenix/src/core/phoenix_light_lit_elements_constants.js +8 -0
- package/build/cjs/packages/phoenix/src/core/phoenix_light_lit_elements_constants.js.map +1 -0
- package/build/cjs/packages/phoenix/src/index.js +45 -3
- package/build/cjs/packages/phoenix/src/index.js.map +1 -1
- package/build/esm/external/lit-html/async-directive.js +12 -0
- package/build/esm/external/lit-html/async-directive.js.map +1 -0
- package/build/esm/external/lit-html/directive-helpers.js +10 -0
- package/build/esm/external/lit-html/directive-helpers.js.map +1 -0
- package/build/esm/external/lit-html/directive.js +9 -0
- package/build/esm/external/lit-html/directive.js.map +1 -0
- package/build/esm/external/lit-html/directives/ref.js +12 -0
- package/build/esm/external/lit-html/directives/ref.js.map +1 -0
- package/build/esm/external/lit-html/lit-html.js +9 -0
- package/build/esm/external/lit-html/lit-html.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal.d.ts +31 -0
- package/build/esm/packages/phoenix/src/components/modal/modal.js +204 -0
- package/build/esm/packages/phoenix/src/components/modal/modal.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_backdrop.d.ts +12 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_backdrop.js +63 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_backdrop.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_body.d.ts +4 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_body.js +17 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_body.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_close.d.ts +8 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_close.js +39 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_close.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_constants.d.ts +9 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_constants.js +12 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_constants.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_footer.d.ts +4 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_footer.js +17 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_footer.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_header.d.ts +4 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_header.js +17 -0
- package/build/esm/packages/phoenix/src/components/modal/modal_header.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/portal/portal.d.ts +1 -1
- package/build/esm/packages/phoenix/src/components/portal/portal.js +10 -5
- package/build/esm/packages/phoenix/src/components/portal/portal.js.map +1 -1
- package/build/esm/packages/phoenix/src/components/portal/portal_constants.d.ts +3 -0
- package/build/esm/packages/phoenix/src/components/portal/portal_constants.js +3 -2
- package/build/esm/packages/phoenix/src/components/portal/portal_constants.js.map +1 -1
- package/build/esm/packages/phoenix/src/components/portal/portal_target.js +7 -7
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_element.d.ts +6 -1
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_element.js +35 -2
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_element.js.map +1 -1
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_elements_constants.d.ts +1 -0
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_elements_constants.js +4 -0
- package/build/esm/packages/phoenix/src/core/phoenix_light_lit_elements_constants.js.map +1 -0
- package/build/esm/packages/phoenix/src/index.d.ts +6 -0
- package/build/esm/packages/phoenix/src/index.js +7 -1
- package/build/esm/packages/phoenix/src/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const MODALS_PORTAL_NAME = "modals";
|
|
2
|
+
export declare const MODAL_EVENTS: {
|
|
3
|
+
open: string;
|
|
4
|
+
close: string;
|
|
5
|
+
opened: string;
|
|
6
|
+
closed: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const MODAL_OPENED_PROP = "opened";
|
|
9
|
+
export declare const FOCUSABLE_ELEMENTS_WITHIN_MODAL = "button, [href], input, select, textarea, [tabindex]:not([tabindex=\"-1\"])";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const MODALS_PORTAL_NAME = 'modals';
|
|
2
|
+
const MODAL_EVENTS = {
|
|
3
|
+
open: 'modal.open',
|
|
4
|
+
close: 'modal.close',
|
|
5
|
+
opened: 'modal.opened',
|
|
6
|
+
closed: 'modal.closed'
|
|
7
|
+
};
|
|
8
|
+
const MODAL_OPENED_PROP = 'opened';
|
|
9
|
+
const FOCUSABLE_ELEMENTS_WITHIN_MODAL = 'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])';
|
|
10
|
+
|
|
11
|
+
export { FOCUSABLE_ELEMENTS_WITHIN_MODAL, MODALS_PORTAL_NAME, MODAL_EVENTS, MODAL_OPENED_PROP };
|
|
12
|
+
//# sourceMappingURL=modal_constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { __decorate, __metadata } from '../../../../../external/tslib/tslib.es6.js';
|
|
2
|
+
import { customElement } from 'lit/decorators';
|
|
3
|
+
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
4
|
+
|
|
5
|
+
let HModalFooter = class HModalFooter extends PhoenixLightLitElement {
|
|
6
|
+
constructor() {
|
|
7
|
+
super();
|
|
8
|
+
this.slot = this.hasAttribute('slot') ? this.slot : 'footer';
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
HModalFooter = __decorate([
|
|
12
|
+
customElement('h-modal-footer'),
|
|
13
|
+
__metadata("design:paramtypes", [])
|
|
14
|
+
], HModalFooter);
|
|
15
|
+
|
|
16
|
+
export { HModalFooter };
|
|
17
|
+
//# sourceMappingURL=modal_footer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,4CAAgD;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { __decorate, __metadata } from '../../../../../external/tslib/tslib.es6.js';
|
|
2
|
+
import { customElement } from 'lit/decorators';
|
|
3
|
+
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
4
|
+
|
|
5
|
+
let HModalHeader = class HModalHeader extends PhoenixLightLitElement {
|
|
6
|
+
constructor() {
|
|
7
|
+
super();
|
|
8
|
+
this.slot = this.hasAttribute('slot') ? this.slot : 'header';
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
HModalHeader = __decorate([
|
|
12
|
+
customElement('h-modal-header'),
|
|
13
|
+
__metadata("design:paramtypes", [])
|
|
14
|
+
], HModalHeader);
|
|
15
|
+
|
|
16
|
+
export { HModalHeader };
|
|
17
|
+
//# sourceMappingURL=modal_header.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,4CAAgD;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -6,7 +6,7 @@ export declare class HPortal extends PhoenixLightLitElement {
|
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
constructor();
|
|
8
8
|
firstUpdated(): void;
|
|
9
|
-
updated(
|
|
9
|
+
updated(): void;
|
|
10
10
|
disconnectedCallback(): void;
|
|
11
11
|
openPortal(): void;
|
|
12
12
|
closePortal(): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate, __metadata } from '../../../../../external/tslib/tslib.es6.js';
|
|
2
|
-
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
3
2
|
import { state, property, customElement } from 'lit/decorators';
|
|
3
|
+
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
4
4
|
import { PORTAL_EVENTS } from './portal_constants.js';
|
|
5
5
|
import v4 from '../../../../../external/uuid/dist/esm-browser/v4.js';
|
|
6
6
|
|
|
@@ -19,12 +19,17 @@ let HPortal = class HPortal extends PhoenixLightLitElement {
|
|
|
19
19
|
this.openPortal();
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
-
updated(
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
updated() {
|
|
23
|
+
if (this.children.length > 0) {
|
|
24
|
+
if (!this.disabled) {
|
|
25
|
+
this._initialChildren = [...this.children];
|
|
26
|
+
this.openPortal();
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
if (this.disabled === true) {
|
|
25
30
|
this.closePortal();
|
|
26
31
|
}
|
|
27
|
-
else if (
|
|
32
|
+
else if (this.disabled === false) {
|
|
28
33
|
this.openPortal();
|
|
29
34
|
}
|
|
30
35
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,4CAAgD;AACvF;AACA;AACA;AACA,eAAe,qDAAyD;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,4CAAgD;AACvF;AACA;AACA;AACA,eAAe,qDAAyD;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { HPortal } from './portal';
|
|
2
|
+
import { HPortalTarget } from './portal_target';
|
|
2
3
|
export declare const PORTAL_EVENTS: {
|
|
3
4
|
open: string;
|
|
4
5
|
close: string;
|
|
5
6
|
};
|
|
7
|
+
export declare const PORTAL_TARGET_NAME_PROP = "name";
|
|
6
8
|
declare global {
|
|
7
9
|
interface HTMLElementTagNameMap {
|
|
8
10
|
'h-portal': HPortal;
|
|
11
|
+
'h-portal-target': HPortalTarget;
|
|
9
12
|
}
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { __decorate, __metadata } from '../../../../../external/tslib/tslib.es6.js';
|
|
2
|
-
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
3
2
|
import { property, state, customElement } from 'lit/decorators';
|
|
4
|
-
import {
|
|
3
|
+
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element.js';
|
|
5
4
|
import { PortalTargetError } from './portal_target_error.js';
|
|
5
|
+
import { PORTAL_EVENTS, PORTAL_TARGET_NAME_PROP } from './portal_constants.js';
|
|
6
6
|
|
|
7
7
|
var HPortalTarget_1;
|
|
8
8
|
let HPortalTarget = HPortalTarget_1 = class HPortalTarget extends PhoenixLightLitElement {
|
|
@@ -44,17 +44,17 @@ let HPortalTarget = HPortalTarget_1 = class HPortalTarget extends PhoenixLightLi
|
|
|
44
44
|
super.disconnectedCallback();
|
|
45
45
|
document.removeEventListener(PORTAL_EVENTS.open, this.portalElements);
|
|
46
46
|
document.removeEventListener(PORTAL_EVENTS.close, this.removeTeleportedItems);
|
|
47
|
-
HPortalTarget_1.portalTargetsNames.delete(this
|
|
47
|
+
HPortalTarget_1.portalTargetsNames.delete(this[PORTAL_TARGET_NAME_PROP]);
|
|
48
48
|
}
|
|
49
49
|
doesDestinationMatch(destination) {
|
|
50
|
-
return destination === this
|
|
50
|
+
return destination === this[PORTAL_TARGET_NAME_PROP];
|
|
51
51
|
}
|
|
52
52
|
allowOnlyOnePortalTargetWithName() {
|
|
53
|
-
if (HPortalTarget_1.portalTargetsNames.has(this
|
|
53
|
+
if (HPortalTarget_1.portalTargetsNames.has(this[PORTAL_TARGET_NAME_PROP])) {
|
|
54
54
|
this.remove();
|
|
55
|
-
throw new PortalTargetError(`Portal target with name "${this
|
|
55
|
+
throw new PortalTargetError(`Portal target with name "${this[PORTAL_TARGET_NAME_PROP]}" already exists.`);
|
|
56
56
|
}
|
|
57
|
-
HPortalTarget_1.portalTargetsNames.add(this
|
|
57
|
+
HPortalTarget_1.portalTargetsNames.add(this[PORTAL_TARGET_NAME_PROP]);
|
|
58
58
|
}
|
|
59
59
|
};
|
|
60
60
|
HPortalTarget.portalTargetsNames = new Set();
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
1
|
+
import { LitElement, TemplateResult, nothing } from 'lit';
|
|
2
2
|
export declare class PhoenixLightLitElement extends LitElement {
|
|
3
|
+
_slots: Record<string, TemplateResult[]>;
|
|
4
|
+
constructor();
|
|
5
|
+
connectedCallback(): void;
|
|
6
|
+
private _assignSlots;
|
|
7
|
+
getSlot(name: string): TemplateResult[] | typeof nothing;
|
|
3
8
|
createRenderRoot(): PhoenixLightLitElement;
|
|
4
9
|
}
|
|
@@ -1,10 +1,43 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { __decorate, __metadata } from '../../../../external/tslib/tslib.es6.js';
|
|
2
|
+
import { LitElement, html, nothing } from 'lit';
|
|
3
|
+
import { DEFAULT_SLOT_NAME } from './phoenix_light_lit_elements_constants.js';
|
|
4
|
+
import { state } from 'lit/decorators';
|
|
2
5
|
|
|
3
6
|
class PhoenixLightLitElement extends LitElement {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
this._slots = {};
|
|
10
|
+
}
|
|
11
|
+
connectedCallback() {
|
|
12
|
+
super.connectedCallback();
|
|
13
|
+
this._slots = this._assignSlots();
|
|
14
|
+
}
|
|
15
|
+
_assignSlots() {
|
|
16
|
+
return [...this.querySelectorAll('[slot]')].reduce((acc, $el) => {
|
|
17
|
+
var _a;
|
|
18
|
+
const slotName = $el.slot || DEFAULT_SLOT_NAME;
|
|
19
|
+
acc[slotName] = acc[slotName] || [];
|
|
20
|
+
acc[slotName].push(html `${$el}`);
|
|
21
|
+
(_a = $el.parentElement) === null || _a === void 0 ? void 0 : _a.removeChild($el);
|
|
22
|
+
$el.removeAttribute('slot');
|
|
23
|
+
return acc;
|
|
24
|
+
}, this._slots);
|
|
25
|
+
}
|
|
26
|
+
getSlot(name) {
|
|
27
|
+
try {
|
|
28
|
+
return this._slots[name];
|
|
29
|
+
}
|
|
30
|
+
catch (_a) { }
|
|
31
|
+
return nothing;
|
|
32
|
+
}
|
|
4
33
|
createRenderRoot() {
|
|
5
34
|
return this;
|
|
6
35
|
}
|
|
7
|
-
}
|
|
36
|
+
}
|
|
37
|
+
__decorate([
|
|
38
|
+
state(),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], PhoenixLightLitElement.prototype, "_slots", void 0);
|
|
8
41
|
|
|
9
42
|
export { PhoenixLightLitElement };
|
|
10
43
|
//# sourceMappingURL=phoenix_light_lit_element.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,yCAA6C;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEFAULT_SLOT_NAME = "default";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;"}
|
|
@@ -4,3 +4,9 @@ export { PhoenixLightLitElement } from "./core/phoenix_light_lit_element";
|
|
|
4
4
|
export { HelloButton } from './hello_button';
|
|
5
5
|
export { HPortal } from './components/portal/portal';
|
|
6
6
|
export { HPortalTarget } from './components/portal/portal_target';
|
|
7
|
+
export { HModal } from './components/modal/modal';
|
|
8
|
+
export { HModalBackdrop } from './components/modal/modal_backdrop';
|
|
9
|
+
export { HModalBody } from './components/modal/modal_body';
|
|
10
|
+
export { HModalFooter } from './components/modal/modal_footer';
|
|
11
|
+
export { HModalHeader } from './components/modal/modal_header';
|
|
12
|
+
export { HModalClose } from './components/modal/modal_close';
|
|
@@ -2,6 +2,12 @@ export { ContextProviderController } from './core/context/context_provider_contr
|
|
|
2
2
|
export { ContextConsumerController } from './core/context/context_consumer_controller.js';
|
|
3
3
|
export { PhoenixLightLitElement } from './core/phoenix_light_lit_element.js';
|
|
4
4
|
export { HelloButton } from './hello_button.js';
|
|
5
|
-
export { HPortal } from './components/portal/portal.js';
|
|
6
5
|
export { HPortalTarget } from './components/portal/portal_target.js';
|
|
6
|
+
export { HPortal } from './components/portal/portal.js';
|
|
7
|
+
export { HModal } from './components/modal/modal.js';
|
|
8
|
+
export { HModalBackdrop } from './components/modal/modal_backdrop.js';
|
|
9
|
+
export { HModalBody } from './components/modal/modal_body.js';
|
|
10
|
+
export { HModalFooter } from './components/modal/modal_footer.js';
|
|
11
|
+
export { HModalHeader } from './components/modal/modal_header.js';
|
|
12
|
+
export { HModalClose } from './components/modal/modal_close.js';
|
|
7
13
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|