@warp-ds/elements 2.0.0-next.3 → 2.0.0-next.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/dist/index.js +345 -377
- package/dist/index.js.map +4 -4
- package/dist/packages/affix/index.d.ts +13 -6
- package/dist/packages/affix/index.js +32 -65
- package/dist/packages/affix/index.js.map +4 -4
- package/dist/packages/alert/index.js +10 -60
- package/dist/packages/alert/index.js.map +3 -3
- package/dist/packages/attention/index.js +39 -80
- package/dist/packages/attention/index.js.map +4 -4
- package/dist/packages/badge/index.js +26 -72
- package/dist/packages/badge/index.js.map +4 -4
- package/dist/packages/box/index.d.ts +1 -1
- package/dist/packages/box/index.js +25 -64
- package/dist/packages/box/index.js.map +4 -4
- package/dist/packages/breadcrumbs/index.js +8 -52
- package/dist/packages/breadcrumbs/index.js.map +3 -3
- package/dist/packages/button/index.d.ts +6 -0
- package/dist/packages/button/index.js +66 -103
- package/dist/packages/button/index.js.map +3 -3
- package/dist/packages/card/index.d.ts +5 -5
- package/dist/packages/card/index.js +1461 -91
- package/dist/packages/card/index.js.map +4 -4
- package/dist/packages/card/locales/da/messages.d.mts +1 -0
- package/dist/packages/card/locales/en/messages.d.mts +1 -0
- package/dist/packages/card/locales/fi/messages.d.mts +1 -0
- package/dist/packages/card/locales/nb/messages.d.mts +1 -0
- package/dist/packages/expandable/index.d.ts +1 -6
- package/dist/packages/expandable/index.js +70 -85
- package/dist/packages/expandable/index.js.map +4 -4
- package/dist/packages/modal/index.js +7 -51
- package/dist/packages/modal/index.js.map +3 -3
- package/dist/packages/pill/index.js +16 -64
- package/dist/packages/pill/index.js.map +3 -3
- package/dist/packages/select/index.d.ts +10 -0
- package/dist/packages/select/index.js +42 -72
- package/dist/packages/select/index.js.map +3 -3
- package/dist/packages/textfield/index.d.ts +9 -5
- package/dist/packages/textfield/index.js +49 -76
- package/dist/packages/textfield/index.js.map +4 -4
- package/dist/packages/toast/index.js +55 -90
- package/dist/packages/toast/index.js.map +4 -4
- package/dist/packages/toast/toast.d.ts +1 -2
- package/dist/packages/utils/index.d.ts +1 -1
- package/dist/packages/utils/unstyled-heading.d.ts +1 -1
- package/package.json +4 -4
|
@@ -30,8 +30,6 @@ export class WarpToast {
|
|
|
30
30
|
disconnectedCallback(): void;
|
|
31
31
|
updated(): void;
|
|
32
32
|
_expanded: boolean;
|
|
33
|
-
get _primaryClasses(): import(".pnpm/lit-html@3.1.4/node_modules/lit-html/directive").DirectiveResult<typeof import("lit/directives/class-map").ClassMapDirective>;
|
|
34
|
-
get _iconClasses(): import(".pnpm/lit-html@3.1.4/node_modules/lit-html/directive").DirectiveResult<typeof import("lit/directives/class-map").ClassMapDirective>;
|
|
35
33
|
get _wrapper(): any;
|
|
36
34
|
get _warning(): boolean;
|
|
37
35
|
get _error(): boolean;
|
|
@@ -41,4 +39,5 @@ export class WarpToast {
|
|
|
41
39
|
collapse(): Promise<any>;
|
|
42
40
|
close(): void;
|
|
43
41
|
render(): import("lit").TemplateResult<1>;
|
|
42
|
+
#private;
|
|
44
43
|
}
|
|
@@ -6,5 +6,5 @@ export function kebabCaseAttributes(constructor: any): {
|
|
|
6
6
|
createProperty(name: any, options: any): void;
|
|
7
7
|
};
|
|
8
8
|
export function classes(defn: any): string;
|
|
9
|
-
export function fclasses(definition: any): import(".pnpm/lit-html@3.
|
|
9
|
+
export function fclasses(definition: any): import(".pnpm/lit-html@3.2.0/node_modules/lit-html/directive").DirectiveResult<typeof import("lit/directives/class-map").ClassMapDirective>;
|
|
10
10
|
export function generateRandomId(): string;
|
|
@@ -6,5 +6,5 @@ export class UnstyledHeading {
|
|
|
6
6
|
};
|
|
7
7
|
static styles: any[];
|
|
8
8
|
get _markup(): string;
|
|
9
|
-
render(): import(".pnpm/lit-html@3.
|
|
9
|
+
render(): import(".pnpm/lit-html@3.2.0/node_modules/lit-html/directive").DirectiveResult<typeof import("lit/directives/unsafe-html").UnsafeHTMLDirective>;
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-ds/elements",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-next.
|
|
4
|
+
"version": "2.0.0-next.5",
|
|
5
5
|
"description": "Custom elements for Warp",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./dist/index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"license": "Apache-2.0",
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@warp-ds/css": "2.0.0
|
|
53
|
+
"@warp-ds/css": "2.0.0",
|
|
54
54
|
"@warp-ds/elements-core": "2.x",
|
|
55
55
|
"lit": "3.x"
|
|
56
56
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"lit": "3.x",
|
|
78
78
|
"playwright": "1.45.1",
|
|
79
79
|
"prettier": "3.3.2",
|
|
80
|
-
"rimraf": "6.0.
|
|
80
|
+
"rimraf": "6.0.1",
|
|
81
81
|
"semantic-release": "24.0.0",
|
|
82
82
|
"tap": "21.0.0",
|
|
83
83
|
"typescript": "5.5.3",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@lingui/core": "4.11.2",
|
|
91
91
|
"@warp-ds/core": "1.1.5",
|
|
92
|
-
"@warp-ds/css": "2.0.0
|
|
92
|
+
"@warp-ds/css": "2.0.0",
|
|
93
93
|
"@warp-ds/elements-core": "2.x",
|
|
94
94
|
"@warp-ds/icons": "2.0.2",
|
|
95
95
|
"scroll-doctor": "2.0.2"
|