rbro-tat-uds 1.1.5 → 1.1.7

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.
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface BarProps extends HTMLAttributes<HTMLDivElement> {
4
4
  value?: number;
5
5
  leftColor?: keyof typeof colors;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface ContainerProps extends HTMLAttributes<HTMLDivElement> {
4
4
  gap?: number;
5
5
  padding?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface DividerProps extends HTMLAttributes<HTMLDivElement> {
4
4
  color?: keyof typeof colors;
5
5
  margin?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  declare const _elements: readonly ["div", "main", "article", "p", "span"];
4
4
  declare const _directions: readonly ["row", "row-reverse", "column", "column-reverse"];
5
5
  declare const _wrap: readonly ["nowrap", "wrap", "wrap-reverse"];
@@ -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";
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";
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;
@@ -54,5 +54,6 @@ declare const IconsList: {
54
54
  flag: string;
55
55
  document: string;
56
56
  up: string;
57
+ plus: string;
57
58
  };
58
59
  export default IconsList;
@@ -1,6 +1,6 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
3
2
  import { IconsListProp } from "../Icon/Icon.types";
3
+ import { colors } from "../..";
4
4
  interface IconCardProps extends HTMLAttributes<HTMLDivElement> {
5
5
  icon?: IconsListProp;
6
6
  topGap?: 0 | 2 | 4 | 8;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface ImageCardProps extends HTMLAttributes<HTMLDivElement> {
4
4
  gap?: 0 | 2 | 4 | 8;
5
5
  title?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface LabeledTextProps extends HTMLAttributes<HTMLDivElement> {
4
4
  text: string;
5
5
  label?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../../utils";
2
+ import { colors } from "../..";
3
3
  export interface LayoutProps extends HTMLAttributes<HTMLDivElement> {
4
4
  children?: React.ReactNode;
5
5
  bgColor?: keyof typeof colors;
@@ -9,6 +9,7 @@ export interface SliderProps extends InputHTMLAttributes<HTMLInputElement> {
9
9
  showSteppers?: boolean;
10
10
  stepSize?: number;
11
11
  disabled?: boolean;
12
+ wrapperWidth?: string;
12
13
  height?: 32 | 40 | 48;
13
14
  }
14
15
  declare const Slider: React.FC<SliderProps>;