@agentiffai/design 1.3.18 → 1.3.20
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/{Window-pJb3Z5_P.d.cts → Window-DyRP81dS.d.cts} +42 -3
- package/dist/{Window-pJb3Z5_P.d.ts → Window-DyRP81dS.d.ts} +42 -3
- package/dist/copilotkit/index.cjs +424 -179
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.d.cts +4 -30
- package/dist/copilotkit/index.d.ts +4 -30
- package/dist/copilotkit/index.js +351 -109
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/index.cjs +2025 -1821
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1900 -1699
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +18 -2
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +8 -0
- package/dist/layout/index.d.ts +8 -0
- package/dist/layout/index.js +18 -2
- package/dist/layout/index.js.map +1 -1
- package/dist/workflow/index.cjs +6 -1
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.d.cts +2 -0
- package/dist/workflow/index.d.ts +2 -0
- package/dist/workflow/index.js +6 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
package/dist/layout/index.d.cts
CHANGED
|
@@ -73,6 +73,14 @@ declare const IconNames: {
|
|
|
73
73
|
readonly LOGOUT_CIRCLE_R_FILL: "logout-circle-r-fill";
|
|
74
74
|
readonly LOGOUT_CIRCLE_R_LINE: "logout-circle-r-line";
|
|
75
75
|
readonly SIDE_BAR_FILL: "side-bar-fill";
|
|
76
|
+
readonly CHECK: "check-fill";
|
|
77
|
+
readonly CHECK_CIRCLE: "checkbox-circle-fill";
|
|
78
|
+
readonly CLOSE_CIRCLE: "close-circle-fill";
|
|
79
|
+
readonly ERROR_WARNING: "error-warning-fill";
|
|
80
|
+
readonly HAMMER: "hammer-fill";
|
|
81
|
+
readonly ROCKET: "rocket-fill";
|
|
82
|
+
readonly TICKET: "coupon-2-fill";
|
|
83
|
+
readonly CLIPBOARD: "clipboard-fill";
|
|
76
84
|
};
|
|
77
85
|
type IconName = (typeof IconNames)[keyof typeof IconNames];
|
|
78
86
|
|
package/dist/layout/index.d.ts
CHANGED
|
@@ -73,6 +73,14 @@ declare const IconNames: {
|
|
|
73
73
|
readonly LOGOUT_CIRCLE_R_FILL: "logout-circle-r-fill";
|
|
74
74
|
readonly LOGOUT_CIRCLE_R_LINE: "logout-circle-r-line";
|
|
75
75
|
readonly SIDE_BAR_FILL: "side-bar-fill";
|
|
76
|
+
readonly CHECK: "check-fill";
|
|
77
|
+
readonly CHECK_CIRCLE: "checkbox-circle-fill";
|
|
78
|
+
readonly CLOSE_CIRCLE: "close-circle-fill";
|
|
79
|
+
readonly ERROR_WARNING: "error-warning-fill";
|
|
80
|
+
readonly HAMMER: "hammer-fill";
|
|
81
|
+
readonly ROCKET: "rocket-fill";
|
|
82
|
+
readonly TICKET: "coupon-2-fill";
|
|
83
|
+
readonly CLIPBOARD: "clipboard-fill";
|
|
76
84
|
};
|
|
77
85
|
type IconName = (typeof IconNames)[keyof typeof IconNames];
|
|
78
86
|
|
package/dist/layout/index.js
CHANGED
|
@@ -442,7 +442,15 @@ var IconNames = {
|
|
|
442
442
|
FLOW_CHART: "flow-chart",
|
|
443
443
|
LOGOUT_CIRCLE_R_FILL: "logout-circle-r-fill",
|
|
444
444
|
LOGOUT_CIRCLE_R_LINE: "logout-circle-r-line",
|
|
445
|
-
SIDE_BAR_FILL: "side-bar-fill"
|
|
445
|
+
SIDE_BAR_FILL: "side-bar-fill",
|
|
446
|
+
CHECK: "check-fill",
|
|
447
|
+
CHECK_CIRCLE: "checkbox-circle-fill",
|
|
448
|
+
CLOSE_CIRCLE: "close-circle-fill",
|
|
449
|
+
ERROR_WARNING: "error-warning-fill",
|
|
450
|
+
HAMMER: "hammer-fill",
|
|
451
|
+
ROCKET: "rocket-fill",
|
|
452
|
+
TICKET: "coupon-2-fill",
|
|
453
|
+
CLIPBOARD: "clipboard-fill"
|
|
446
454
|
};
|
|
447
455
|
var iconFiles = {
|
|
448
456
|
"mic-fill": "Icon-mic-fill.svg",
|
|
@@ -460,7 +468,15 @@ var iconFiles = {
|
|
|
460
468
|
"flow-chart": "Icon-flow-chart.svg",
|
|
461
469
|
"logout-circle-r-fill": "Icon-logout-circle-r-fill.svg",
|
|
462
470
|
"logout-circle-r-line": "Icon-logout-circle-r-line.svg",
|
|
463
|
-
"side-bar-fill": "Icon-side-bar-fill.svg"
|
|
471
|
+
"side-bar-fill": "Icon-side-bar-fill.svg",
|
|
472
|
+
"check-fill": "Icon-check-fill.svg",
|
|
473
|
+
"checkbox-circle-fill": "Icon-checkbox-circle-fill.svg",
|
|
474
|
+
"close-circle-fill": "Icon-close-circle-fill.svg",
|
|
475
|
+
"error-warning-fill": "Icon-error-warning-fill.svg",
|
|
476
|
+
"hammer-fill": "Icon-hammer-fill.svg",
|
|
477
|
+
"rocket-fill": "Icon-rocket-fill.svg",
|
|
478
|
+
"coupon-2-fill": "Icon-coupon-2-fill.svg",
|
|
479
|
+
"clipboard-fill": "Icon-clipboard-fill.svg"
|
|
464
480
|
};
|
|
465
481
|
function getIconPath(name) {
|
|
466
482
|
return `${ICON_BASE_PATH}/${iconFiles[name]}`;
|