@inntechcorp/it-design 2.0.78 → 2.0.80
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/accordion/submenu/styled.d.ts +4 -1
- package/dist/global.css +21 -14
- package/dist/index.cjs.js +62 -59
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +7 -5
- package/dist/index.esm.js +55 -52
- package/dist/{output-DfOH-aLb.css → output-DCvuWNga.css} +26 -26
- package/dist/select/style.settings.d.ts +6 -1
- package/dist/select/styled.d.ts +2 -0
- package/dist/select/toggle/Toggle.d.ts +1 -1
- package/dist/stories/Select.stories.d.ts +1 -0
- package/dist/types/SelectProps.d.ts +6 -4
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -70,7 +70,7 @@ export type { AccordionSubMenuProps } from './types/AccordionSubMenuProps';
|
|
|
70
70
|
export type { AccordionItemProps } from './types/AccordionItemProps';
|
|
71
71
|
export type { InputProps, InputVariant } from './types/InputProps';
|
|
72
72
|
export type { TextAreaProps, TextAreaVariant, TextAreaEvent } from './types/TextAreaProps';
|
|
73
|
-
export type { SelectProps, SelectToggleProps, SelectOptionProps, SelectVariant } from './types/SelectProps';
|
|
73
|
+
export type { SelectProps, SelectToggleProps, SelectOptionProps, SelectVariant, SelectDirection, SelectPosition } from './types/SelectProps';
|
|
74
74
|
export type { CheckboxProps, CheckboxGroupProps, GroupCheckboxOptionType, CheckboxEvent } from './types/CheckboxProps';
|
|
75
75
|
export type { ITDImperativeFuncProps } from './types/ITDImperativeFuncProps';
|
|
76
76
|
export type { SingleQueryProps } from './types/SingleQueryProps';
|
package/dist/index.d.ts
CHANGED
|
@@ -748,8 +748,8 @@ type SelectProps = {
|
|
|
748
748
|
defaultValue?: string | number;
|
|
749
749
|
value?: string | number;
|
|
750
750
|
label?: string;
|
|
751
|
-
position?:
|
|
752
|
-
direction?:
|
|
751
|
+
position?: SelectPosition;
|
|
752
|
+
direction?: SelectDirection;
|
|
753
753
|
mode?: string;
|
|
754
754
|
size?: ITDSize;
|
|
755
755
|
variant?: SelectVariant;
|
|
@@ -776,8 +776,8 @@ type SelectToggleProps = {
|
|
|
776
776
|
disabled: boolean;
|
|
777
777
|
labelType: string;
|
|
778
778
|
placeholder: string;
|
|
779
|
-
icon
|
|
780
|
-
image
|
|
779
|
+
icon?: string;
|
|
780
|
+
image?: string;
|
|
781
781
|
size: ITDSize;
|
|
782
782
|
selected: SelectOptionProps;
|
|
783
783
|
onFocus: () => void;
|
|
@@ -785,6 +785,8 @@ type SelectToggleProps = {
|
|
|
785
785
|
onChange: (open: boolean) => void;
|
|
786
786
|
};
|
|
787
787
|
type SelectVariant = "default" | "solid" | "filled" | "outline" | "custom";
|
|
788
|
+
type SelectPosition = "top" | "bottom";
|
|
789
|
+
type SelectDirection = "right" | "left";
|
|
788
790
|
type SelectOptionProps = {
|
|
789
791
|
value: string;
|
|
790
792
|
text: string;
|
|
@@ -1291,4 +1293,4 @@ declare enum FileExtensions {
|
|
|
1291
1293
|
OTF = ".otf"
|
|
1292
1294
|
}
|
|
1293
1295
|
|
|
1294
|
-
export { ALink, Accordion, type AccordionItemProps, type AccordionProps, type AccordionSubMenuProps, AddDefaultThemeStyle, AddZero, Alert, type AlertProps, type AlertSize, type AlertType, Arrow as ArrowIcon, BackToTop, BackTop, Button, type ButtonContentPosition, type ButtonProps, type ButtonState, type ButtonType, type ButtonVariant, Calendar, Card, type CardProps, CheckFileURL, Checkbox, type CheckboxEvent, type CheckboxGroupProps, type CheckboxProps, Checkmark, ChunkArray, Collapse, ConsoleLog, ConvertCurrency, DatePicker, DetermineNewHeight, DetermineNewWidth, type FieldUpdateProps, FileChecker, FileExtensions, FileTypes, FindSelector, Flex, type FlexAlignProps, type FlexGapProps, type FlexJustifyProps, type FlexProps, Form, type FormContextType, type FormItemProps, type FormProps, type FormRuleProps, type FormSubComponentProps, type FormValueProps, FormatBytes, GetByCurrency, GetCountryCodeByCurrencyCode, GetCountryCodeByLanguage, GetCurrencyFormat, GetCurrencySymbol, GetDecimalByCurrency, GetTypeByFileType, type GroupCheckboxOptionType, H1, H2, H3, H4, ITDContext, type ITDContextType, type ITDImperativeFuncProps, ITDProvider, type ITDProviderProps, type ITDSize, type ITDSizeSlug, _default as Image, InlineSelect, InlineSelectArrow, Input, type InputProps, type InputVariant, IsValidJSON, Lock as LockIcon, type ModalContentProps, ModalManager, type ModalProps, type ModalRefProps, ModalState, NoData, Notification, type NotificationContextType, type NotificationsProps, Picture, Progress, type ProgressProps, type ProgressStatus, Radio, RemoveUnits, Result, SVGLoader, Select, type SelectOptionProps, type SelectProps, type SelectToggleProps, type SelectVariant, type SingleQueryProps, Spin, Status, type StatusProps, type StatusVariant, Switch, type SwitchProps, Table, type TableColumnType, type TableProps, Tabs, type TabsItemProps, type TabsProps, TextArea, type TextAreaEvent, type TextAreaProps, type TextAreaVariant, TinyScrollbar, Tooltip, Trash, UniUpperCase, UpdateThemeStyle, Upload, Upload$1 as UploadIcon, type UploadProgressProps, type UploadProps, type UploadResultMessageProps, Wait, ZoomIn, ZoomOut, useAddExternalCSS, useComponentSize, useConnectionStatus, useConstructor, useCoreFetch, useCreateDynamicStyle, useCreateStyledStyle, useMultiQuery, useOnClickOutside, useOnESCKeyDown, useOnResize, useReCaptcha, useSingleQuery };
|
|
1296
|
+
export { ALink, Accordion, type AccordionItemProps, type AccordionProps, type AccordionSubMenuProps, AddDefaultThemeStyle, AddZero, Alert, type AlertProps, type AlertSize, type AlertType, Arrow as ArrowIcon, BackToTop, BackTop, Button, type ButtonContentPosition, type ButtonProps, type ButtonState, type ButtonType, type ButtonVariant, Calendar, Card, type CardProps, CheckFileURL, Checkbox, type CheckboxEvent, type CheckboxGroupProps, type CheckboxProps, Checkmark, ChunkArray, Collapse, ConsoleLog, ConvertCurrency, DatePicker, DetermineNewHeight, DetermineNewWidth, type FieldUpdateProps, FileChecker, FileExtensions, FileTypes, FindSelector, Flex, type FlexAlignProps, type FlexGapProps, type FlexJustifyProps, type FlexProps, Form, type FormContextType, type FormItemProps, type FormProps, type FormRuleProps, type FormSubComponentProps, type FormValueProps, FormatBytes, GetByCurrency, GetCountryCodeByCurrencyCode, GetCountryCodeByLanguage, GetCurrencyFormat, GetCurrencySymbol, GetDecimalByCurrency, GetTypeByFileType, type GroupCheckboxOptionType, H1, H2, H3, H4, ITDContext, type ITDContextType, type ITDImperativeFuncProps, ITDProvider, type ITDProviderProps, type ITDSize, type ITDSizeSlug, _default as Image, InlineSelect, InlineSelectArrow, Input, type InputProps, type InputVariant, IsValidJSON, Lock as LockIcon, type ModalContentProps, ModalManager, type ModalProps, type ModalRefProps, ModalState, NoData, Notification, type NotificationContextType, type NotificationsProps, Picture, Progress, type ProgressProps, type ProgressStatus, Radio, RemoveUnits, Result, SVGLoader, Select, type SelectDirection, type SelectOptionProps, type SelectPosition, type SelectProps, type SelectToggleProps, type SelectVariant, type SingleQueryProps, Spin, Status, type StatusProps, type StatusVariant, Switch, type SwitchProps, Table, type TableColumnType, type TableProps, Tabs, type TabsItemProps, type TabsProps, TextArea, type TextAreaEvent, type TextAreaProps, type TextAreaVariant, TinyScrollbar, Tooltip, Trash, UniUpperCase, UpdateThemeStyle, Upload, Upload$1 as UploadIcon, type UploadProgressProps, type UploadProps, type UploadResultMessageProps, Wait, ZoomIn, ZoomOut, useAddExternalCSS, useComponentSize, useConnectionStatus, useConstructor, useCoreFetch, useCreateDynamicStyle, useCreateStyledStyle, useMultiQuery, useOnClickOutside, useOnESCKeyDown, useOnResize, useReCaptcha, useSingleQuery };
|