@liner-fe/prism 2.1.38 → 2.1.39
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.
|
@@ -11,8 +11,7 @@ declare const defaultTextfieldVariants: (props?: ({
|
|
|
11
11
|
class?: never;
|
|
12
12
|
className?: import("cva").ClassValue;
|
|
13
13
|
})) | undefined) => string;
|
|
14
|
-
export
|
|
15
|
-
}
|
|
14
|
+
export type TextfieldButtonProps = Omit<DefaultButtonProps<FillType>, 'size'>;
|
|
16
15
|
export type TextfieldLabelType = 'in' | 'out';
|
|
17
16
|
interface TextfieldLabelProps {
|
|
18
17
|
text: string;
|
package/lib/index.cjs
CHANGED
|
@@ -8948,7 +8948,6 @@ var IconButton = (0, import_react12.forwardRef)(
|
|
|
8948
8948
|
disabled: disabled && !isLoading,
|
|
8949
8949
|
"aria-label": icon.name,
|
|
8950
8950
|
role: "button",
|
|
8951
|
-
tabIndex: 0,
|
|
8952
8951
|
children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(Loading, { size: iconButtonLoadingSizeMap[size], level: iconButtonLoadingLevelMap[level] }) : /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
8953
8952
|
Icon,
|
|
8954
8953
|
{
|
|
@@ -9304,6 +9303,7 @@ var Textfield = (0, import_react16.forwardRef)((props, ref) => {
|
|
|
9304
9303
|
] })
|
|
9305
9304
|
] });
|
|
9306
9305
|
});
|
|
9306
|
+
Textfield.displayName = "Textfield";
|
|
9307
9307
|
|
|
9308
9308
|
// src/components/Slider/index.tsx
|
|
9309
9309
|
var import_react17 = require("react");
|