@exmg/exm-snackbar 1.0.2 → 1.0.3-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.
@@ -0,0 +1,3 @@
1
+ export { ExmSnackbar } from './exm-snackbar.js';
2
+ export { SnackBarPayload } from './types.js';
3
+ export { style as snackbarStyles } from './styles/exm-snackbar-css.js';
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { ExmSnackbar } from './exm-snackbar.js';
2
+ export { style as snackbarStyles } from './styles/exm-snackbar-css.js';
3
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@exmg/exm-snackbar",
3
- "version": "1.0.2",
3
+ "version": "1.0.3-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-snackbar.js": "./src/exm-snackbar.js"
8
+ ".": "./dist/index.js",
9
+ "./exm-snackbar.js": "./dist/exm-snackbar.js"
10
10
  },
11
11
  "dependencies": {
12
12
  "@material/mwc-snackbar": "=0.27.0",
@@ -26,18 +26,16 @@
26
26
  "**/*.js",
27
27
  "**/*.d.ts"
28
28
  ],
29
- "homepage": "https://github.com/exmg/exmachina-web-components",
29
+ "homepage": "https://bitbucket.org/exmachina/exm-web-components",
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "git@github.com:exmg/exm-web-components.git",
32
+ "url": "git@bitbucket.org:exmachina/exm-web-components.git",
33
33
  "directory": "packages/exm-snackbar"
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": "e7086831faea0bdfe8628b0de9b7ddcc45174558"
40
+ "gitHead": "33e1367329dfae6f98f21c981edb7ada370fc0d5"
43
41
  }
package/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export { ExmSnackbar } from './src/exm-snackbar.js';
2
- export { SnackBarPayload } from './src/types.js';
3
- export { style as snackbarStyles } from './src/styles/exm-snackbar-css.js';
package/index.js DELETED
@@ -1,3 +0,0 @@
1
- export { ExmSnackbar } from './src/exm-snackbar.js';
2
- export { style as snackbarStyles } from './src/styles/exm-snackbar-css.js';
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- export declare const style: import("lit").CSSResult;
@@ -1,31 +0,0 @@
1
- import { css } from 'lit';
2
- export const style = css `
3
- :host {
4
- --exm-snackbar-positive-background-color: #12805c;
5
- --exm-snackbar-negative-background-color: #c9252d;
6
- --exm-snackbar-info-background-color: #0d66d0;
7
- --exm-snackbar-text-color: #fff;
8
- }
9
-
10
- .mdc-snackbar--positive .mdc-snackbar__surface {
11
- background-color: var(--exm-snackbar-positive-background-color) !important;
12
- }
13
-
14
- .mdc-snackbar--negative .mdc-snackbar__surface {
15
- background-color: var(--exm-snackbar-negative-background-color) !important;
16
- }
17
-
18
- .mdc-snackbar--info .mdc-snackbar__surface {
19
- background-color: var(--exm-snackbar-info-background-color) !important;
20
- }
21
-
22
- .mdc-snackbar__surface {
23
- color: var(--exm-snackbar-text-color);
24
- }
25
-
26
- slot[name='icon']::slotted(*) {
27
- margin-left: 12px;
28
- min-width: 24px;
29
- }
30
- `;
31
- //# sourceMappingURL=exm-snackbar-styles-css.js.map
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes