@grasp-labs/ds-microfrontends-integration 0.19.0 → 0.19.1
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/components/vault/VaultInput/VaultInput.d.ts +2 -1
- package/dist/components/vault/VaultInput/VaultInput.stories.d.ts +2 -2
- package/dist/{index-p4MWsN-O.js → index-B2Z76ND7.js} +279 -277
- package/dist/{index.esm-BKoMny5G-BhFU8unB.js → index.esm-BKoMny5G-BxiYQe6_.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/types/Vault.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as o } from "./index-
|
|
1
|
+
import { c as o } from "./index-B2Z76ND7.js";
|
|
2
2
|
import { useState as J, useEffect as De, createContext as Zt, useRef as ce, useContext as Gt, useMemo as le, useCallback as Re } from "react";
|
|
3
3
|
const $e = (e, t, n, r, a) => {
|
|
4
4
|
if (!r) throw new Error(a ?? `Invalid property path: ${t}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as s, B as l, E as r, F as t, G as u, J as i, L as o, N as d, R as F, S as g, T as n, b as m, V as c, h as p, i as V, e as h, j as v, s as S, v as b, k as P, l as T, t as f, m as x, g as y, x as D, n as E, o as G, p as L, q as R, w as A, r as I, u as N, a as j, d as B, f as J } from "./index-
|
|
1
|
+
import { A as s, B as l, E as r, F as t, G as u, J as i, L as o, N as d, R as F, S as g, T as n, b as m, V as c, h as p, i as V, e as h, j as v, s as S, v as b, k as P, l as T, t as f, m as x, g as y, x as D, n as E, o as G, p as L, q as R, w as A, r as I, u as N, a as j, d as B, f as J } from "./index-B2Z76ND7.js";
|
|
2
2
|
export {
|
|
3
3
|
s as ArrayField,
|
|
4
4
|
l as BooleanField,
|
package/dist/types/Vault.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import { Schema } from './Schema';
|
|
|
5
5
|
export type Secret = {
|
|
6
6
|
/** Unique identifier for the secret */
|
|
7
7
|
id: string;
|
|
8
|
+
/** Key used to reference the secret */
|
|
9
|
+
key: string;
|
|
8
10
|
/** Display name of the secret */
|
|
9
11
|
name: string;
|
|
10
12
|
/** Optional description of the secret */
|