@justeattakeaway/pie-button 0.47.7 → 0.47.8
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 +2 -2
- package/dist/react.d.ts +2 -2
- package/package.json +3 -3
- package/src/defs.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComponentDefaultProps } from '@justeattakeaway/pie-webc-core';
|
|
2
2
|
import type { CSSResult } from 'lit';
|
|
3
3
|
import type { FormControlInterface } from '@justeattakeaway/pie-webc-core';
|
|
4
4
|
import type { GenericConstructor } from '@justeattakeaway/pie-webc-core';
|
|
@@ -83,7 +83,7 @@ export declare interface ButtonProps {
|
|
|
83
83
|
responsiveSize?: typeof responsiveSizes[number];
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
export declare type DefaultProps =
|
|
86
|
+
export declare type DefaultProps = ComponentDefaultProps<ButtonProps, 'size' | 'type' | 'variant' | 'iconPlacement' | 'disabled' | 'isFullWidth' | 'isLoading' | 'isResponsive'>;
|
|
87
87
|
|
|
88
88
|
export declare const defaultProps: DefaultProps;
|
|
89
89
|
|
package/dist/react.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComponentDefaultProps } from '@justeattakeaway/pie-webc-core';
|
|
2
2
|
import type { CSSResult } from 'lit';
|
|
3
3
|
import type { FormControlInterface } from '@justeattakeaway/pie-webc-core';
|
|
4
4
|
import type { GenericConstructor } from '@justeattakeaway/pie-webc-core';
|
|
@@ -84,7 +84,7 @@ export declare interface ButtonProps {
|
|
|
84
84
|
responsiveSize?: typeof responsiveSizes[number];
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
export declare type DefaultProps =
|
|
87
|
+
export declare type DefaultProps = ComponentDefaultProps<ButtonProps, 'size' | 'type' | 'variant' | 'iconPlacement' | 'disabled' | 'isFullWidth' | 'isLoading' | 'isResponsive'>;
|
|
88
88
|
|
|
89
89
|
export declare const defaultProps: DefaultProps;
|
|
90
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-button",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.8",
|
|
4
4
|
"description": "PIE design system button built using web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"dist/*.js"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@justeattakeaway/pie-spinner": "0.6.
|
|
52
|
-
"@justeattakeaway/pie-webc-core": "0.
|
|
51
|
+
"@justeattakeaway/pie-spinner": "0.6.6",
|
|
52
|
+
"@justeattakeaway/pie-webc-core": "0.24.0",
|
|
53
53
|
"element-internals-polyfill": "1.3.11"
|
|
54
54
|
}
|
|
55
55
|
}
|
package/src/defs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type ComponentDefaultProps } from '@justeattakeaway/pie-webc-core';
|
|
2
2
|
|
|
3
3
|
export const sizes = ['xsmall', 'small-productive', 'small-expressive', 'medium', 'large'] as const;
|
|
4
4
|
export const responsiveSizes = ['productive', 'expressive'] as const;
|
|
@@ -101,7 +101,7 @@ export interface ButtonProps {
|
|
|
101
101
|
responsiveSize?: typeof responsiveSizes[number];
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
export type DefaultProps =
|
|
104
|
+
export type DefaultProps = ComponentDefaultProps<ButtonProps, 'size' | 'type' | 'variant' | 'iconPlacement' | 'disabled' | 'isFullWidth' | 'isLoading' | 'isResponsive'>;
|
|
105
105
|
|
|
106
106
|
export const defaultProps: DefaultProps = {
|
|
107
107
|
size: 'medium',
|