@nysds/nys-divider 1.15.0 → 1.16.0-alpha4
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/nys-divider.js +1 -1
- package/package.json +2 -2
- package/dist/index.d.ts +0 -1
- package/dist/nys-divider.d.ts +0 -29
- package/dist/nys-divider.figma.d.ts +0 -1
package/dist/nys-divider.js
CHANGED
|
@@ -5,7 +5,7 @@ import { property as c } from "lit/decorators.js";
|
|
|
5
5
|
* █ █ █ █▄▄▄█ ▀▀▀▄▄ █ █ ▀▀▀▄▄
|
|
6
6
|
* █ ▀█ █ █▄▄▄█ █▄▄▀ █▄▄▄█
|
|
7
7
|
*
|
|
8
|
-
* Divider Component
|
|
8
|
+
* Divider Component v1.16.0-alpha4
|
|
9
9
|
* Part of the New York State Design System
|
|
10
10
|
* Repository: https://github.com/its-hcd/nysds
|
|
11
11
|
* License: MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nysds/nys-divider",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0-alpha4",
|
|
4
4
|
"description": "The Divider component from the NYS Design System.",
|
|
5
5
|
"module": "dist/nys-divider.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"dev": "tsc --emitDeclarationOnly && vite",
|
|
19
|
-
"build": "
|
|
19
|
+
"build": "vite build",
|
|
20
20
|
"test": "vite build && wtr",
|
|
21
21
|
"build:watch": "tsc --emitDeclarationOnly && vite build --watch",
|
|
22
22
|
"test:watch": "vite build && wtr --watch",
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./nys-divider";
|
package/dist/nys-divider.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { LitElement } from "lit";
|
|
2
|
-
/**
|
|
3
|
-
* A horizontal rule for visual separation between content sections. Renders a semantic `<hr>` element.
|
|
4
|
-
*
|
|
5
|
-
* Use to separate distinct content areas within a page. Set `inverted` for use on dark backgrounds.
|
|
6
|
-
*
|
|
7
|
-
* @summary Horizontal divider for visual separation of content sections.
|
|
8
|
-
* @element nys-divider
|
|
9
|
-
*
|
|
10
|
-
* @example Basic divider
|
|
11
|
-
* ```html
|
|
12
|
-
* <p>Section one content</p>
|
|
13
|
-
* <nys-divider></nys-divider>
|
|
14
|
-
* <p>Section two content</p>
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
export declare class NysDivider extends LitElement {
|
|
18
|
-
static styles: import("lit").CSSResult;
|
|
19
|
-
/** Adjusts colors for dark backgrounds. */
|
|
20
|
-
inverted: boolean;
|
|
21
|
-
constructor();
|
|
22
|
-
connectedCallback(): void;
|
|
23
|
-
/**
|
|
24
|
-
* Functions
|
|
25
|
-
* --------------------------------------------------------------------------
|
|
26
|
-
*/
|
|
27
|
-
private _generateUniqueId;
|
|
28
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
29
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|