@umbraco-ui/uui-checkbox 1.16.0 → 1.17.0-rc.0

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/lib/index.js CHANGED
@@ -205,9 +205,9 @@ UUICheckboxElement.styles = [
205
205
  :host(:not([pristine])[internals-invalid]) label:focus input:checked + #ticker,
206
206
  :host(:not([pristine])[internals-invalid]) label:focus input:indeterminate + #ticker {
207
207
  border: 1px solid var(--uui-color-invalid-standalone,rgb(
208
- 191,
209
- 33,
210
- 78
208
+ 174,
209
+ 30,
210
+ 71
211
211
  ));
212
212
  }
213
213
 
@@ -11,7 +11,7 @@ export default class UUICheckboxIndeterminateExample extends LitElement {
11
11
  values: string[];
12
12
  private _handleParentChange;
13
13
  private _handleOptionChange;
14
- render(): import("lit-html").TemplateResult<1>;
14
+ render(): import("lit").TemplateResult<1>;
15
15
  }
16
16
  declare global {
17
17
  interface HTMLElementTagNameMap {
@@ -12,7 +12,7 @@ export declare class UUICheckboxElement extends UUIBooleanInputElement {
12
12
  * @type {boolean}
13
13
  */
14
14
  static readonly formAssociated = true;
15
- renderCheckbox(): import("lit-html").TemplateResult<1>;
15
+ renderCheckbox(): import("lit").TemplateResult<1>;
16
16
  static styles: import("lit").CSSResult[];
17
17
  }
18
18
  declare global {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-checkbox",
3
- "version": "1.16.0",
3
+ "version": "1.17.0-rc.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -33,9 +33,9 @@
33
33
  "custom-elements.json"
34
34
  ],
35
35
  "dependencies": {
36
- "@umbraco-ui/uui-base": "1.16.0",
37
- "@umbraco-ui/uui-boolean-input": "1.16.0",
38
- "@umbraco-ui/uui-icon-registry-essential": "1.16.0"
36
+ "@umbraco-ui/uui-base": "1.17.0-rc.0",
37
+ "@umbraco-ui/uui-boolean-input": "1.17.0-rc.0",
38
+ "@umbraco-ui/uui-icon-registry-essential": "1.17.0-rc.0"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -46,5 +46,5 @@
46
46
  "access": "public"
47
47
  },
48
48
  "homepage": "https://uui.umbraco.com/?path=/story/uui-checkbox",
49
- "gitHead": "40e9bb97938eed758af1bc3852b2c2a015f87de6"
49
+ "gitHead": "028e20bd07ebf02164589b086e746c9cc587409c"
50
50
  }