optimized-react-component-library-xyz123 2.2.13 → 2.2.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "optimized-react-component-library-xyz123",
3
- "version": "2.2.13",
3
+ "version": "2.2.14",
4
4
  "description": "A modern React component library using TypeScript with React 19 support.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -10,12 +10,12 @@
10
10
  --error: #8e0039;
11
11
  --main: #ffffff;
12
12
  --info: #545454;
13
+ --alertintext: #234b96;
13
14
  --orientation-active: #dc7d0a;
14
15
  --background-second: #200827;
15
16
  --background-third: #414141;
16
17
  }
17
18
 
18
-
19
19
  #main-content {
20
20
  padding-top: 3.6rem;
21
21
  padding-bottom: 6.4rem;
@@ -694,6 +694,38 @@ input:focus-visible:-webkit-autofill {
694
694
  transform: rotate(360deg);
695
695
  }
696
696
  }
697
+ /* ---------- ALERT IN TEXT ---------- */
698
+ .pts-alertInText-container {
699
+ display: flex;
700
+ width: 100%;
701
+ justify-content: flex-start;
702
+ margin-top: 3.2rem;
703
+ }
704
+ .pts-alertInText-left {
705
+ display: flex;
706
+ justify-content: flex-start;
707
+ align-items: flex-start;
708
+ gap: 10px;
709
+ align-self: stretch;
710
+ border-top-left-radius: 8px;
711
+ border-bottom-left-radius: 8px;
712
+ border: 1px solid var(--alertintext);
713
+ background-color: var(--alertintext);
714
+ padding: 8px;
715
+ padding-top: 16px;
716
+ }
717
+ .pts-alertInText-right {
718
+ display: flex;
719
+ padding: 0px 16px;
720
+ justify-content: flex-start;
721
+ align-items: flex-start;
722
+ width: 100%;
723
+ border-top-right-radius: 8px;
724
+ border-bottom-right-radius: 8px;
725
+ border: 1px solid var(--alertintext);
726
+ color: var(--text);
727
+ }
728
+
697
729
  /*-----------ALWAYS IN THE END OF STYLES----------------*/
698
730
 
699
731
  .cleanPadding {
@@ -717,8 +749,3 @@ input:focus-visible:-webkit-autofill {
717
749
  white-space: nowrap;
718
750
  border: 0;
719
751
  }
720
-
721
- .hide-asterix .pts-root-mandatoryAsterisk {
722
- display: none;
723
- }
724
-