@inntechcorp/it-design 2.0.97 → 2.0.98

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/dist/index.d.ts CHANGED
@@ -853,7 +853,7 @@ type ITDImperativeFuncProps = {
853
853
 
854
854
  type SingleQueryProps = {
855
855
  set: (type: string, value: string | string[] | null) => void;
856
- get: (type: string, _default?: string, _minLength?: number) => string | string[] | null;
856
+ get: (type: string, defaultValue?: string, minLength?: number) => string | string[];
857
857
  remove: (type: string) => void;
858
858
  isEmpty: () => boolean;
859
859
  };
@@ -61,30 +61,33 @@
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;
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);
73
71
  }
74
- .option:hover {
75
- background-color: rgba(29, 38, 73, 0.5019607843);
72
+
73
+ .arrowNormal {
74
+ margin-left: auto;
75
+ transform: rotate(-90deg);
76
76
  }
77
77
 
78
- .selected .single, .selected .option span {
79
- color: #ffffff;
78
+ .arrowOpen {
79
+ transform: rotate(-180deg);
80
+ fill: #ffffff;
80
81
  }
81
82
 
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;
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;
88
91
  }
89
92
 
90
93
  .menu {
@@ -153,33 +156,30 @@
153
156
  transition: height 150ms ease-out;
154
157
  }
155
158
 
156
- .arrow {
157
- transition: all 0.25s ease-out;
158
- margin-left: auto;
159
- transform: rotate(0deg);
160
- width: 20px;
161
- height: 20px;
162
- fill: rgba(255, 255, 255, 0.6);
159
+ .option {
160
+ display: flex;
161
+ align-items: center;
162
+ cursor: pointer;
163
+ min-width: max-content;
164
+ padding: 10px 30px 10px 15px;
163
165
  }
164
-
165
- .arrowNormal {
166
- margin-left: auto;
167
- transform: rotate(-90deg);
166
+ .option:not(:last-child) {
167
+ margin-bottom: 1px;
168
+ }
169
+ .option:hover {
170
+ background-color: rgba(29, 38, 73, 0.5019607843);
168
171
  }
169
172
 
170
- .arrowOpen {
171
- transform: rotate(-180deg);
172
- fill: #ffffff;
173
+ .selected .single, .selected .option span {
174
+ color: #ffffff;
173
175
  }
174
176
 
175
- .icon {
176
- margin-right: 8px;
177
- height: 22px;
178
- width: 22px;
179
- color: rgba(255, 255, 255, 0.6);
180
- font-size: 22px;
181
- display: flex;
182
- align-items: center;
177
+ .single, .option span {
178
+ color: rgba(255, 255, 255, 0.6666666667);
179
+ font-weight: 400;
180
+ font-size: 12px;
181
+ line-height: 12px;
182
+ white-space: nowrap;
183
183
  }
184
184
 
185
185
  .container {
@@ -1,6 +1,6 @@
1
1
  export type SingleQueryProps = {
2
2
  set: (type: string, value: string | string[] | null) => void;
3
- get: (type: string, _default?: string, _minLength?: number) => string | string[] | null;
3
+ get: (type: string, defaultValue?: string, minLength?: number) => string | string[];
4
4
  remove: (type: string) => void;
5
5
  isEmpty: () => boolean;
6
6
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@inntechcorp/it-design",
3
- "version": "2.0.97",
4
- "description": "All in one Design library for desktop applications.",
3
+ "version": "2.0.98",
4
+ "description": "All in one Design library for web applications.",
5
5
  "author": "Inn.Tech",
6
6
  "license": "ISC",
7
7
  "main": "dist/index.cjs.js",