@kubit-ui-web/react-components 2.0.0-beta.14 → 2.0.0-beta.15
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/types/index.d.ts
CHANGED
|
@@ -4168,6 +4168,17 @@ declare interface KubitProviderProps {
|
|
|
4168
4168
|
utilsConfig?: UtilsContextType;
|
|
4169
4169
|
}
|
|
4170
4170
|
|
|
4171
|
+
/**
|
|
4172
|
+
* LabelStandAlone component renders an accessible label element with optional required indicator.
|
|
4173
|
+
*
|
|
4174
|
+
* @component
|
|
4175
|
+
* @example
|
|
4176
|
+
* ```tsx
|
|
4177
|
+
* <LabelStandAlone inputId="email" required requiredSymbol="*">
|
|
4178
|
+
* Email Address
|
|
4179
|
+
* </LabelStandAlone>
|
|
4180
|
+
* ```
|
|
4181
|
+
*/
|
|
4171
4182
|
export declare const Label: ForwardRefExoticComponent<LabelStandAloneProps & RefAttributes<HTMLParagraphElement>>;
|
|
4172
4183
|
|
|
4173
4184
|
/**
|
|
@@ -5003,6 +5014,21 @@ export declare interface RadioButtonProps<Variant = undefined extends string ? u
|
|
|
5003
5014
|
additionalClasses?: Partial<RadioButtonCssClasses>;
|
|
5004
5015
|
}
|
|
5005
5016
|
|
|
5017
|
+
/**
|
|
5018
|
+
* Standalone radio button component for rendering selectable radio inputs.
|
|
5019
|
+
*
|
|
5020
|
+
* This component renders a radio button with label, optional legend, error message,
|
|
5021
|
+
* and custom icon states. It handles accessibility attributes and visual states.
|
|
5022
|
+
*
|
|
5023
|
+
* @example
|
|
5024
|
+
* ```tsx
|
|
5025
|
+
* <RadioButtonStandAlone
|
|
5026
|
+
* label={{ content: "Option A" }}
|
|
5027
|
+
* checked={true}
|
|
5028
|
+
* onChange={() => {}}
|
|
5029
|
+
* />
|
|
5030
|
+
* ```
|
|
5031
|
+
*/
|
|
5006
5032
|
export declare const RadioButtonStandAlone: ({ altVariant, checked, cssClasses, disabled, error, errorAriaLiveType, errorIcon, errorMessage, id, label, lastChild, name, onBlur, onChange, screenReaderId, state, subTitle, tabIndex, value, ...props }: RadioButtonStandAloneProps) => JSX.Element;
|
|
5007
5033
|
|
|
5008
5034
|
/**
|
|
@@ -5556,6 +5582,25 @@ declare interface StylesProviderProps {
|
|
|
5556
5582
|
jsInCss?: boolean;
|
|
5557
5583
|
}
|
|
5558
5584
|
|
|
5585
|
+
/**
|
|
5586
|
+
* Table component with automatic sticky column calculations and scroll shadow effects.
|
|
5587
|
+
*
|
|
5588
|
+
* This component wraps TableStandAlone and adds automatic sticky positioning for left
|
|
5589
|
+
* and right columns, scroll shadow effects, and responsive behavior. It manages scroll
|
|
5590
|
+
* state and column positioning internally.
|
|
5591
|
+
*
|
|
5592
|
+
* @example
|
|
5593
|
+
* ```tsx
|
|
5594
|
+
* <Table
|
|
5595
|
+
* variant="primary"
|
|
5596
|
+
* autoLeftStickyCalc={true}
|
|
5597
|
+
* autoRightStickyCalc={true}
|
|
5598
|
+
* >
|
|
5599
|
+
* <thead>...</thead>
|
|
5600
|
+
* <tbody>...</tbody>
|
|
5601
|
+
* </Table>
|
|
5602
|
+
* ```
|
|
5603
|
+
*/
|
|
5559
5604
|
export declare const Table: ForwardRefExoticComponent<TableProps & {
|
|
5560
5605
|
children?: ReactNode | undefined;
|
|
5561
5606
|
} & RefAttributes<HTMLDivElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubit-ui-web/react-components",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.15",
|
|
4
4
|
"description": "Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kubit",
|