@justeattakeaway/pie-checkbox-group 0.7.4 → 0.7.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.
@@ -122,7 +122,7 @@
122
122
  "kind": "field",
123
123
  "name": "assistiveText",
124
124
  "type": {
125
- "text": "CheckboxGroupProps['assistiveText'] | undefined"
125
+ "text": "CheckboxGroupProps['assistiveText']"
126
126
  },
127
127
  "privacy": "public",
128
128
  "attribute": "assistiveText"
@@ -226,7 +226,7 @@
226
226
  {
227
227
  "name": "assistiveText",
228
228
  "type": {
229
- "text": "CheckboxGroupProps['assistiveText'] | undefined"
229
+ "text": "CheckboxGroupProps['assistiveText']"
230
230
  },
231
231
  "fieldName": "assistiveText"
232
232
  },
package/dist/index.d.ts CHANGED
@@ -53,7 +53,7 @@ export declare const ON_CHECKBOX_GROUP_ERROR = "pie-checkbox-group-error";
53
53
  export declare class PieCheckboxGroup extends PieCheckboxGroup_base implements CheckboxGroupProps {
54
54
  private _hasLabel;
55
55
  name: CheckboxGroupProps['name'];
56
- assistiveText?: CheckboxGroupProps['assistiveText'];
56
+ assistiveText: CheckboxGroupProps['assistiveText'];
57
57
  isInline: boolean;
58
58
  status: "default" | "error" | "success";
59
59
  disabled: boolean;
package/dist/react.d.ts CHANGED
@@ -56,7 +56,7 @@ export declare const PieCheckboxGroup: React_2.ForwardRefExoticComponent<Checkbo
56
56
  declare class PieCheckboxGroup_2 extends PieCheckboxGroup_base implements CheckboxGroupProps {
57
57
  private _hasLabel;
58
58
  name: CheckboxGroupProps['name'];
59
- assistiveText?: CheckboxGroupProps['assistiveText'];
59
+ assistiveText: CheckboxGroupProps['assistiveText'];
60
60
  isInline: boolean;
61
61
  status: "default" | "error" | "success";
62
62
  disabled: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-checkbox-group",
3
3
  "description": "PIE Design System Checkbox Group built using Web Components",
4
- "version": "0.7.4",
4
+ "version": "0.7.6",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -36,13 +36,13 @@
36
36
  "license": "Apache-2.0",
37
37
  "devDependencies": {
38
38
  "@custom-elements-manifest/analyzer": "0.9.0",
39
- "@justeattakeaway/pie-checkbox": "0.13.4",
39
+ "@justeattakeaway/pie-checkbox": "0.13.6",
40
40
  "@justeattakeaway/pie-components-config": "0.18.0",
41
41
  "@justeattakeaway/pie-css": "0.13.1",
42
42
  "cem-plugin-module-file-extensions": "0.0.5"
43
43
  },
44
44
  "dependencies": {
45
- "@justeattakeaway/pie-assistive-text": "0.7.4",
45
+ "@justeattakeaway/pie-assistive-text": "0.8.0",
46
46
  "@justeattakeaway/pie-webc-core": "0.24.2"
47
47
  },
48
48
  "volta": {
package/src/index.ts CHANGED
@@ -41,7 +41,7 @@ export class PieCheckboxGroup extends FormControlMixin(RtlMixin(LitElement)) imp
41
41
  public name: CheckboxGroupProps['name'];
42
42
 
43
43
  @property({ type: String })
44
- public assistiveText?: CheckboxGroupProps['assistiveText'];
44
+ public assistiveText: CheckboxGroupProps['assistiveText'];
45
45
 
46
46
  @property({ type: Boolean })
47
47
  public isInline = defaultProps.isInline;