@inntechcorp/it-design 2.0.111 → 2.0.112

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.
@@ -23,7 +23,7 @@ export type FormContextType = {
23
23
  isFormValid: () => boolean;
24
24
  isFieldsValid: (names: string[]) => boolean;
25
25
  isFieldValid: (name: string) => boolean;
26
- resetFields: (update: boolean, validation: boolean) => void;
26
+ resetFields: (update?: boolean, validation?: boolean) => void;
27
27
  removeFields: () => void;
28
28
  formId: string;
29
29
  updated: {};
package/dist/index.d.ts CHANGED
@@ -423,7 +423,7 @@ type FormContextType = {
423
423
  isFormValid: () => boolean;
424
424
  isFieldsValid: (names: string[]) => boolean;
425
425
  isFieldValid: (name: string) => boolean;
426
- resetFields: (update: boolean, validation: boolean) => void;
426
+ resetFields: (update?: boolean, validation?: boolean) => void;
427
427
  removeFields: () => void;
428
428
  formId: string;
429
429
  updated: {};
@@ -61,6 +61,32 @@
61
61
  -webkit-box-shadow: 0 0 0 30px #151d3d inset !important;
62
62
  }
63
63
 
64
+ .option {
65
+ display: flex;
66
+ align-items: center;
67
+ cursor: pointer;
68
+ min-width: max-content;
69
+ padding: 10px 30px 10px 15px;
70
+ }
71
+ .option:not(:last-child) {
72
+ margin-bottom: 1px;
73
+ }
74
+ .option:hover {
75
+ background-color: rgba(29, 38, 73, 0.5019607843);
76
+ }
77
+
78
+ .selected .single, .selected .option span {
79
+ color: #ffffff;
80
+ }
81
+
82
+ .single, .option span {
83
+ color: rgba(255, 255, 255, 0.6666666667);
84
+ font-weight: 400;
85
+ font-size: 12px;
86
+ line-height: 12px;
87
+ white-space: nowrap;
88
+ }
89
+
64
90
  .menu {
65
91
  background-color: #050A20;
66
92
  border-radius: 0 5px 5px 5px;
@@ -127,32 +153,6 @@
127
153
  transition: height 150ms ease-out;
128
154
  }
129
155
 
130
- .option {
131
- display: flex;
132
- align-items: center;
133
- cursor: pointer;
134
- min-width: max-content;
135
- padding: 10px 30px 10px 15px;
136
- }
137
- .option:not(:last-child) {
138
- margin-bottom: 1px;
139
- }
140
- .option:hover {
141
- background-color: rgba(29, 38, 73, 0.5019607843);
142
- }
143
-
144
- .selected .single, .selected .option span {
145
- color: #ffffff;
146
- }
147
-
148
- .single, .option span {
149
- color: rgba(255, 255, 255, 0.6666666667);
150
- font-weight: 400;
151
- font-size: 12px;
152
- line-height: 12px;
153
- white-space: nowrap;
154
- }
155
-
156
156
  .arrow {
157
157
  transition: all 0.25s ease-out;
158
158
  margin-left: auto;
@@ -1,2 +1,2 @@
1
1
  import { ITDSizeSlug } from "../index";
2
- export default function GetSizeBySizeSlug(size: ITDSizeSlug): "small" | "medium" | "large" | "x-small" | "default" | "x-large" | "df";
2
+ export default function GetSizeBySizeSlug(size: ITDSizeSlug): "large" | "small" | "x-small" | "medium" | "default" | "x-large" | "df";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inntechcorp/it-design",
3
- "version": "2.0.111",
3
+ "version": "2.0.112",
4
4
  "description": "All in one Design library for web applications.",
5
5
  "author": "Inn.Tech",
6
6
  "license": "ISC",
@@ -1,241 +0,0 @@
1
- .defaultInput {
2
- height: 100%;
3
- }
4
-
5
- .floatingInput {
6
- font-size: 13px;
7
- color: rgba(0, 0, 0, 0.8509803922);
8
- caret-color: rgba(0, 0, 0, 0.8509803922);
9
- }
10
-
11
- /* --------------------------------- */
12
- .floatingInput::placeholder {
13
- color: rgba(0, 0, 0, 0);
14
- }
15
-
16
- .floatingInput:disabled:not(.floatingInput[data-locked=true]) {
17
- opacity: 0.5;
18
- }
19
-
20
- .floatingInput:disabled :not(.floatingInput[data-locked=true]) {
21
- opacity: 0.5;
22
- }
23
-
24
- .floatingLabel {
25
- display: block;
26
- position: relative;
27
- max-height: 0;
28
- font-weight: 500;
29
- pointer-events: none;
30
- font-size: 16px;
31
- }
32
-
33
- .floatingLabel::before {
34
- color: rgba(0, 0, 0, 0.6);
35
- content: attr(data-content);
36
- display: inline-block;
37
- filter: blur(0);
38
- backface-visibility: hidden;
39
- transform-origin: left top;
40
- transition: transform 0.2s ease-out;
41
- position: relative;
42
- }
43
-
44
- .floatingInput:placeholder-shown + .floatingLabel::before {
45
- transform: translate3d(0, -32px, 0) scale3d(0.8, 0.8, 1);
46
- font-smooth: always;
47
- -webkit-font-smoothing: antialiased;
48
- }
49
-
50
- .floatingLabel::before,
51
- .floatingInput:focus + .floatingLabel::before {
52
- transform: translate3d(0, -40px, 0) scale3d(0.8, 0.8, 1);
53
- }
54
-
55
- .floatingInput:focus + .floatingLabel::before {
56
- color: rgba(0, 0, 0, 0.6);
57
- }
58
-
59
- .floatingInputinput:-webkit-autofill, .floatingInputinput:-webkit-autofill:focus, .floatingInputinput:-webkit-autofill:hover {
60
- -webkit-text-fill-color: #3496fa !important;
61
- -webkit-box-shadow: 0 0 0 30px #151d3d inset !important;
62
- }
63
-
64
- .arrow {
65
- transition: all 0.25s ease-out;
66
- margin-left: auto;
67
- transform: rotate(0deg);
68
- width: 20px;
69
- height: 20px;
70
- fill: rgba(255, 255, 255, 0.6);
71
- }
72
-
73
- .arrowNormal {
74
- margin-left: auto;
75
- transform: rotate(-90deg);
76
- }
77
-
78
- .arrowOpen {
79
- transform: rotate(-180deg);
80
- fill: #ffffff;
81
- }
82
-
83
- .icon {
84
- margin-right: 8px;
85
- height: 22px;
86
- width: 22px;
87
- color: rgba(255, 255, 255, 0.6);
88
- font-size: 22px;
89
- display: flex;
90
- align-items: center;
91
- }
92
-
93
- .option {
94
- display: flex;
95
- align-items: center;
96
- cursor: pointer;
97
- min-width: max-content;
98
- padding: 10px 30px 10px 15px;
99
- }
100
- .option:not(:last-child) {
101
- margin-bottom: 1px;
102
- }
103
- .option:hover {
104
- background-color: rgba(29, 38, 73, 0.5019607843);
105
- }
106
-
107
- .selected .single, .selected .option span {
108
- color: #ffffff;
109
- }
110
-
111
- .single, .option span {
112
- color: rgba(255, 255, 255, 0.6666666667);
113
- font-weight: 400;
114
- font-size: 12px;
115
- line-height: 12px;
116
- white-space: nowrap;
117
- }
118
-
119
- .menu {
120
- background-color: #050A20;
121
- border-radius: 0 5px 5px 5px;
122
- overflow: hidden;
123
- position: absolute;
124
- z-index: 2;
125
- box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
126
- transform-origin: 50% 1%;
127
- transform-box: fill-box;
128
- transition-timing-function: cubic-bezier(0.75, -0.5, 0, 1.25);
129
- }
130
- .menu ul {
131
- min-width: max-content;
132
- }
133
-
134
- .bodyWrapper {
135
- height: 300px;
136
- }
137
-
138
- .bodyWrapperLong {
139
- height: 300px;
140
- }
141
-
142
- .bottom {
143
- top: 100%;
144
- }
145
-
146
- .left {
147
- left: 0;
148
- }
149
-
150
- /* -------------------------------- */
151
- .menuEnter {
152
- opacity: 0;
153
- height: 50px;
154
- }
155
-
156
- .menuEnterActive {
157
- opacity: 1;
158
- height: 300px;
159
- transition: height 150ms ease-out;
160
- }
161
-
162
- .menuExit {
163
- opacity: 1;
164
- }
165
-
166
- .menuExitActive {
167
- opacity: 0;
168
- height: 300px;
169
- transition: height 150ms ease-out;
170
- }
171
-
172
- /* -------------------------------- */
173
- .menuEnterActiveLong {
174
- opacity: 1;
175
- height: 300px;
176
- transition: height 150ms ease-out;
177
- }
178
-
179
- .menuExitActiveLong {
180
- opacity: 0;
181
- height: 300px;
182
- transition: height 150ms ease-out;
183
- }
184
-
185
- .container {
186
- display: flex;
187
- align-items: center;
188
- cursor: pointer;
189
- user-select: none;
190
- }
191
-
192
- .label {
193
- display: flex;
194
- align-items: center;
195
- position: relative;
196
- }
197
- .label span {
198
- font-size: 12px;
199
- font-weight: 400;
200
- color: rgba(255, 255, 255, 0.6);
201
- line-height: 1.2;
202
- margin-left: 10px;
203
- }
204
-
205
- .checkmark {
206
- height: 20px;
207
- width: 20px;
208
- border-radius: 6px;
209
- background-color: #1D2649;
210
- transition: background-color 0.25sn ease-out;
211
- display: flex;
212
- justify-content: center;
213
- align-items: center;
214
- }
215
- .checkmark svg {
216
- fill: #ffffff;
217
- visibility: hidden;
218
- }
219
-
220
- .check {
221
- background-color: #3396FB;
222
- }
223
- .check svg {
224
- visibility: visible;
225
- animation: bounce 0.5s;
226
- }
227
-
228
- @keyframes bounce {
229
- 0% {
230
- transform: scale(0.2) rotate(4deg);
231
- }
232
- 50% {
233
- transform: scale(1.2) rotate(-2deg);
234
- }
235
- 75% {
236
- transform: scale(0.9) rotate(1deg);
237
- }
238
- 100% {
239
- transform: scale(1) rotate(0deg);
240
- }
241
- }