@umbraco-ui/uui-table 1.3.0-rc.0 → 1.3.0-rc.1

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.
@@ -223,8 +223,8 @@
223
223
  "description": "fires when the media card is selected"
224
224
  },
225
225
  {
226
- "name": "unselected",
227
- "description": "fires when the media card is unselected"
226
+ "name": "deselected",
227
+ "description": "fires when the media card is deselected"
228
228
  }
229
229
  ],
230
230
  "slots": [
package/lib/index.js CHANGED
@@ -29,7 +29,7 @@ UUITableElement.styles = [
29
29
  :host {
30
30
  display: table;
31
31
  width: 100%;
32
- border-radius: var(--uui-border-radius,var(--uui-size-1));
32
+ border-radius: var(--uui-border-radius,3px);
33
33
  background-color: var(--uui-color-surface,#fff);
34
34
  cursor: default;
35
35
  }
@@ -298,14 +298,14 @@ UUITableRowElement.styles = [
298
298
 
299
299
  :host(:focus) {
300
300
  outline: calc(2px * var(--uui-show-focus-outline, 1)) solid
301
- var(--uui-color-focus,var(--uui-palette-malibu));
301
+ var(--uui-color-focus,#3879ff);
302
302
  }
303
303
  :host([selected]) {
304
304
  outline: 2px solid
305
- var(--uui-table-row-color-selected, var(--uui-color-selected,var(--uui-palette-violet-blue)));
305
+ var(--uui-table-row-color-selected, var(--uui-color-selected,#3544b1));
306
306
  }
307
307
  :host([selected]:focus) {
308
- outline-color: var(--uui-color-focus,var(--uui-palette-malibu));
308
+ outline-color: var(--uui-color-focus,#3879ff);
309
309
  }
310
310
  `
311
311
  ];
@@ -29,7 +29,7 @@ export declare class UUITableWithSelectionExampleElement extends LitElement {
29
29
  private _selectAllHandler;
30
30
  private _selectHandler;
31
31
  private _selectRowHandler;
32
- private _unselectRowHandler;
32
+ private _deselectRowHandler;
33
33
  private _sortingHandler;
34
34
  private _isSelected;
35
35
  connectedCallback(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-table",
3
- "version": "1.3.0-rc.0",
3
+ "version": "1.3.0-rc.1",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,16 +30,16 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.3.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.3.0-rc.1"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
37
- "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
37
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
38
38
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
43
  "homepage": "https://uui.umbraco.com/?path=/story/uui-table",
44
- "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
44
+ "gitHead": "0c517175884931aa0bc0d8f05974852a7704626e"
45
45
  }