@exmg/exm-collapsed 1.0.2 → 1.0.4-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/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/{src → dist}/styles/exm-collapsed-styles-css.d.ts +0 -1
- package/dist/styles/exm-collapsed-styles-css.js +18 -0
- package/package.json +9 -11
- package/index.d.ts +0 -3
- package/index.js +0 -4
- package/src/styles/exm-collapsed-styles-css.js +0 -4
- package/src/styles/exm-collapsed-styles.scss +0 -12
- /package/{src → dist}/exm-collapsed-base.d.ts +0 -0
- /package/{src → dist}/exm-collapsed-base.js +0 -0
- /package/{src → dist}/exm-collapsed.d.ts +0 -0
- /package/{src → dist}/exm-collapsed.js +0 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { css } from 'lit';
|
|
2
|
+
export const style = css `
|
|
3
|
+
:host {
|
|
4
|
+
display: block;
|
|
5
|
+
transition-duration: 300ms;
|
|
6
|
+
-webkit-transition-duration: 300ms;
|
|
7
|
+
overflow: visible;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
:host(.collapse-closed) {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
:host(:not(.collapse-closed)) {
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
//# sourceMappingURL=exm-collapsed-styles-css.js.map
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exmg/exm-collapsed",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4-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-collapsed.js": "./
|
|
8
|
+
".": "./dist/index.js",
|
|
9
|
+
"./exm-collapsed.js": "./dist/exm-collapsed.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@exmg/lit-base": "^3.0.0",
|
|
@@ -26,18 +26,16 @@
|
|
|
26
26
|
"**/*.js",
|
|
27
27
|
"**/*.d.ts"
|
|
28
28
|
],
|
|
29
|
-
"homepage": "https://
|
|
29
|
+
"homepage": "https://bitbucket.org/exmachina/exm-web-components",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "git@
|
|
32
|
+
"url": "git@bitbucket.org:exmachina/exm-web-components.git",
|
|
33
33
|
"directory": "packages/exm-collapsed"
|
|
34
34
|
},
|
|
35
35
|
"license": "MIT",
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build:styles": "exmg-lit-cli sass -f \"./**/*.scss\""
|
|
38
|
-
},
|
|
36
|
+
"scripts": {},
|
|
39
37
|
"publishConfig": {
|
|
40
38
|
"access": "public"
|
|
41
39
|
},
|
|
42
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "33e1367329dfae6f98f21c981edb7ada370fc0d5"
|
|
43
41
|
}
|
package/index.d.ts
DELETED
package/index.js
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { css } from 'lit';
|
|
2
|
-
export const style = css `:host{display:block;transition-duration:300ms;-webkit-transition-duration:300ms;overflow:visible}:host(.collapse-closed){display:none}:host(:not(.collapse-closed)){overflow:hidden}`;
|
|
3
|
-
export default style;
|
|
4
|
-
//# sourceMappingURL=exm-collapsed-styles-css.js.map
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|