@inntechcorp/it-design 2.1.70 → 2.1.72
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.cjs.js +218 -218
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +5 -2
- package/dist/index.esm.js +4 -4
- package/dist/locales/en/itd.json +2 -1
- package/dist/locales/itd.json +2 -1
- package/dist/locales/tr/itd.json +2 -1
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +38 -38
package/dist/index.d.mts
CHANGED
|
@@ -42,6 +42,8 @@ export declare const resources: {
|
|
|
42
42
|
usernameRule: string;
|
|
43
43
|
wrongTCIdentity: string;
|
|
44
44
|
fieldMustBeTheSame: string;
|
|
45
|
+
siteUsernameRule: string;
|
|
46
|
+
fieldMustBeDifferent: string;
|
|
45
47
|
};
|
|
46
48
|
uploader: {
|
|
47
49
|
header: string;
|
|
@@ -330,6 +332,8 @@ export declare const resources: {
|
|
|
330
332
|
usernameRule: string;
|
|
331
333
|
wrongTCIdentity: string;
|
|
332
334
|
fieldMustBeTheSame: string;
|
|
335
|
+
siteUsernameRule: string;
|
|
336
|
+
fieldMustBeDifferent: string;
|
|
333
337
|
};
|
|
334
338
|
uploader: {
|
|
335
339
|
header: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ declare function DetermineNewWidth(originalHeight: number, originalWidth: number
|
|
|
39
39
|
|
|
40
40
|
declare function FindSelector(searchClassName: string): boolean;
|
|
41
41
|
|
|
42
|
-
declare function GetCountryCodeByCurrencyCode(currency?: string): "
|
|
42
|
+
declare function GetCountryCodeByCurrencyCode(currency?: string): "tr" | "eu" | "en" | "uk";
|
|
43
43
|
|
|
44
44
|
declare function GetCountryCodeByLanguage(language: string): "tur" | "usa" | "language_not_found";
|
|
45
45
|
|
|
@@ -1616,6 +1616,7 @@ declare const resources: {
|
|
|
1616
1616
|
wrongTCIdentity: string;
|
|
1617
1617
|
fieldMustBeTheSame: string;
|
|
1618
1618
|
siteUsernameRule: string;
|
|
1619
|
+
fieldMustBeDifferent: string;
|
|
1619
1620
|
};
|
|
1620
1621
|
uploader: {
|
|
1621
1622
|
header: string;
|
|
@@ -1905,6 +1906,7 @@ declare const resources: {
|
|
|
1905
1906
|
wrongTCIdentity: string;
|
|
1906
1907
|
fieldMustBeTheSame: string;
|
|
1907
1908
|
siteUsernameRule: string;
|
|
1909
|
+
fieldMustBeDifferent: string;
|
|
1908
1910
|
};
|
|
1909
1911
|
uploader: {
|
|
1910
1912
|
header: string;
|
|
@@ -2153,4 +2155,5 @@ declare const resources: {
|
|
|
2153
2155
|
};
|
|
2154
2156
|
};
|
|
2155
2157
|
|
|
2156
|
-
export { ALink, Accordion,
|
|
2158
|
+
export { ALink, Accordion, AddDefaultThemeStyle, AddDefaultUnit, AddZero, Alert, Arrow as ArrowIcon, BackToTop, BackTop, Base64Decode, Base64Encode, Button, Calendar, Card, CheckFileURL, Checkbox, Checkmark, ChunkArray, Collapse, ConsoleLog, ConvertCurrency, DatePicker, DetermineNewHeight, DetermineNewWidth, FileChecker, FileExtensions, FileTypes, FindSelector, Flex, Form, FormValidationTypes, FormatBytes, FormatDate, FormatDateTime, FormatSimpleDate, FormatSimpleDateTime, FormatTime, GetByCurrency, GetCountryCodeByCurrencyCode, GetCountryCodeByLanguage, GetCurrencyFormat, GetCurrencySymbol, GetDecimalByCurrency, GetTypeByFileType, H1, H2, H3, H4, ITDContext, ITDProvider, _default as Image, InlineSelect, InlineSelectArrow, Input, IsValidJSON, Lock as LockIcon, ModalManager, ModalState, NoData, Notification, Picture, Progress, Radio, RemoveUnits, Result, SVGLoader, Select, Spin, Status, Switch, Table, Tabs, TextArea, TinyScrollbar, Trash, UniUpperCase, UpdateThemeStyle, Upload, Upload$1 as UploadIcon, Wait, ZoomIn, ZoomOut, resources, toKebabCase, useAddExternalCSS, useComponentSize, useConnectionStatus, useConstructor, useContextBridge, useCoreFetch, useCreateDynamicStyle, useCreateStyledStyle, useKeyboardShortcut, useMultiQuery, useOnClickOutside, useOnESCKeyDown, useOnResize, useOrientation, useReCaptcha, useSingleQuery };
|
|
2159
|
+
export type { AccordionItemProps, AccordionProps, AccordionSubMenuProps, AlertProps, AlertSize, AlertType, ButtonContentPosition, ButtonProps, ButtonState, ButtonType, ButtonVariant, CalendarDayProps, CalendarProps, CalendarValueProps, CardProps, CheckboxEvent, CheckboxGroupProps, CheckboxProps, DatePickerProps, Direction, FieldUpdateProps, FlexAlignProps, FlexGapProps, FlexJustifyProps, FlexProps, FormContextType, FormItemProps, FormProps, FormRuleProps, FormSubComponentProps, FormValueProps, GroupCheckboxOptionType, ITDContextType, ITDImperativeFuncProps, ITDProviderProps, ITDSize, ITDSizeSlug, InputProps, InputVariant, ModalContentProps, ModalProps, ModalRefProps, NotificationContextType, NotificationsProps, ProgressProps, ProgressStatus, QueryValueProps, RadioButtonProps, RadioGroupProps, RadioType, ResultProps, SelectDirection, SelectOptionProps, SelectPosition, SelectProps, SelectToggleProps, SelectValue, SelectVariant, SingleQueryProps, StatusProps, StatusVariant, SwitchProps, TableColumnType, TableProps, TableRefProps, TableRow, TableTRProps, TabsItemProps, TabsProps, TextAreaEvent, TextAreaProps, TextAreaVariant, UploadProgressProps, UploadProps, UploadResultMessageProps };
|