dhre-ui-kit 0.0.401 → 2.0.2
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/lib/index.d.ts +14 -2
- package/lib/index.js +3153 -249
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3153 -249
- package/lib/index.mjs.map +1 -1
- package/package.json +9 -5
- package/src/assets/fonts/Nakheel-HeadlineBold.otf +0 -0
- package/src/assets/fonts/Nakheel-HeadlineRegular.otf +0 -0
- package/src/assets/fonts/Nakheel-TextBold.otf +0 -0
- package/src/assets/fonts/Nakheel-TextRegular.otf +0 -0
package/lib/index.d.ts
CHANGED
|
@@ -262,7 +262,9 @@ declare enum FontStyle {
|
|
|
262
262
|
}
|
|
263
263
|
declare enum Theme {
|
|
264
264
|
SURFACE_PRIMARY = "SURFACE_PRIMARY",
|
|
265
|
+
SURFACE_PRIMARY_NAKHEEL = "SURFACE_PRIMARY_NAKHEEL",
|
|
265
266
|
SURFACE_SECONDARY = "SURFACE_SECONDARY",
|
|
267
|
+
SURFACE_SECONDARY_NAKHEEL = "SURFACE_SECONDARY_NAKHEEL",
|
|
266
268
|
SURFACE_TERTIARY = "SURFACE_TERTIARY",
|
|
267
269
|
SURFACE_STATIC = "SURFACE_STATIC",
|
|
268
270
|
SURFACE_BRAND_STATIC = "SURFACE_BRAND_STATIC",
|
|
@@ -619,7 +621,8 @@ interface MobileNumberInputProps {
|
|
|
619
621
|
}
|
|
620
622
|
declare const CountryDropDown: ({ defaultCountryCode, defaultCallingCode, placeholder, onChangeText, value, containerStyle, inputStyle, countryPickerStyle, callingCodeStyle, getCountryCode, maxLength, errorMessage, label, }: MobileNumberInputProps) => React$1.JSX.Element;
|
|
621
623
|
|
|
622
|
-
|
|
624
|
+
type BaseTextInputProps = Omit<TextInputProps$1, 'ref'>;
|
|
625
|
+
interface CommonTextInputProps extends BaseTextInputProps {
|
|
623
626
|
value?: string;
|
|
624
627
|
placeholderText?: string;
|
|
625
628
|
isSecureTextEntry?: boolean;
|
|
@@ -803,10 +806,18 @@ declare const theme: {
|
|
|
803
806
|
light: string;
|
|
804
807
|
dark: string;
|
|
805
808
|
};
|
|
809
|
+
SURFACE_PRIMARY_NAKHEEL: {
|
|
810
|
+
light: string;
|
|
811
|
+
dark: string;
|
|
812
|
+
};
|
|
806
813
|
SURFACE_SECONDARY: {
|
|
807
814
|
light: string;
|
|
808
815
|
dark: string;
|
|
809
816
|
};
|
|
817
|
+
SURFACE_SECONDARY_NAKHEEL: {
|
|
818
|
+
light: string;
|
|
819
|
+
dark: string;
|
|
820
|
+
};
|
|
810
821
|
SURFACE_TERTIARY: {
|
|
811
822
|
light: string;
|
|
812
823
|
dark: string;
|
|
@@ -1184,4 +1195,5 @@ interface RadioButtonGroupProps {
|
|
|
1184
1195
|
|
|
1185
1196
|
declare const RadioButtonGroup: React$1.FC<RadioButtonGroupProps>;
|
|
1186
1197
|
|
|
1187
|
-
export { _default$g as Accordion, AnimationWithImperativeApi as AnimationLoitte, _default$1 as AppointmentCard, _default$j as Badge, BottomDrawer, _default$i as Button, Cards, _default$7 as Category, Checkbox as CheckBox, _default$a as ContactModel, CountryDropDown as CountryPicker, _default$4 as CustomDocumentPicker, CustomDropdown$1 as CustomDropdown, _default$f as CustomHeader,
|
|
1198
|
+
export { _default$g as Accordion, AnimationWithImperativeApi as AnimationLoitte, _default$1 as AppointmentCard, _default$j as Badge, BottomDrawer, _default$i as Button, Cards, _default$7 as Category, Checkbox as CheckBox, _default$a as ContactModel, CountryDropDown as CountryPicker, _default$4 as CustomDocumentPicker, CustomDropdown$1 as CustomDropdown, _default$f as CustomHeader, CustomIcon, _default$d as CustomLoader, CustomProgressBar, CustomSearchBar, _default$2 as CustomSlideButton, CustomSwitchBtn, _default$k as CustomText, CustomTextInput, CustomTooltip, CustomTypography, DHRE_COLORS_ALERT, DHRE_COLORS_BG, DHRE_COLORS_PRIMARY, DHRE_COLORS_SECONDARY, DHRE_COLORS_TEXT, DHRE_DEFAULT, _default$9 as DateRangePicker, CustomDropdown as DropDown, FONT_STYLES, _default$6 as FeedbackForm, FileUpload, FontStyle, _default$c as Line, NotificationBandge, OTPInput, _default$8 as OurOfficesButton, PdfView, PopUp, _default as PropertyDetails, RadioButtonGroup, ShapeType, _default$5 as SingleSelectionTags, Star as StarRating, _default$3 as Stepper, _default$e as SwipableList, _default$h as Tabs, Tags, TextDirectType, CommonTextInput as TextInput, Theme, Toast, CustomSwitch as ToggleButton, ToggleButtonType, ToggleTextType, _default$b as Topic, copyToClipboard, theme as default, height, horizontalScale, moderateScale, toastService, verticalScale, width };
|
|
1199
|
+
export type { CustomHeaderProps, SlideButtonHandle, ToastRef };
|