@exmg/exm-form-drawer 1.0.15 → 1.0.16-alpha.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/{src → dist}/exm-form-drawer-base.d.ts +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/{src → dist}/styles/exm-form-drawer-styles-css.js +1 -0
- package/package.json +11 -13
- package/index.d.ts +0 -3
- package/index.js +0 -4
- package/src/exm-drawer.d.ts +0 -46
- package/src/styles/exm-drawer-styles-css.d.ts +0 -1
- /package/{src → dist}/exm-form-drawer-base.js +0 -0
- /package/{src → dist}/exm-form-drawer.d.ts +0 -0
- /package/{src → dist}/exm-form-drawer.js +0 -0
- /package/{src → dist}/styles/exm-form-drawer-styles-css.d.ts +0 -0
|
@@ -2,7 +2,7 @@ import '@exmg/exm-drawer/exm-drawer.js';
|
|
|
2
2
|
import '@exmg/exm-button/exm-filled-button.js';
|
|
3
3
|
import '@material/web/button/text-button.js';
|
|
4
4
|
import { ExmgElement } from '@exmg/lit-base';
|
|
5
|
-
declare const ExmFormDrawerBase_base: import("@exmg/exm-form").Constructor<import("@exmg/exm-form/
|
|
5
|
+
declare const ExmFormDrawerBase_base: import("@exmg/exm-form").Constructor<import("@exmg/exm-form/dist/exm-form-validate-mixin.js").FormValidateMixinInterface> & typeof ExmgElement;
|
|
6
6
|
export declare class ExmFormDrawerBase extends ExmFormDrawerBase_base {
|
|
7
7
|
/**
|
|
8
8
|
* Opened state of the form-drawer
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -36,6 +36,7 @@ export const style = css `
|
|
|
36
36
|
:host(:not([disable-sticky-header])) .header {
|
|
37
37
|
position: sticky;
|
|
38
38
|
top: 0;
|
|
39
|
+
color: var(--exm-drawer-color, var(--md-sys-color-on-surface-variant, black));
|
|
39
40
|
background-color: var(--exm-drawer-bg-color, var(--md-sys-color-surface-variant, white));
|
|
40
41
|
z-index: 2;
|
|
41
42
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exmg/exm-form-drawer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16-alpha.12+33e1367",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"module": "index.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
7
|
"exports": {
|
|
8
|
-
".": "./index.js",
|
|
9
|
-
"./exm-form-drawer.js": "./
|
|
10
|
-
"./exm-drawer.js": "./
|
|
8
|
+
".": "./dist/index.js",
|
|
9
|
+
"./exm-form-drawer.js": "./dist/exm-form-drawer.js",
|
|
10
|
+
"./exm-drawer.js": "./dist/exm-drawer.js"
|
|
11
11
|
},
|
|
12
12
|
"description": "Form side drawer element",
|
|
13
13
|
"contributors": [
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
],
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "git@
|
|
28
|
+
"url": "git@bitbucket.org:exmachina/exm-web-components.git",
|
|
29
29
|
"directory": "packages/exm-form-drawer"
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@exmg/exm-drawer": "^1.0.
|
|
34
|
-
"@exmg/exm-form": "^1.0.
|
|
33
|
+
"@exmg/exm-drawer": "^1.0.2-alpha.12+33e1367",
|
|
34
|
+
"@exmg/exm-form": "^1.0.11-alpha.12+33e1367",
|
|
35
35
|
"@material/typography": "^14.0.0",
|
|
36
36
|
"lit": "^3.0.0",
|
|
37
37
|
"tslib": "^2.6.2"
|
|
@@ -39,11 +39,9 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@exmg/lit-cli": "1.1.13"
|
|
41
41
|
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build:styles": "exmg-lit-cli sass -f \"./**/*.scss\""
|
|
44
|
-
},
|
|
42
|
+
"scripts": {},
|
|
45
43
|
"publishConfig": {
|
|
46
44
|
"access": "public"
|
|
47
45
|
},
|
|
48
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "33e1367329dfae6f98f21c981edb7ada370fc0d5"
|
|
49
47
|
}
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/src/exm-drawer.d.ts
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
export declare class ExmDrawer extends LitElement {
|
|
3
|
-
/**
|
|
4
|
-
* The opened state of the drawer
|
|
5
|
-
* @type {Boolean}
|
|
6
|
-
*/
|
|
7
|
-
opened: boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Prevent cancel on outside click or not
|
|
10
|
-
* @type {Boolean}
|
|
11
|
-
*/
|
|
12
|
-
noCancelOnOutsideClick: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Scroll action of the drawer
|
|
15
|
-
* @type {'lock' | 'refit' | 'cancel' | undefined}
|
|
16
|
-
*/
|
|
17
|
-
scrollAction?: 'lock' | 'refit' | 'cancel' | undefined;
|
|
18
|
-
/**
|
|
19
|
-
* A query to the native <dialog> element.
|
|
20
|
-
*/
|
|
21
|
-
dialogElement: HTMLDialogElement;
|
|
22
|
-
/**
|
|
23
|
-
* Internal flag used when animating the closing.
|
|
24
|
-
*/
|
|
25
|
-
private _isClosing;
|
|
26
|
-
updated(changedProperties: Map<string, any>): void;
|
|
27
|
-
private _onDialogClick;
|
|
28
|
-
private _onDialogCancel;
|
|
29
|
-
private _onDialogClose;
|
|
30
|
-
private _animateClose;
|
|
31
|
-
/**
|
|
32
|
-
* Public method to open the drawer.
|
|
33
|
-
*/
|
|
34
|
-
openDialog(): void;
|
|
35
|
-
/**
|
|
36
|
-
* Public method to close the drawer.
|
|
37
|
-
*/
|
|
38
|
-
closeDialog(): void;
|
|
39
|
-
static styles: import("lit").CSSResult;
|
|
40
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
41
|
-
}
|
|
42
|
-
declare global {
|
|
43
|
-
interface HTMLElementTagNameMap {
|
|
44
|
-
'exm-drawer': ExmDrawer;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const style: import("lit").CSSResult;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|