rbro-tat-uds 1.0.37 → 1.1.1

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.
Files changed (33) hide show
  1. package/dist/components/ConfigurationSaveInfo/ConfigurationSaveInfo.d.ts +0 -1
  2. package/dist/components/Icon/Icon.types.d.ts +1 -1
  3. package/dist/components/Icon/IconsList.d.ts +5 -0
  4. package/dist/components/PageMessage/PageMessage.d.ts +1 -1
  5. package/dist/components/PageTitle/PageTitle.d.ts +2 -0
  6. package/dist/components/ProductTeaser/ProductTeaser.d.ts +21 -0
  7. package/dist/components/ProductTeaser/index.d.ts +1 -0
  8. package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +8 -0
  9. package/dist/components/ProductTeaserButton/index.d.ts +1 -0
  10. package/dist/components/ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts +13 -0
  11. package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +1 -0
  12. package/dist/components/ProductTeaserPropunere2Parameters/ProductTeaserPropunere2Parameters.d.ts +14 -0
  13. package/dist/components/ProductTeaserPropunere2Parameters/index.d.ts +1 -0
  14. package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +10 -0
  15. package/dist/components/ProductTeaserStep/index.d.ts +1 -0
  16. package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +15 -0
  17. package/dist/components/PropunereFlexicredit/index.d.ts +1 -0
  18. package/dist/components/Section/Section.d.ts +1 -0
  19. package/dist/components/{ProductShortcut/ProductShortcut.d.ts → ShortcutCard/ShortcutCard.d.ts} +3 -3
  20. package/dist/components/ShortcutCard/index.d.ts +1 -0
  21. package/dist/components/Slider/Slider.d.ts +1 -0
  22. package/dist/components/StepTab/StepTab.d.ts +10 -0
  23. package/dist/components/StepTab/index.d.ts +1 -0
  24. package/dist/components/index.d.ts +8 -2
  25. package/dist/index.cjs.js +1293 -503
  26. package/dist/index.cjs.js.map +1 -1
  27. package/dist/index.es.js +2951 -1945
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/utils/colors.d.ts +9 -0
  30. package/package.json +5 -3
  31. package/dist/components/ProductShortcut/index.d.ts +0 -1
  32. package/dist/components/ProposalFlexicredit/ProposalFlexicredit.d.ts +0 -16
  33. package/dist/components/ProposalFlexicredit/index.d.ts +0 -1
@@ -48,11 +48,20 @@ declare const colors: {
48
48
  danger_600: string;
49
49
  danger_700: string;
50
50
  blue_50: string;
51
+ blue_100: string;
52
+ blue_200: string;
51
53
  blue_500: string;
52
54
  blue_600: string;
53
55
  purple_50: string;
56
+ purple_100: string;
57
+ purple_200: string;
54
58
  purple_500: string;
55
59
  purple_600: string;
60
+ pink_50: string;
61
+ pink_100: string;
62
+ pink_200: string;
63
+ pink_500: string;
64
+ pink_600: string;
56
65
  white: string;
57
66
  black: string;
58
67
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbro-tat-uds",
3
- "version": "1.0.37",
3
+ "version": "1.1.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
@@ -19,8 +19,7 @@
19
19
  "lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
20
20
  "format": "prettier --write --parser typescript '**/*.{ts,tsx}'"
21
21
  },
22
- "author": "rbro-tat-uds",
23
- "license": "ISC",
22
+ "author": "OKAPI",
24
23
  "peerDependencies": {
25
24
  "react": ">=18.0.0",
26
25
  "react-dom": ">=18.0.0"
@@ -54,5 +53,8 @@
54
53
  "vite": "^5.0.12",
55
54
  "vite-plugin-dts": "^3.7.2",
56
55
  "vite-plugin-svgr": "^4.2.0"
56
+ },
57
+ "dependencies": {
58
+ "http-server": "^14.1.1"
57
59
  }
58
60
  }
@@ -1 +0,0 @@
1
- export { default as ProductShortcut } from "./ProductShortcut";
@@ -1,16 +0,0 @@
1
- import React, { HTMLAttributes } from "react";
2
- export interface ProposalFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
3
- amount?: string;
4
- currency?: string;
5
- period?: string;
6
- insurance?: string;
7
- refinantare?: string;
8
- date?: string;
9
- type?: undefined | "sumaCeruta" | "sumaMaxima";
10
- clickable?: boolean;
11
- disabled?: boolean;
12
- disabledText?: string;
13
- onClick?: () => void;
14
- }
15
- declare const ProposalFlexicredit: React.FC<ProposalFlexicreditProps>;
16
- export default ProposalFlexicredit;
@@ -1 +0,0 @@
1
- export { default as ProposalFlexicredit } from "./ProposalFlexicredit";