@justeattakeaway/pie-checkbox 0.13.5 → 0.13.6

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.
@@ -152,7 +152,7 @@
152
152
  "kind": "field",
153
153
  "name": "assistiveText",
154
154
  "type": {
155
- "text": "CheckboxProps['assistiveText'] | undefined"
155
+ "text": "CheckboxProps['assistiveText']"
156
156
  },
157
157
  "privacy": "public",
158
158
  "attribute": "assistiveText"
@@ -283,7 +283,7 @@
283
283
  {
284
284
  "name": "assistiveText",
285
285
  "type": {
286
- "text": "CheckboxProps['assistiveText'] | undefined"
286
+ "text": "CheckboxProps['assistiveText']"
287
287
  },
288
288
  "fieldName": "assistiveText"
289
289
  },
package/dist/index.d.ts CHANGED
@@ -71,7 +71,7 @@ export declare class PieCheckbox extends PieCheckbox_base implements CheckboxPro
71
71
  required: boolean;
72
72
  indeterminate: boolean;
73
73
  private _checkbox;
74
- assistiveText?: CheckboxProps['assistiveText'];
74
+ assistiveText: CheckboxProps['assistiveText'];
75
75
  status: "default" | "error" | "success";
76
76
  private _abortController;
77
77
  connectedCallback(): void;
package/dist/react.d.ts CHANGED
@@ -74,7 +74,7 @@ declare class PieCheckbox_2 extends PieCheckbox_base implements CheckboxProps {
74
74
  required: boolean;
75
75
  indeterminate: boolean;
76
76
  private _checkbox;
77
- assistiveText?: CheckboxProps['assistiveText'];
77
+ assistiveText: CheckboxProps['assistiveText'];
78
78
  status: "default" | "error" | "success";
79
79
  private _abortController;
80
80
  connectedCallback(): void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-checkbox",
3
3
  "description": "PIE Design System Checkbox built using Web Components",
4
- "version": "0.13.5",
4
+ "version": "0.13.6",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -41,7 +41,7 @@
41
41
  "cem-plugin-module-file-extensions": "0.0.5"
42
42
  },
43
43
  "dependencies": {
44
- "@justeattakeaway/pie-assistive-text": "0.7.5",
44
+ "@justeattakeaway/pie-assistive-text": "0.8.0",
45
45
  "@justeattakeaway/pie-webc-core": "0.24.2"
46
46
  },
47
47
  "volta": {
package/src/index.ts CHANGED
@@ -63,7 +63,7 @@ export class PieCheckbox extends FormControlMixin(RtlMixin(LitElement)) implemen
63
63
  private _checkbox!: HTMLInputElement;
64
64
 
65
65
  @property({ type: String })
66
- public assistiveText?: CheckboxProps['assistiveText'];
66
+ public assistiveText: CheckboxProps['assistiveText'];
67
67
 
68
68
  @property({ type: String })
69
69
  @validPropertyValues(componentSelector, statusTypes, defaultProps.status)