@spectrum-css/combobox
Advanced tools
Comparing version 4.0.0-s2-foundations.0 to 4.0.0-s2-foundations.1
# Change Log | ||
## 4.0.0-s2-foundations.1 | ||
### Minor Changes | ||
- [#2786](https://github.com/adobe/spectrum-css/pull/2786) [`39bbd6c`](https://github.com/adobe/spectrum-css/commit/39bbd6cbb7eac7c71515ef2417554cb115eba00e) Thanks [@pfulton](https://github.com/pfulton)! - Fixes an issue where vars.css was not being populated with the correct values | ||
### Patch Changes | ||
- Updated dependencies [[`39bbd6c`](https://github.com/adobe/spectrum-css/commit/39bbd6cbb7eac7c71515ef2417554cb115eba00e)]: | ||
- @spectrum-css/progresscircle@4.0.0-s2-foundations.1 | ||
- @spectrum-css/pickerbutton@6.0.0-s2-foundations.1 | ||
- @spectrum-css/textfield@8.0.0-s2-foundations.1 | ||
- @spectrum-css/popover@8.0.0-s2-foundations.1 | ||
- @spectrum-css/menu@8.0.0-s2-foundations.1 | ||
- @spectrum-css/tokens@15.0.0-s2-foundations.1 | ||
## 4.0.0-s2-foundations.0 | ||
@@ -4,0 +20,0 @@ |
{ | ||
"name": "@spectrum-css/combobox", | ||
"version": "4.0.0-s2-foundations.0", | ||
"version": "4.0.0-s2-foundations.1", | ||
"description": "The Spectrum CSS combobox component", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -1,5 +0,1 @@ | ||
import { html } from "lit"; | ||
import { classMap } from "lit/directives/class-map.js"; | ||
import { ifDefined } from "lit/directives/if-defined.js"; | ||
import { Template as FieldLabel } from "@spectrum-css/fieldlabel/stories/template.js"; | ||
@@ -10,4 +6,6 @@ import { Template as Menu } from "@spectrum-css/menu/stories/template.js"; | ||
import { Template as TextField } from "@spectrum-css/textfield/stories/template.js"; | ||
import { useArgs, useGlobals } from "@storybook/preview-api"; | ||
import { html } from "lit"; | ||
import { classMap } from "lit/directives/class-map.js"; | ||
import { ifDefined } from "lit/directives/if-defined.js"; | ||
@@ -33,7 +31,6 @@ import "../index.css"; | ||
...globals | ||
}) => { | ||
}, context) => { | ||
const [, updateArgs] = useArgs(); | ||
const [{ lang }] = useGlobals(); | ||
// If selectedDay is a string, convert it to a Date object | ||
@@ -52,3 +49,3 @@ if (typeof selectedDay === "string" && selectedDay.length > 0) { | ||
alignment: fieldLabelPosition === "left" && "left", | ||
}) : null | ||
}, context) : null | ||
} | ||
@@ -95,3 +92,3 @@ <div | ||
}, | ||
}), | ||
}, context), | ||
PickerButton({ | ||
@@ -115,3 +112,3 @@ ...globals, | ||
}, | ||
}), | ||
}, context), | ||
Popover({ | ||
@@ -150,5 +147,5 @@ ...globals, | ||
], | ||
}), | ||
}, context), | ||
], | ||
}), | ||
}, context), | ||
]} | ||
@@ -155,0 +152,0 @@ </div> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
98130
1023