rbro-tat-uds 1.5.30 → 1.5.32

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.
@@ -0,0 +1,20 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ export interface City {
3
+ title: string;
4
+ localitati: {
5
+ title: string;
6
+ clasificare: string;
7
+ }[];
8
+ }
9
+ export interface CityPickerProps extends HTMLAttributes<HTMLDivElement> {
10
+ id?: string;
11
+ name?: string;
12
+ placeholder?: string;
13
+ value?: string;
14
+ setValue?: (value: string) => void;
15
+ size?: "medium" | "large";
16
+ intent?: "default" | "danger";
17
+ disabled?: boolean;
18
+ }
19
+ declare const CityPicker: React.FC<CityPickerProps>;
20
+ export default CityPicker;
@@ -0,0 +1,7 @@
1
+ export declare const cities: {
2
+ title: string;
3
+ localitati: {
4
+ title: string;
5
+ clasificare: string;
6
+ }[];
7
+ }[];
@@ -0,0 +1 @@
1
+ export { default as CityPicker } from "./CityPicker";
@@ -12,6 +12,7 @@ export interface ContentDropdownProps extends HTMLAttributes<HTMLDivElement> {
12
12
  placeholder?: ReactNode | JSX.Element | string | Element;
13
13
  dropdownOpened?: (value: boolean) => void;
14
14
  defaultOpen?: boolean;
15
+ showHelperScroll?: boolean;
15
16
  }
16
17
  declare const ContentDropdown: React.FC<ContentDropdownProps>;
17
18
  export default ContentDropdown;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec" | "shield-check" | "like" | "mobile-connecting" | "bundle-of-money" | "eye-opened" | "mountains" | "autoservice-3" | "payment-auto" | "warning-tr";
2
+ export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec" | "shield-check" | "like" | "mobile-connecting" | "bundle-of-money" | "eye-opened" | "mountains" | "autoservice-3" | "payment-auto" | "warning-tr" | "safe" | "lightining" | "credit-cash" | "atm-cards-1" | "card-credit" | "exchange-1" | "cards" | "airplane" | "calculator-currency-2" | "shield" | "menu-up" | "menu-down" | "office-supplies" | "city";
3
3
  export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
4
4
  icon: IconsListProp;
5
5
  size?: 8 | 12 | 14 | 16 | 18 | 20 | 24 | 32 | 40;
@@ -83,5 +83,19 @@ declare const IconsList: {
83
83
  "autoservice-3": string;
84
84
  "payment-auto": string;
85
85
  "warning-tr": string;
86
+ safe: string;
87
+ lightining: string;
88
+ "credit-cash": string;
89
+ "atm-cards-1": string;
90
+ "card-credit": string;
91
+ "exchange-1": string;
92
+ cards: string;
93
+ airplane: string;
94
+ "calculator-currency-2": string;
95
+ shield: string;
96
+ "menu-up": string;
97
+ "menu-down": string;
98
+ "office-supplies": string;
99
+ city: string;
86
100
  };
87
101
  export default IconsList;
@@ -61,3 +61,4 @@ export * from "./Numpad";
61
61
  export * from "./PropunereFondInvestitii";
62
62
  export * from "./PropunereAsigurariCalatorie";
63
63
  export * from "./InPageTab";
64
+ export * from "./CityPicker";