@blockquote-web-components/blockquote-dialog 1.1.13 → 1.2.0

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/README.md CHANGED
@@ -120,6 +120,14 @@ Inert content outside an active dialog is typically visually obscured or dimmed
120
120
  | ---- | ------------------ | ---------------- | --------------------- | ------- |
121
121
  | `js` | `BlockquoteDialog` | BlockquoteDialog | ./BlockquoteDialog.js | |
122
122
 
123
+ ### `src/define/blockquote-dialog.js`:
124
+
125
+ #### Exports
126
+
127
+ | Kind | Name | Declaration | Module | Package |
128
+ | --------------------------- | ------------------- | ---------------- | ------------------------ | ------- |
129
+ | `custom-element-definition` | `blockquote-dialog` | BlockquoteDialog | /src/BlockquoteDialog.js | |
130
+
123
131
  ### `src/styles/blockqoute-dialog-animations-styles.css.js`:
124
132
 
125
133
  #### Variables
@@ -151,11 +159,3 @@ Inert content outside an active dialog is typically visually obscured or dimmed
151
159
  | Kind | Name | Declaration | Module | Package |
152
160
  | ---- | -------- | ----------- | ------------------------------------------ | ------- |
153
161
  | `js` | `styles` | styles | src/styles/blockquote-dialog-styles.css.js | |
154
-
155
- ### `define/blockquote-dialog.js`:
156
-
157
- #### Exports
158
-
159
- | Kind | Name | Declaration | Module | Package |
160
- | --------------------------- | ------------------- | ---------------- | ------------------------ | ------- |
161
- | `custom-element-definition` | `blockquote-dialog` | BlockquoteDialog | /src/BlockquoteDialog.js | |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-dialog",
3
- "version": "1.1.13",
3
+ "version": "1.2.0",
4
4
  "description": "Webcomponent blockquote-dialog following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -17,25 +17,23 @@
17
17
  "./package.json": {
18
18
  "default": "./package.json"
19
19
  },
20
- "./src/BlockquoteDialog.js": {
20
+ "./BlockquoteDialog.js": {
21
21
  "default": "./src/BlockquoteDialog.js"
22
22
  },
23
- "./define/blockquote-dialog.js": {
23
+ "./blockquote-dialog.js": {
24
24
  "default": "./define/blockquote-dialog.js"
25
25
  },
26
26
  "./index.js": {
27
27
  "default": "./src/index.js"
28
28
  },
29
- "./src/styles/blockquote-dialog-styles.css.js": {
29
+ "./blockquote-dialog-styles.css.js": {
30
30
  "default": "./src/styles/blockquote-dialog-styles.css.js"
31
31
  }
32
32
  },
33
33
  "main": "src/index.js",
34
34
  "module": "src/index.js",
35
35
  "files": [
36
- "/define/",
37
36
  "/src/",
38
- "index.js",
39
37
  "!/**/*.scss"
40
38
  ],
41
39
  "scripts": {
@@ -98,14 +96,14 @@
98
96
  }
99
97
  },
100
98
  "dependencies": {
101
- "@blockquote-web-components/blockquote-directive-ariaidref-slot": "^1.1.10",
99
+ "@blockquote-web-components/blockquote-directive-ariaidref-slot": "^1.2.0",
102
100
  "@blockquote/dev-utilities": "^1.0.0",
103
101
  "@material/web": "^1.4.1",
104
102
  "lit": "^3.2.0"
105
103
  },
106
104
  "devDependencies": {
107
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.10.2",
108
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.11.7",
105
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.10.3",
106
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.12.0",
109
107
  "@blockquote-web-components/blockquote-foundations-sass": "^1.1.5",
110
108
  "sinon": "^18.0.0"
111
109
  },
@@ -113,5 +111,5 @@
113
111
  "access": "public"
114
112
  },
115
113
  "customElements": "custom-elements.json",
116
- "gitHead": "560bcbfc8a5f6356cfadf70ca4b0b5d4f79048b4"
114
+ "gitHead": "aa9ec4509acdc730eabf6eb87cf3f6e1e86a1688"
117
115
  }
@@ -1,3 +1,3 @@
1
- import {BlockquoteDialog} from '../src/BlockquoteDialog.js';
1
+ import {BlockquoteDialog} from '../BlockquoteDialog.js';
2
2
 
3
3
  window.customElements.define('blockquote-dialog', BlockquoteDialog);