akeyless-client-commons 1.0.10 → 1.0.12
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/index.d.mts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +77 -36
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +79 -38
- package/dist/components/index.mjs.map +1 -1
- package/dist/types/index.d.mts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/types/index.d.mts
CHANGED
|
@@ -201,6 +201,7 @@ interface SelectWithSearchProps extends BaseElementProps {
|
|
|
201
201
|
sortDirection?: "abc" | "cba";
|
|
202
202
|
sortAsNumber?: boolean;
|
|
203
203
|
disabled?: boolean;
|
|
204
|
+
createNewOptionLabel?: string;
|
|
204
205
|
}
|
|
205
206
|
interface InternationalInputProps extends Omit<BaseElementProps, "elementClassName"> {
|
|
206
207
|
type?: "internationalPhoneInput";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -201,6 +201,7 @@ interface SelectWithSearchProps extends BaseElementProps {
|
|
|
201
201
|
sortDirection?: "abc" | "cba";
|
|
202
202
|
sortAsNumber?: boolean;
|
|
203
203
|
disabled?: boolean;
|
|
204
|
+
createNewOptionLabel?: string;
|
|
204
205
|
}
|
|
205
206
|
interface InternationalInputProps extends Omit<BaseElementProps, "elementClassName"> {
|
|
206
207
|
type?: "internationalPhoneInput";
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akeyless-client-commons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsup",
|
|
6
|
-
"deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",
|
|
6
|
+
"deploy": "npm run build && npm version patch --no-git-tag-version && npm publish && [System.Console]::Beep(1000, 500)",
|
|
7
7
|
"uc": "npm i akeyless-types-commons",
|
|
8
8
|
"git": "powershell -ExecutionPolicy Bypass -File ./ps/create_branch.ps1",
|
|
9
9
|
"git2": "powershell -ExecutionPolicy Bypass -File ./ps/move_to_main.ps1"
|