@smart-factor/gem-ui-components 0.0.159 → 0.0.161
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/SignEditor.js +1 -1
- package/dist/components/IconCombined/IconCombined.d.ts +14 -0
- package/dist/components/IconCombined/IconCombined.stories.d.ts +11 -0
- package/dist/{index-BPAWu4-j.js → index-CIPX5AUr.js} +13369 -12813
- package/dist/licenses.txt +58 -4
- package/dist/main.d.ts +1 -0
- package/dist/main.js +837 -808
- package/dist/services/queries/useContextual.d.ts +1 -1
- package/package.json +5 -2
package/dist/licenses.txt
CHANGED
|
@@ -2078,11 +2078,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2078
2078
|
---
|
|
2079
2079
|
|
|
2080
2080
|
Name: @tanstack/query-core
|
|
2081
|
-
Version: 5.
|
|
2081
|
+
Version: 5.90.20
|
|
2082
2082
|
License: MIT
|
|
2083
2083
|
Private: false
|
|
2084
2084
|
Description: The framework agnostic core that powers TanStack Query
|
|
2085
|
-
Repository: https://github.com/TanStack/query.git
|
|
2085
|
+
Repository: git+https://github.com/TanStack/query.git
|
|
2086
2086
|
Homepage: https://tanstack.com/query
|
|
2087
2087
|
Author: tannerlinsley
|
|
2088
2088
|
License Copyright:
|
|
@@ -2113,11 +2113,11 @@ SOFTWARE.
|
|
|
2113
2113
|
---
|
|
2114
2114
|
|
|
2115
2115
|
Name: @tanstack/react-query
|
|
2116
|
-
Version: 5.
|
|
2116
|
+
Version: 5.90.21
|
|
2117
2117
|
License: MIT
|
|
2118
2118
|
Private: false
|
|
2119
2119
|
Description: Hooks for managing, caching and syncing asynchronous and remote data in React
|
|
2120
|
-
Repository: https://github.com/TanStack/query.git
|
|
2120
|
+
Repository: git+https://github.com/TanStack/query.git
|
|
2121
2121
|
Homepage: https://tanstack.com/query
|
|
2122
2122
|
Author: tannerlinsley
|
|
2123
2123
|
License Copyright:
|
|
@@ -2252,6 +2252,60 @@ SOFTWARE.
|
|
|
2252
2252
|
|
|
2253
2253
|
---
|
|
2254
2254
|
|
|
2255
|
+
Name: idb
|
|
2256
|
+
Version: 8.0.3
|
|
2257
|
+
License: ISC
|
|
2258
|
+
Private: false
|
|
2259
|
+
Description: A small wrapper that makes IndexedDB usable
|
|
2260
|
+
Repository: git://github.com/jakearchibald/idb.git
|
|
2261
|
+
Author: Jake Archibald
|
|
2262
|
+
License Copyright:
|
|
2263
|
+
===
|
|
2264
|
+
|
|
2265
|
+
ISC License (ISC)
|
|
2266
|
+
Copyright (c) 2016, Jake Archibald <jaffathecake@gmail.com>
|
|
2267
|
+
|
|
2268
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
2269
|
+
|
|
2270
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2271
|
+
|
|
2272
|
+
---
|
|
2273
|
+
|
|
2274
|
+
Name: @tanstack/query-persist-client-core
|
|
2275
|
+
Version: 5.92.1
|
|
2276
|
+
License: MIT
|
|
2277
|
+
Private: false
|
|
2278
|
+
Description: Set of utilities for interacting with persisters, which can save your queryClient for later use
|
|
2279
|
+
Repository: git+https://github.com/TanStack/query.git
|
|
2280
|
+
Homepage: https://tanstack.com/query
|
|
2281
|
+
Author: tannerlinsley
|
|
2282
|
+
License Copyright:
|
|
2283
|
+
===
|
|
2284
|
+
|
|
2285
|
+
MIT License
|
|
2286
|
+
|
|
2287
|
+
Copyright (c) 2021-present Tanner Linsley
|
|
2288
|
+
|
|
2289
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2290
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2291
|
+
in the Software without restriction, including without limitation the rights
|
|
2292
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2293
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2294
|
+
furnished to do so, subject to the following conditions:
|
|
2295
|
+
|
|
2296
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2297
|
+
copies or substantial portions of the Software.
|
|
2298
|
+
|
|
2299
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2300
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2301
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2302
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2303
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2304
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2305
|
+
SOFTWARE.
|
|
2306
|
+
|
|
2307
|
+
---
|
|
2308
|
+
|
|
2255
2309
|
Name: tslib
|
|
2256
2310
|
Version: 2.8.1
|
|
2257
2311
|
License: 0BSD
|
package/dist/main.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { FixedActionsBottomPanel } from './components/FixedActionsBottomPanel/Fi
|
|
|
14
14
|
export * from './components/FormComponents';
|
|
15
15
|
export { Grid, GridInitialState } from './components/Grid';
|
|
16
16
|
export { IconButton } from './components/IconButton/IconButton';
|
|
17
|
+
export { IconCombined } from './components/IconCombined/IconCombined';
|
|
17
18
|
export { LoadingBackdrop } from './components/LoadingBackdrop/LoadingBackdrop';
|
|
18
19
|
export { Login } from './components/Login/Login';
|
|
19
20
|
export { LoginModal } from './components/LoginModal/LoginModal';
|