@proximus/lavender-cell 1.4.5-alpha.9 → 1.4.5-beta.2

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.
@@ -1,6 +1,13 @@
1
1
  import { PxElement } from '@proximus/lavender-common';
2
2
  import '@proximus/lavender-layout';
3
3
  import { Cell } from '@proximus/lavender-cell';
4
+ /**
5
+ * @summary A cell component that acts as a button.
6
+ * @attr {string} name - The name of the button, submitted as a pair with the button's value as part of the form data.
7
+ * @attr {string} value - The value associated with the button's name when it's submitted with a form.
8
+ * @attr {string} type - The default behavior of the button. Possible values are 'submit', 'reset', and 'button'.
9
+ * @attr {boolean} disabled - Whether the button is disabled.
10
+ */
4
11
  export declare class CellButton extends PxElement<HTMLButtonElement> {
5
12
  static nativeName: string;
6
13
  static accessorExclusions: string[];
package/dist/index.es.js CHANGED
@@ -986,7 +986,7 @@ class J extends A {
986
986
  return `
987
987
  <div class="cell-switch">
988
988
  <px-cell hoverable>
989
- <px-switch slot="action-indicator" inert></px-switch>
989
+ <px-switch slot="action-indicator" aria-hidden="true" tabindex="-1"></px-switch>
990
990
  <slot name="visual" slot="visual"></slot>
991
991
  <slot name="label" slot="label"></slot>
992
992
  <slot name="description" slot="description"></slot>
@@ -1249,7 +1249,7 @@ class Q extends A {
1249
1249
  return `
1250
1250
  <div class="cell-radio">
1251
1251
  <px-cell hoverable>
1252
- <px-radio slot="prefix" inert></px-radio>
1252
+ <px-radio slot="prefix" aria-hidden="true" tabindex="-1"></px-radio>
1253
1253
  <slot name="visual" slot="visual"></slot>
1254
1254
  <slot name="label" slot="label"></slot>
1255
1255
  <slot name="description" slot="description"></slot>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-cell",
3
- "version": "1.4.5-alpha.9",
3
+ "version": "1.4.5-beta.2",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",