@cambly/syntax-core 5.9.0 → 6.0.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/dist/index.css +27 -22
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +6 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1173,7 +1173,7 @@ var ColorBaseDestructive700 = "#d32a4b";
|
|
|
1173
1173
|
var ColorBaseGray800 = "#353535";
|
|
1174
1174
|
|
|
1175
1175
|
// css-module:./SelectList.module.css#css-module
|
|
1176
|
-
var SelectList_module_default = { "selectContainer": "
|
|
1176
|
+
var SelectList_module_default = { "selectContainer": "_selectContainer_lq72f_1", "opacityOverlay": "_opacityOverlay_lq72f_7", "outerTextContainer": "_outerTextContainer_lq72f_11", "selectWrapper": "_selectWrapper_lq72f_16", "selectBox": "_selectBox_lq72f_21", "selectMouseFocusStyling": "_selectMouseFocusStyling_lq72f_37", "unselected": "_unselected_lq72f_42", "selected": "_selected_lq72f_46", "arrowIcon": "_arrowIcon_lq72f_50", "sm": "_sm_lq72f_64", "md": "_md_lq72f_70", "lg": "_lg_lq72f_76", "selectError": "_selectError_lq72f_82" };
|
|
1177
1177
|
|
|
1178
1178
|
// src/SelectList/SelectOption.tsx
|
|
1179
1179
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
@@ -1200,6 +1200,7 @@ var SelectList = ({
|
|
|
1200
1200
|
helperText,
|
|
1201
1201
|
label,
|
|
1202
1202
|
onChange,
|
|
1203
|
+
onClick,
|
|
1203
1204
|
placeholderText,
|
|
1204
1205
|
selectedValue = "",
|
|
1205
1206
|
size = "md"
|
|
@@ -1232,7 +1233,7 @@ var SelectList = ({
|
|
|
1232
1233
|
// for focus mouse
|
|
1233
1234
|
}),
|
|
1234
1235
|
onChange,
|
|
1235
|
-
onClick
|
|
1236
|
+
onClick,
|
|
1236
1237
|
value: placeholderText && !selectedValue ? placeholderText : selectedValue,
|
|
1237
1238
|
onFocus: () => setIsFocused(true),
|
|
1238
1239
|
onBlur: () => setIsFocused(false),
|