@y14e/disclosure 1.2.4 → 1.2.5

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
@@ -91,4 +91,4 @@ disclosure.destroy(force);
91
91
 
92
92
  ## Demo
93
93
 
94
- - https://y14e.github.io/disclosure-ts/
94
+ - https://y14e.github.io/disclosure/
package/dist/index.cjs CHANGED
@@ -297,15 +297,15 @@ function waitAnimationFinish(animation) {
297
297
  );
298
298
  }
299
299
  /**
300
- * disclosure.ts
300
+ * Disclosure
301
301
  * WAI-ARIA compliant disclosure pattern implementation in TypeScript.
302
302
  * Using the <details> and <summary> element.
303
303
  *
304
- * @version 1.2.4
304
+ * @version 1.2.5
305
305
  * @author Yusuke Kamiyamane
306
306
  * @license MIT
307
307
  * @copyright Copyright (c) Yusuke Kamiyamane
308
- * @see {@link https://github.com/y14e/disclosure-ts}
308
+ * @see {@link https://github.com/y14e/disclosure}
309
309
  */
310
310
 
311
311
  module.exports = Disclosure;
package/dist/index.d.cts CHANGED
@@ -1,13 +1,13 @@
1
1
  /**
2
- * disclosure.ts
2
+ * Disclosure
3
3
  * WAI-ARIA compliant disclosure pattern implementation in TypeScript.
4
4
  * Using the <details> and <summary> element.
5
5
  *
6
- * @version 1.2.4
6
+ * @version 1.2.5
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
10
- * @see {@link https://github.com/y14e/disclosure-ts}
10
+ * @see {@link https://github.com/y14e/disclosure}
11
11
  */
12
12
  interface DisclosureOptions {
13
13
  readonly animation?: {
package/dist/index.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  /**
2
- * disclosure.ts
2
+ * Disclosure
3
3
  * WAI-ARIA compliant disclosure pattern implementation in TypeScript.
4
4
  * Using the <details> and <summary> element.
5
5
  *
6
- * @version 1.2.4
6
+ * @version 1.2.5
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
10
- * @see {@link https://github.com/y14e/disclosure-ts}
10
+ * @see {@link https://github.com/y14e/disclosure}
11
11
  */
12
12
  interface DisclosureOptions {
13
13
  readonly animation?: {
package/dist/index.js CHANGED
@@ -295,15 +295,15 @@ function waitAnimationFinish(animation) {
295
295
  );
296
296
  }
297
297
  /**
298
- * disclosure.ts
298
+ * Disclosure
299
299
  * WAI-ARIA compliant disclosure pattern implementation in TypeScript.
300
300
  * Using the <details> and <summary> element.
301
301
  *
302
- * @version 1.2.4
302
+ * @version 1.2.5
303
303
  * @author Yusuke Kamiyamane
304
304
  * @license MIT
305
305
  * @copyright Copyright (c) Yusuke Kamiyamane
306
- * @see {@link https://github.com/y14e/disclosure-ts}
306
+ * @see {@link https://github.com/y14e/disclosure}
307
307
  */
308
308
 
309
309
  export { Disclosure as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@y14e/disclosure",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "WAI-ARIA compliant disclosure pattern implementation in TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",