@bolttech/molecules-dropdown 0.1.10 → 0.1.11
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/index.cjs +4 -4
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -2252,7 +2252,7 @@ const ClickableElement = /*#__PURE__*/styled__default["default"].div.withConfig(
|
|
|
2252
2252
|
const ContainerDropdown = /*#__PURE__*/styled__default["default"].section.withConfig({
|
|
2253
2253
|
displayName: "molecules-dropdownstyles__ContainerDropdown",
|
|
2254
2254
|
componentId: "sc-3wugi4-1"
|
|
2255
|
-
})(["display:flex;padding-top:", ";padding-bottom:", ";padding-right:", ";padding-left:", ";gap:", ";background-color:", ";border:", ";border-radius:", ";box-shadow:", ";input{display:inline-block;text-overflow:ellipsis;white-space:nowrap;width:100%;overflow-x:hidden;}.fieldLabel{color:", ";font-family:", ";font-weight:", ";line-height:", ";font-size:", ";letter-spacing:", ";}.requiredLabel{color:", ";font-family:", ";font-weight:", ";line-height:", ";font-size:", ";letter-spacing:", ";}
|
|
2255
|
+
})(["display:flex;padding-top:", ";padding-bottom:", ";padding-right:", ";padding-left:", ";gap:", ";background-color:", ";border:", ";border-radius:", ";box-shadow:", ";input{display:inline-block;text-overflow:ellipsis;white-space:nowrap;width:100%;overflow-x:hidden;}.fieldLabel{color:", ";font-family:", ";font-weight:", ";line-height:", ";font-size:", ";letter-spacing:", ";}.requiredLabel{color:", ";font-family:", ";font-weight:", ";line-height:", ";font-size:", ";letter-spacing:", ";}label.material-symbols-sharp{color:", ";}&:focus-within{background-color:", ";border:", ";", "}", " ", ""], ({
|
|
2256
2256
|
theme
|
|
2257
2257
|
}) => theme.components.dropdown.paddingVertical, ({
|
|
2258
2258
|
theme
|
|
@@ -2318,7 +2318,7 @@ const ContainerDropdown = /*#__PURE__*/styled__default["default"].section.withCo
|
|
|
2318
2318
|
hasError
|
|
2319
2319
|
}) => `1px solid ${theme.components.dropdown[variant].container.border[hasError ? 'error' : 'focus']}`, ({
|
|
2320
2320
|
hasError
|
|
2321
|
-
}) => !hasError && styled.css([".fieldLabel{color:", ";}.requiredLabel{color:", ";}
|
|
2321
|
+
}) => !hasError && styled.css([".fieldLabel{color:", ";}.requiredLabel{color:", ";}label.material-symbols-sharp{color:", ";}"], ({
|
|
2322
2322
|
theme,
|
|
2323
2323
|
variant
|
|
2324
2324
|
}) => theme.components.dropdown[variant].text.color.fieldLabel.focus, ({
|
|
@@ -2330,7 +2330,7 @@ const ContainerDropdown = /*#__PURE__*/styled__default["default"].section.withCo
|
|
|
2330
2330
|
}) => theme.components.dropdown[variant].icon.color.focus), ({
|
|
2331
2331
|
hasError,
|
|
2332
2332
|
hasValue
|
|
2333
|
-
}) => hasError && styled.css(["border:", ";background-color:", ";.fieldLabel{color:", ";}.requiredLabel{color:", ";}
|
|
2333
|
+
}) => hasError && styled.css(["border:", ";background-color:", ";.fieldLabel{color:", ";}.requiredLabel{color:", ";}label.material-symbols-sharp{color:", ";}"], ({
|
|
2334
2334
|
theme,
|
|
2335
2335
|
variant
|
|
2336
2336
|
}) => `1px solid ${theme.components.dropdown[variant].container.border[hasValue ? 'errorFilled' : 'error']}`, ({
|
|
@@ -2349,7 +2349,7 @@ const ContainerDropdown = /*#__PURE__*/styled__default["default"].section.withCo
|
|
|
2349
2349
|
variant
|
|
2350
2350
|
}) => theme.components.dropdown[variant].icon.color[hasValue ? 'errorFilled' : 'error']), ({
|
|
2351
2351
|
disabled
|
|
2352
|
-
}) => disabled && styled.css(["cursor:not-allowed;border:", ";background-color:", ";*{cursor:not-allowed;}.fieldLabel{color:", ";}.requiredLabel{color:", ";}
|
|
2352
|
+
}) => disabled && styled.css(["cursor:not-allowed;border:", ";background-color:", ";*{cursor:not-allowed;}.fieldLabel{color:", ";}.requiredLabel{color:", ";}label.material-symbols-sharp{color:", ";}input{color:", ";::placeholder{color:", ";}}"], ({
|
|
2353
2353
|
theme,
|
|
2354
2354
|
variant
|
|
2355
2355
|
}) => `1px solid ${theme.components.dropdown[variant].container.border.disable}`, ({
|
package/package.json
CHANGED