@harnessio/ui 0.5.2 → 0.5.4
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.d.ts +6 -0
- package/dist/components.js +2 -2
- package/dist/context.d.ts +5 -0
- package/dist/context.js +2 -2
- package/dist/hooks.d.ts +1 -0
- package/dist/hooks.js +1 -1
- package/dist/{index-DygHpwlj.js → index-BhO-bCC5.js} +222 -219
- package/dist/index-BhO-bCC5.js.map +1 -0
- package/dist/{index-8ZqVngWh.js → index-D0EqFVbJ.js} +8 -5
- package/dist/{index-8ZqVngWh.js.map → index-D0EqFVbJ.js.map} +1 -1
- package/dist/{index-C5GPIKLa.js → index-D6BuUbRP.js} +2 -2
- package/dist/{index-C5GPIKLa.js.map → index-D6BuUbRP.js.map} +1 -1
- package/dist/{index-Dx1dURcv.js → index-DhFGPGOA.js} +759 -754
- package/dist/index-DhFGPGOA.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3 -3
- package/package.json +3 -3
- package/dist/index-Dx1dURcv.js.map +0 -1
- package/dist/index-DygHpwlj.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -779,6 +779,7 @@ declare interface CheckboxFilterOptionConfig<T extends string = string> extends
|
|
|
779
779
|
declare interface CheckboxOptions {
|
|
780
780
|
label: string;
|
|
781
781
|
value: string;
|
|
782
|
+
disabled?: boolean;
|
|
782
783
|
}
|
|
783
784
|
|
|
784
785
|
declare interface CheckboxProps extends ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> {
|
|
@@ -2957,6 +2958,7 @@ declare const IconNameMapV2: {
|
|
|
2957
2958
|
'bell-off': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2958
2959
|
bell: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2959
2960
|
blocks: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2961
|
+
'blue-green': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2960
2962
|
'bold-squere': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2961
2963
|
bold: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2962
2964
|
'bookmark-solid': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -2980,6 +2982,7 @@ declare const IconNameMapV2: {
|
|
|
2980
2982
|
'calendar-rotate': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2981
2983
|
'calendar-xmark': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2982
2984
|
calendar: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2985
|
+
canary: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2983
2986
|
cell2x2: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2984
2987
|
'chaos-tests-solid': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
2985
2988
|
'chaos-tests': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -3157,6 +3160,7 @@ declare const IconNameMapV2: {
|
|
|
3157
3160
|
'info-circle': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3158
3161
|
'infrastructure-solid': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3159
3162
|
infrastructure: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3163
|
+
'input-set': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3160
3164
|
instances: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3161
3165
|
internet: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3162
3166
|
'italic-square': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -3231,6 +3235,7 @@ declare const IconNameMapV2: {
|
|
|
3231
3235
|
'page-plus': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3232
3236
|
'page-right': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3233
3237
|
'page-up': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3238
|
+
palette: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3234
3239
|
'paste-clipboard': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3235
3240
|
'path-arrow': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3236
3241
|
pause: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -3278,6 +3283,7 @@ declare const IconNameMapV2: {
|
|
|
3278
3283
|
repository: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3279
3284
|
restart: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3280
3285
|
roles: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3286
|
+
rolling: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3281
3287
|
ruler: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3282
3288
|
'run-test': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
3283
3289
|
run: FunctionComponent<SVGProps<SVGSVGElement>>;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { i as s } from "./index-Bvr23CG5.js";
|
|
2
|
-
import { i as e } from "./index-
|
|
3
|
-
import { i as a } from "./index-
|
|
4
|
-
import { i as m } from "./index-
|
|
2
|
+
import { i as e } from "./index-D0EqFVbJ.js";
|
|
3
|
+
import { i as a } from "./index-D6BuUbRP.js";
|
|
4
|
+
import { i as m } from "./index-BhO-bCC5.js";
|
|
5
5
|
import { i as f } from "./index-yGuTXfMI.js";
|
|
6
6
|
import { i as l } from "./index-DNkb7kYX.js";
|
|
7
7
|
export {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/ui",
|
|
3
3
|
"description": "Harness Canary UI component library",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -119,9 +119,9 @@
|
|
|
119
119
|
"vaul": "^1.1.2",
|
|
120
120
|
"yaml": "^2.7.0",
|
|
121
121
|
"zod": "^3.23.8",
|
|
122
|
+
"@harnessio/yaml-editor": "0.26.0",
|
|
122
123
|
"@harnessio/core-design-system": "0.0.1",
|
|
123
|
-
"@harnessio/pipeline-graph": "1.9.6"
|
|
124
|
-
"@harnessio/yaml-editor": "0.26.0"
|
|
124
|
+
"@harnessio/pipeline-graph": "1.9.6"
|
|
125
125
|
},
|
|
126
126
|
"peerDependencies": {
|
|
127
127
|
"react": "^17.0.2",
|