@justeattakeaway/pie-form-label 0.8.3 → 0.8.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.d.ts +3 -2
- package/dist/react.d.ts +3 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { CSSResult } from 'lit';
|
|
2
|
+
import type { GenericConstructor } from '@justeattakeaway/pie-webc-core';
|
|
2
3
|
import type { LitElement } from 'lit';
|
|
3
4
|
import type { TemplateResult } from 'lit';
|
|
4
5
|
|
|
@@ -29,8 +30,8 @@ export declare class PieFormLabel extends PieFormLabel_base implements FormLabel
|
|
|
29
30
|
static styles: CSSResult;
|
|
30
31
|
}
|
|
31
32
|
|
|
32
|
-
declare const PieFormLabel_base:
|
|
33
|
+
declare const PieFormLabel_base: GenericConstructor<{
|
|
33
34
|
isRTL: boolean;
|
|
34
|
-
}
|
|
35
|
+
}> & typeof LitElement;
|
|
35
36
|
|
|
36
37
|
export { }
|
package/dist/react.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { CSSResult } from 'lit';
|
|
2
|
+
import type { GenericConstructor } from '@justeattakeaway/pie-webc-core';
|
|
2
3
|
import type { LitElement } from 'lit';
|
|
3
4
|
import type { ReactWebComponent } from '@lit/react';
|
|
4
5
|
import type { TemplateResult } from 'lit';
|
|
@@ -32,8 +33,8 @@ declare class PieFormLabel_2 extends PieFormLabel_base implements FormLabelProps
|
|
|
32
33
|
static styles: CSSResult;
|
|
33
34
|
}
|
|
34
35
|
|
|
35
|
-
declare const PieFormLabel_base:
|
|
36
|
+
declare const PieFormLabel_base: GenericConstructor<{
|
|
36
37
|
isRTL: boolean;
|
|
37
|
-
}
|
|
38
|
+
}> & typeof LitElement;
|
|
38
39
|
|
|
39
40
|
export { }
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-form-label",
|
|
3
3
|
"description": "PIE Design System Form Label built using Web Components",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"author": "Just Eat Takeaway.com - Design System Team",
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@justeattakeaway/pie-components-config": "0.
|
|
31
|
+
"@justeattakeaway/pie-components-config": "0.7.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@justeattakeaway/pie-webc-core": "0.
|
|
34
|
+
"@justeattakeaway/pie-webc-core": "0.15.0"
|
|
35
35
|
},
|
|
36
36
|
"volta": {
|
|
37
37
|
"extends": "../../../package.json"
|