funuicss 2.7.10 → 2.7.11

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/css/fun.css CHANGED
@@ -222,6 +222,7 @@
222
222
  }
223
223
 
224
224
 
225
+
225
226
  /* For WebKit browsers (Chrome, Edge, Brave, Safari) */
226
227
  ::-webkit-scrollbar {
227
228
  width: 10px;
@@ -1949,16 +1950,19 @@ body {
1949
1950
 
1950
1951
  .text-bigger {
1951
1952
  font-size: calc(1.375rem + 2.5vw);
1952
- line-height: calc(1.5rem + 2.5vw);
1953
+ line-height: normal;
1953
1954
  font-weight: 900;
1954
1955
  }
1955
1956
 
1956
1957
  .text-jumbo {
1957
1958
  font-size: calc(1.375rem + 5vw);
1958
- line-height: calc(1.5rem + 5.5vw);
1959
+ line-height: normal;
1959
1960
  font-weight: 900;
1960
1961
  }
1961
-
1962
+ .important{
1963
+ font-weight: 700;
1964
+ color: var(--primary) !important ;
1965
+ }
1962
1966
  /* Mini sizes */
1963
1967
  .text-small {
1964
1968
  font-size: var(--smallFont);
@@ -1970,7 +1974,7 @@ body {
1970
1974
  line-height: 1.125rem;
1971
1975
  }
1972
1976
 
1973
- .text-minified {
1977
+ .text-minified , .text-md{
1974
1978
  font-size: var(--minifiedFontSize);
1975
1979
  line-height: 1rem;
1976
1980
  }
@@ -2396,6 +2400,8 @@ h6, .h6 {
2396
2400
  /* filter: brightness(90%); */
2397
2401
 
2398
2402
  }
2403
+ .hoverable-border{border: 0.1rem solid transparent;transition: 0.3s ease-in-out;}
2404
+ .hoverable-border:hover{border: var(--border);}
2399
2405
 
2400
2406
  .rightRounded{
2401
2407
  border-top-right-radius: 300rem !important;
@@ -3284,6 +3290,8 @@ color: var(--text-color);
3284
3290
  }
3285
3291
 
3286
3292
 
3293
+
3294
+
3287
3295
  .avatar {
3288
3296
  display: flex;
3289
3297
  align-items: center;
@@ -3908,6 +3916,126 @@ max-height: 500px; /* large enough to contain most content */
3908
3916
  opacity: 0.9;
3909
3917
  }
3910
3918
 
3919
+ .vista {
3920
+ width: 100%;
3921
+ box-sizing: border-box;
3922
+ }
3923
+
3924
+ /* Padding presets */
3925
+ .padding-sm {
3926
+ padding: 2rem 1rem;
3927
+ }
3928
+
3929
+ .padding-lg {
3930
+ padding: 5rem 1.5rem;
3931
+ }
3932
+
3933
+ /* Background options */
3934
+ .bg-white {
3935
+ background-color: white;
3936
+ }
3937
+
3938
+ .bg-light {
3939
+ background-color: #f9f9f9;
3940
+ }
3941
+
3942
+ .bg-dark {
3943
+ background-color: #1e1e1e;
3944
+ color: white;
3945
+ }
3946
+
3947
+
3948
+
3949
+ .vista{
3950
+ display: flex;
3951
+ align-items: center;
3952
+ justify-content: center;
3953
+ }
3954
+
3955
+ .vista-container {
3956
+ max-width: 1200px;
3957
+ margin: 0 auto;
3958
+ display: flex;
3959
+ flex-wrap: wrap;
3960
+ align-items: center;
3961
+ gap: 2rem;
3962
+ justify-content: center;
3963
+ }
3964
+
3965
+
3966
+
3967
+ .vista.centered .vista-container {
3968
+ flex-direction: column;
3969
+ text-align: center;
3970
+ gap: 0.5rem;
3971
+ }
3972
+
3973
+ .vista.stacked .vista-container {
3974
+ flex-direction: column;
3975
+ }
3976
+
3977
+ .vista.imageLeft .vista-container,
3978
+ .vista.imageRight .vista-container {
3979
+ flex-direction: row;
3980
+ }
3981
+
3982
+ .vista.reverse .vista-container {
3983
+ flex-direction: row-reverse;
3984
+ }
3985
+
3986
+ /* Text alignment */
3987
+ .vista.text-left .vista-text {
3988
+ text-align: left;
3989
+ }
3990
+ .vista.text-center .vista-text {
3991
+ text-align: center;
3992
+ }
3993
+ .vista.text-right .vista-text {
3994
+ text-align: right;
3995
+ }
3996
+
3997
+
3998
+ .vista-subtitle {
3999
+ font-size: 1.125rem;
4000
+ opacity: 0.8;
4001
+ margin-bottom: 1.5rem;
4002
+ }
4003
+
4004
+ .vista-image img {
4005
+ width: 100%;
4006
+ }
4007
+
4008
+ /* Responsive behavior */
4009
+ @media screen and (max-width: 768px) {
4010
+ .vista-container {
4011
+ flex-direction: column !important;
4012
+ text-align: center;
4013
+ }
4014
+
4015
+ .vista.reverse .vista-container {
4016
+ flex-direction: column !important;
4017
+ }
4018
+
4019
+ .vista-text,
4020
+ .vista-image {
4021
+ text-align: center;
4022
+ }
4023
+ }
4024
+
4025
+
4026
+ /* Responsive */
4027
+ @media screen and (max-width: 768px) {
4028
+ .vista-container {
4029
+ flex-direction: column !important;
4030
+ text-align: center;
4031
+ }
4032
+
4033
+ .vista.reverse .vista-container {
4034
+ flex-direction: column !important;
4035
+ }
4036
+ }
4037
+
4038
+
3911
4039
 
3912
4040
 
3913
4041
  /* Base Animation Setup */
@@ -4574,6 +4702,7 @@ filter: brightness(90%);
4574
4702
  }
4575
4703
 
4576
4704
 
4705
+
4577
4706
  /* Date Cell */
4578
4707
  .datepicker-day {
4579
4708
  cursor: pointer;
@@ -4837,6 +4966,30 @@ background-color: rgba(0, 0, 0, 0.2);
4837
4966
  .w-vw{ width: 100vw !important; }
4838
4967
  .min-w-vw { min-width: 100vw !important; }
4839
4968
  .min-h-vh { min-height: 100vh !important; }
4969
+ .max-h-vh { max-height: 100vh !important; }
4970
+ .w-100-vw { width: 100vw !important; }
4971
+ .w-90-vw { width: 90vw !important; }
4972
+ .w-80-vw { width: 80vw !important; }
4973
+ .w-70-vw { width: 70vw !important; }
4974
+ .w-60-vw { width: 60vw !important; }
4975
+ .w-50-vw { width: 50vw !important; }
4976
+ .w-40-vw { width: 40vw !important; }
4977
+ .w-30-vw { width: 30vw !important; }
4978
+ .w-20-vw { width: 20vw !important; }
4979
+ .w-10-vw { width: 10vw !important; }
4980
+
4981
+ .min-w-10-vw { min-width: 10vw !important; }
4982
+ .min-w-20-vw { min-width: 20vw !important; }
4983
+ .min-w-30-vw { min-width: 30vw !important; }
4984
+ .min-w-40-vw { min-width: 40vw !important; }
4985
+ .min-w-50-vw { min-width: 50vw !important; }
4986
+ .min-w-60-vw { min-width: 60vw !important; }
4987
+ .min-w-70-vw { min-width: 70vw !important; }
4988
+ .min-w-80-vw { min-width: 80vw !important; }
4989
+ .min-w-90-vw { min-width: 90vw !important; }
4990
+ .min-w-100-vw { min-width: 100vw !important; }
4991
+
4992
+
4840
4993
 
4841
4994
  .width-10-p { width: 10% !important; }
4842
4995
  .width-20-p { width: 20% !important; }
@@ -5201,6 +5354,28 @@ background-color: rgba(0, 0, 0, 0.2);
5201
5354
  .height{height:var(--height)}
5202
5355
  .w-vw { width: 100vw !important; }
5203
5356
  .h-vh { height: 100vh !important; }
5357
+ .h-100-vh { height: 100vh !important; }
5358
+ .h-90-vh { height: 90vh !important; }
5359
+ .h-80-vh { height: 80vh !important; }
5360
+ .h-70-vh { height: 70vh !important; }
5361
+ .h-60-vh { height: 60vh !important; }
5362
+ .h-50-vh { height: 50vh !important; }
5363
+ .h-40-vh { height: 40vh !important; }
5364
+ .h-30-vh { height: 30vh !important; }
5365
+ .h-20-vh { height: 20vh !important; }
5366
+ .h-10-vh { height: 10vh !important; }
5367
+
5368
+ .min-h-10-vh { min-height: 10vh !important; }
5369
+ .min-h-20-vh { min-height: 20vh !important; }
5370
+ .min-h-30-vh { min-height: 30vh !important; }
5371
+ .min-h-40-vh { min-height: 40vh !important; }
5372
+ .min-h-50-vh { min-height: 50vh !important; }
5373
+ .min-h-60-vh { min-height: 60vh !important; }
5374
+ .min-h-70-vh { min-height: 70vh !important; }
5375
+ .min-h-80-vh { min-height: 80vh !important; }
5376
+ .min-h-90-vh { min-height: 90vh !important; }
5377
+ .min-h-100-vh { min-height: 100vh !important; }
5378
+
5204
5379
  .min-h-vh {min-height: 100vh !important;}
5205
5380
  .max-h-vh { max-height: 100vh !important; }
5206
5381
 
package/index.d.ts CHANGED
@@ -49,5 +49,6 @@ export { default as ScrollInView } from "./ui/ScrollInView/ScrollInView";
49
49
  export { default as View } from "./ui/view/View";
50
50
  export { default as DatePicker } from "./ui/datepicker/DatePicker";
51
51
  export { default as Calendar } from "./ui/calendar/Calendar";
52
+ export { default as Vista } from "./ui/vista/Vista";
52
53
  export { default as Cookie } from "./js/Cookie";
53
54
  export { FunGet } from "./js/Fun";
package/index.js CHANGED
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.DatePicker = exports.View = exports.ScrollInView = exports.Accordion = exports.Flex = exports.RichText = exports.Carousel = exports.Video = exports.SideBar = exports.ChartPie = exports.Lines = exports.Bars = exports.FullCenteredPage = exports.CircleGroup = exports.Circle = exports.Hr = exports.Section = exports.RowFlex = exports.Tip = exports.AppBar = exports.ToolTip = exports.Notification = exports.FunLoader = exports.ProgressBar = exports.DropMenu = exports.DropItem = exports.Dropdown = exports.DropDown = exports.DropUp = exports.UnAuthorized = exports.NotFound = exports.StepLine = exports.StepHeader = exports.Step = exports.StepContainer = exports.Div = exports.Text = exports.List = exports.Table = exports.Modal = exports.Loader = exports.Input = exports.Col = exports.Grid = exports.Container = exports.BreadCrumb = exports.Card = exports.Button = exports.ThemeProvider = exports.Alert = void 0;
7
- exports.FunGet = exports.Cookie = exports.Calendar = void 0;
7
+ exports.FunGet = exports.Cookie = exports.Vista = exports.Calendar = void 0;
8
8
  var Alert_1 = require("./ui/alert/Alert");
9
9
  Object.defineProperty(exports, "Alert", { enumerable: true, get: function () { return __importDefault(Alert_1).default; } });
10
10
  var theme_1 = require("./ui/theme/theme");
@@ -107,6 +107,8 @@ var DatePicker_1 = require("./ui/datepicker/DatePicker");
107
107
  Object.defineProperty(exports, "DatePicker", { enumerable: true, get: function () { return __importDefault(DatePicker_1).default; } });
108
108
  var Calendar_1 = require("./ui/calendar/Calendar");
109
109
  Object.defineProperty(exports, "Calendar", { enumerable: true, get: function () { return __importDefault(Calendar_1).default; } });
110
+ var Vista_1 = require("./ui/vista/Vista");
111
+ Object.defineProperty(exports, "Vista", { enumerable: true, get: function () { return __importDefault(Vista_1).default; } });
110
112
  // js
111
113
  var Cookie_1 = require("./js/Cookie");
112
114
  Object.defineProperty(exports, "Cookie", { enumerable: true, get: function () { return __importDefault(Cookie_1).default; } });
package/index.tsx CHANGED
@@ -49,6 +49,7 @@ export { default as ScrollInView } from "./ui/ScrollInView/ScrollInView"
49
49
  export { default as View } from "./ui/view/View"
50
50
  export { default as DatePicker } from "./ui/datepicker/DatePicker"
51
51
  export { default as Calendar } from "./ui/calendar/Calendar"
52
+ export { default as Vista } from "./ui/vista/Vista"
52
53
 
53
54
  // js
54
55
  export { default as Cookie } from "./js/Cookie"
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.7.10",
2
+ "version": "2.7.11",
3
3
  "name": "funuicss",
4
4
  "description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
5
5
  "main": "index.js",