@idds/vue 1.2.13 → 1.2.14

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/index.es.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defineComponent, inject, ref, computed, onMounted, onUnmounted, watch, createElementBlock, openBlock, normalizeClass, createElementVNode, renderSlot, createTextVNode, toDisplayString, createVNode, createCommentVNode, createBlock, resolveDynamicComponent, Transition, withCtx, provide, withModifiers, normalizeStyle, nextTick, h, Fragment, renderList, mergeProps, withDirectives, vModelDynamic, unref, withKeys, vModelText, Teleport, createStaticVNode, vModelRadio, useAttrs } from "vue";
1
+ import { defineComponent, inject, ref, computed, onMounted, onUnmounted, watch, createElementBlock, openBlock, normalizeClass, createElementVNode, renderSlot, createTextVNode, toDisplayString, createVNode, createCommentVNode, createBlock, resolveDynamicComponent, Transition, withCtx, provide, withModifiers, normalizeStyle, nextTick, h, unref, Fragment, renderList, mergeProps, withDirectives, vModelDynamic, withKeys, vModelText, Teleport, createStaticVNode, vModelRadio, useAttrs } from "vue";
2
2
  const iddsColorTokens = {
3
3
  // Neutral Colors
4
4
  "neutral-25": "var(--ina-neutral-25)",
@@ -574,8 +574,8 @@ const _hoisted_7$j = {
574
574
  key: 0,
575
575
  class: "ina-accordion-card__subtitle"
576
576
  };
577
- const _hoisted_8$g = ["id", "aria-labelledby"];
578
- const _hoisted_9$c = { class: "ina-accordion-card__body" };
577
+ const _hoisted_8$f = ["id", "aria-labelledby"];
578
+ const _hoisted_9$b = { class: "ina-accordion-card__body" };
579
579
  const _sfc_main$N = /* @__PURE__ */ defineComponent({
580
580
  __name: "AccordionCard",
581
581
  props: {
@@ -666,10 +666,10 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
666
666
  class: "ina-accordion-card__content",
667
667
  "aria-labelledby": headerId.value
668
668
  }, [
669
- createElementVNode("div", _hoisted_9$c, [
669
+ createElementVNode("div", _hoisted_9$b, [
670
670
  renderSlot(_ctx.$slots, "default", {}, void 0, true)
671
671
  ])
672
- ], 8, _hoisted_8$g)) : createCommentVNode("", true)
672
+ ], 8, _hoisted_8$f)) : createCommentVNode("", true)
673
673
  ]),
674
674
  _: 3
675
675
  })
@@ -951,73 +951,235 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
951
951
  }
952
952
  });
953
953
  const ActionDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-7f534f78"]]);
954
- const _hoisted_1$F = {
955
- key: 0,
956
- class: "ina-alert__icon"
954
+ /**
955
+ * @license @tabler/icons-vue v3.35.0 - MIT
956
+ *
957
+ * This source code is licensed under the MIT license.
958
+ * See the LICENSE file in the root directory of this source tree.
959
+ */
960
+ var defaultAttributes = {
961
+ outline: {
962
+ xmlns: "http://www.w3.org/2000/svg",
963
+ width: 24,
964
+ height: 24,
965
+ viewBox: "0 0 24 24",
966
+ fill: "none",
967
+ stroke: "currentColor",
968
+ "stroke-width": 2,
969
+ "stroke-linecap": "round",
970
+ "stroke-linejoin": "round"
971
+ },
972
+ filled: {
973
+ xmlns: "http://www.w3.org/2000/svg",
974
+ width: 24,
975
+ height: 24,
976
+ viewBox: "0 0 24 24",
977
+ fill: "currentColor",
978
+ stroke: "none"
979
+ }
957
980
  };
958
- const _hoisted_2$A = {
959
- key: 1,
960
- width: "20",
961
- height: "20",
962
- viewBox: "0 0 24 24",
963
- fill: "none",
964
- xmlns: "http://www.w3.org/2000/svg"
981
+ /**
982
+ * @license @tabler/icons-vue v3.35.0 - MIT
983
+ *
984
+ * This source code is licensed under the MIT license.
985
+ * See the LICENSE file in the root directory of this source tree.
986
+ */
987
+ const createVueComponent = (type, iconName, iconNamePascal, iconNode) => ({ color = "currentColor", size = 24, stroke = 2, title, class: classes, ...rest }, { attrs, slots }) => {
988
+ let children = [...iconNode.map((child) => h(...child)), ...slots.default ? [slots.default()] : []];
989
+ if (title)
990
+ children = [h("title", title), ...children];
991
+ return h(
992
+ "svg",
993
+ {
994
+ ...defaultAttributes[type],
995
+ width: size,
996
+ height: size,
997
+ ...attrs,
998
+ class: ["tabler-icon", `tabler-icon-${iconName}`],
999
+ ...type === "filled" ? {
1000
+ fill: color
1001
+ } : {
1002
+ "stroke-width": stroke ?? defaultAttributes[type]["stroke-width"],
1003
+ stroke: color
1004
+ },
1005
+ ...rest
1006
+ },
1007
+ children
1008
+ );
965
1009
  };
966
- const _hoisted_3$w = {
1010
+ /**
1011
+ * @license @tabler/icons-vue v3.35.0 - MIT
1012
+ *
1013
+ * This source code is licensed under the MIT license.
1014
+ * See the LICENSE file in the root directory of this source tree.
1015
+ */
1016
+ var IconAlertCircle = createVueComponent("outline", "alert-circle", "AlertCircle", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 8v4", "key": "svg-1" }], ["path", { "d": "M12 16h.01", "key": "svg-2" }]]);
1017
+ /**
1018
+ * @license @tabler/icons-vue v3.35.0 - MIT
1019
+ *
1020
+ * This source code is licensed under the MIT license.
1021
+ * See the LICENSE file in the root directory of this source tree.
1022
+ */
1023
+ var IconAlertTriangle = createVueComponent("outline", "alert-triangle", "AlertTriangle", [["path", { "d": "M12 9v4", "key": "svg-0" }], ["path", { "d": "M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z", "key": "svg-1" }], ["path", { "d": "M12 16h.01", "key": "svg-2" }]]);
1024
+ /**
1025
+ * @license @tabler/icons-vue v3.35.0 - MIT
1026
+ *
1027
+ * This source code is licensed under the MIT license.
1028
+ * See the LICENSE file in the root directory of this source tree.
1029
+ */
1030
+ var IconArrowNarrowDown = createVueComponent("outline", "arrow-narrow-down", "ArrowNarrowDown", [["path", { "d": "M12 5l0 14", "key": "svg-0" }], ["path", { "d": "M16 15l-4 4", "key": "svg-1" }], ["path", { "d": "M8 15l4 4", "key": "svg-2" }]]);
1031
+ /**
1032
+ * @license @tabler/icons-vue v3.35.0 - MIT
1033
+ *
1034
+ * This source code is licensed under the MIT license.
1035
+ * See the LICENSE file in the root directory of this source tree.
1036
+ */
1037
+ var IconArrowNarrowUp = createVueComponent("outline", "arrow-narrow-up", "ArrowNarrowUp", [["path", { "d": "M12 5l0 14", "key": "svg-0" }], ["path", { "d": "M16 9l-4 -4", "key": "svg-1" }], ["path", { "d": "M8 9l4 -4", "key": "svg-2" }]]);
1038
+ /**
1039
+ * @license @tabler/icons-vue v3.35.0 - MIT
1040
+ *
1041
+ * This source code is licensed under the MIT license.
1042
+ * See the LICENSE file in the root directory of this source tree.
1043
+ */
1044
+ var IconCalendar = createVueComponent("outline", "calendar", "Calendar", [["path", { "d": "M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z", "key": "svg-0" }], ["path", { "d": "M16 3v4", "key": "svg-1" }], ["path", { "d": "M8 3v4", "key": "svg-2" }], ["path", { "d": "M4 11h16", "key": "svg-3" }], ["path", { "d": "M11 15h1", "key": "svg-4" }], ["path", { "d": "M12 15v3", "key": "svg-5" }]]);
1045
+ /**
1046
+ * @license @tabler/icons-vue v3.35.0 - MIT
1047
+ *
1048
+ * This source code is licensed under the MIT license.
1049
+ * See the LICENSE file in the root directory of this source tree.
1050
+ */
1051
+ var IconCheck = createVueComponent("outline", "check", "Check", [["path", { "d": "M5 12l5 5l10 -10", "key": "svg-0" }]]);
1052
+ /**
1053
+ * @license @tabler/icons-vue v3.35.0 - MIT
1054
+ *
1055
+ * This source code is licensed under the MIT license.
1056
+ * See the LICENSE file in the root directory of this source tree.
1057
+ */
1058
+ var IconChevronDown = createVueComponent("outline", "chevron-down", "ChevronDown", [["path", { "d": "M6 9l6 6l6 -6", "key": "svg-0" }]]);
1059
+ /**
1060
+ * @license @tabler/icons-vue v3.35.0 - MIT
1061
+ *
1062
+ * This source code is licensed under the MIT license.
1063
+ * See the LICENSE file in the root directory of this source tree.
1064
+ */
1065
+ var IconChevronLeft = createVueComponent("outline", "chevron-left", "ChevronLeft", [["path", { "d": "M15 6l-6 6l6 6", "key": "svg-0" }]]);
1066
+ /**
1067
+ * @license @tabler/icons-vue v3.35.0 - MIT
1068
+ *
1069
+ * This source code is licensed under the MIT license.
1070
+ * See the LICENSE file in the root directory of this source tree.
1071
+ */
1072
+ var IconChevronRight = createVueComponent("outline", "chevron-right", "ChevronRight", [["path", { "d": "M9 6l6 6l-6 6", "key": "svg-0" }]]);
1073
+ /**
1074
+ * @license @tabler/icons-vue v3.35.0 - MIT
1075
+ *
1076
+ * This source code is licensed under the MIT license.
1077
+ * See the LICENSE file in the root directory of this source tree.
1078
+ */
1079
+ var IconChevronUp = createVueComponent("outline", "chevron-up", "ChevronUp", [["path", { "d": "M6 15l6 -6l6 6", "key": "svg-0" }]]);
1080
+ /**
1081
+ * @license @tabler/icons-vue v3.35.0 - MIT
1082
+ *
1083
+ * This source code is licensed under the MIT license.
1084
+ * See the LICENSE file in the root directory of this source tree.
1085
+ */
1086
+ var IconCircleCheck = createVueComponent("outline", "circle-check", "CircleCheck", [["path", { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", "key": "svg-0" }], ["path", { "d": "M9 12l2 2l4 -4", "key": "svg-1" }]]);
1087
+ /**
1088
+ * @license @tabler/icons-vue v3.35.0 - MIT
1089
+ *
1090
+ * This source code is licensed under the MIT license.
1091
+ * See the LICENSE file in the root directory of this source tree.
1092
+ */
1093
+ var IconCircleX = createVueComponent("outline", "circle-x", "CircleX", [["path", { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", "key": "svg-0" }], ["path", { "d": "M10 10l4 4m0 -4l-4 4", "key": "svg-1" }]]);
1094
+ /**
1095
+ * @license @tabler/icons-vue v3.35.0 - MIT
1096
+ *
1097
+ * This source code is licensed under the MIT license.
1098
+ * See the LICENSE file in the root directory of this source tree.
1099
+ */
1100
+ var IconClock = createVueComponent("outline", "clock", "Clock", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 7v5l3 3", "key": "svg-1" }]]);
1101
+ /**
1102
+ * @license @tabler/icons-vue v3.35.0 - MIT
1103
+ *
1104
+ * This source code is licensed under the MIT license.
1105
+ * See the LICENSE file in the root directory of this source tree.
1106
+ */
1107
+ var IconCube3dSphere = createVueComponent("outline", "cube-3d-sphere", "Cube3dSphere", [["path", { "d": "M6 17.6l-2 -1.1v-2.5", "key": "svg-0" }], ["path", { "d": "M4 10v-2.5l2 -1.1", "key": "svg-1" }], ["path", { "d": "M10 4.1l2 -1.1l2 1.1", "key": "svg-2" }], ["path", { "d": "M18 6.4l2 1.1v2.5", "key": "svg-3" }], ["path", { "d": "M20 14v2.5l-2 1.12", "key": "svg-4" }], ["path", { "d": "M14 19.9l-2 1.1l-2 -1.1", "key": "svg-5" }], ["path", { "d": "M12 12l2 -1.1", "key": "svg-6" }], ["path", { "d": "M18 8.6l2 -1.1", "key": "svg-7" }], ["path", { "d": "M12 12l0 2.5", "key": "svg-8" }], ["path", { "d": "M12 18.5l0 2.5", "key": "svg-9" }], ["path", { "d": "M12 12l-2 -1.12", "key": "svg-10" }], ["path", { "d": "M6 8.6l-2 -1.1", "key": "svg-11" }]]);
1108
+ /**
1109
+ * @license @tabler/icons-vue v3.35.0 - MIT
1110
+ *
1111
+ * This source code is licensed under the MIT license.
1112
+ * See the LICENSE file in the root directory of this source tree.
1113
+ */
1114
+ var IconInfoCircle = createVueComponent("outline", "info-circle", "InfoCircle", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 9h.01", "key": "svg-1" }], ["path", { "d": "M11 12h1v4h1", "key": "svg-2" }]]);
1115
+ /**
1116
+ * @license @tabler/icons-vue v3.35.0 - MIT
1117
+ *
1118
+ * This source code is licensed under the MIT license.
1119
+ * See the LICENSE file in the root directory of this source tree.
1120
+ */
1121
+ var IconLoader2 = createVueComponent("outline", "loader-2", "Loader2", [["path", { "d": "M12 3a9 9 0 1 0 9 9", "key": "svg-0" }]]);
1122
+ /**
1123
+ * @license @tabler/icons-vue v3.35.0 - MIT
1124
+ *
1125
+ * This source code is licensed under the MIT license.
1126
+ * See the LICENSE file in the root directory of this source tree.
1127
+ */
1128
+ var IconMoon = createVueComponent("outline", "moon", "Moon", [["path", { "d": "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z", "key": "svg-0" }]]);
1129
+ /**
1130
+ * @license @tabler/icons-vue v3.35.0 - MIT
1131
+ *
1132
+ * This source code is licensed under the MIT license.
1133
+ * See the LICENSE file in the root directory of this source tree.
1134
+ */
1135
+ var IconRotateClockwise = createVueComponent("outline", "rotate-clockwise", "RotateClockwise", [["path", { "d": "M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5", "key": "svg-0" }]]);
1136
+ /**
1137
+ * @license @tabler/icons-vue v3.35.0 - MIT
1138
+ *
1139
+ * This source code is licensed under the MIT license.
1140
+ * See the LICENSE file in the root directory of this source tree.
1141
+ */
1142
+ var IconSun = createVueComponent("outline", "sun", "Sun", [["path", { "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", "key": "svg-0" }], ["path", { "d": "M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7", "key": "svg-1" }]]);
1143
+ /**
1144
+ * @license @tabler/icons-vue v3.35.0 - MIT
1145
+ *
1146
+ * This source code is licensed under the MIT license.
1147
+ * See the LICENSE file in the root directory of this source tree.
1148
+ */
1149
+ var IconTrash = createVueComponent("outline", "trash", "Trash", [["path", { "d": "M4 7l16 0", "key": "svg-0" }], ["path", { "d": "M10 11l0 6", "key": "svg-1" }], ["path", { "d": "M14 11l0 6", "key": "svg-2" }], ["path", { "d": "M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12", "key": "svg-3" }], ["path", { "d": "M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3", "key": "svg-4" }]]);
1150
+ /**
1151
+ * @license @tabler/icons-vue v3.35.0 - MIT
1152
+ *
1153
+ * This source code is licensed under the MIT license.
1154
+ * See the LICENSE file in the root directory of this source tree.
1155
+ */
1156
+ var IconUpload = createVueComponent("outline", "upload", "Upload", [["path", { "d": "M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2", "key": "svg-0" }], ["path", { "d": "M7 9l5 -5l5 5", "key": "svg-1" }], ["path", { "d": "M12 4l0 12", "key": "svg-2" }]]);
1157
+ /**
1158
+ * @license @tabler/icons-vue v3.35.0 - MIT
1159
+ *
1160
+ * This source code is licensed under the MIT license.
1161
+ * See the LICENSE file in the root directory of this source tree.
1162
+ */
1163
+ var IconX = createVueComponent("outline", "x", "X", [["path", { "d": "M18 6l-12 12", "key": "svg-0" }], ["path", { "d": "M6 6l12 12", "key": "svg-1" }]]);
1164
+ const _hoisted_1$F = {
967
1165
  key: 0,
968
- d: "M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z",
969
- stroke: "currentColor",
970
- "stroke-width": "2",
971
- "stroke-linecap": "round",
972
- "stroke-linejoin": "round"
1166
+ class: "ina-alert__icon"
973
1167
  };
1168
+ const _hoisted_2$A = { class: "ina-alert__content" };
1169
+ const _hoisted_3$w = { class: "ina-alert__text-section" };
974
1170
  const _hoisted_4$r = {
975
- key: 1,
976
- d: "M9 12L11 14L15 10M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",
977
- stroke: "currentColor",
978
- "stroke-width": "2",
979
- "stroke-linecap": "round",
980
- "stroke-linejoin": "round"
981
- };
982
- const _hoisted_5$m = {
983
- key: 2,
984
- d: "M12 9V13M12 17H12.01M10.29 3.86L1.82 18C1.64538 18.3024 1.55299 18.6453 1.55201 18.9945C1.55103 19.3437 1.64151 19.6871 1.81445 19.9905C1.98738 20.2939 2.23675 20.5467 2.53773 20.7238C2.83871 20.9009 3.18082 20.9962 3.53 21H20.47C20.8192 20.9962 21.1613 20.9009 21.4623 20.7238C21.7633 20.5467 22.0126 20.2939 22.1856 19.9905C22.3585 19.6871 22.449 19.3437 22.448 18.9945C22.447 18.6453 22.3546 18.3024 22.18 18L13.71 3.86C13.5315 3.56611 13.2807 3.32311 12.9812 3.15448C12.6817 2.98585 12.3438 2.89725 12 2.89725C11.6562 2.89725 11.3183 2.98585 11.0188 3.15448C10.7193 3.32311 10.4685 3.56611 10.29 3.86Z",
985
- stroke: "currentColor",
986
- "stroke-width": "2",
987
- "stroke-linecap": "round",
988
- "stroke-linejoin": "round"
989
- };
990
- const _hoisted_6$j = {
991
- key: 3,
992
- d: "M13 16H12V12H11M12 8H12.01M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",
993
- stroke: "currentColor",
994
- "stroke-width": "2",
995
- "stroke-linecap": "round",
996
- "stroke-linejoin": "round"
997
- };
998
- const _hoisted_7$i = {
999
- key: 4,
1000
- d: "M12 8V12M12 16H12.01M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",
1001
- stroke: "currentColor",
1002
- "stroke-width": "2",
1003
- "stroke-linecap": "round",
1004
- "stroke-linejoin": "round"
1005
- };
1006
- const _hoisted_8$f = { class: "ina-alert__content" };
1007
- const _hoisted_9$b = { class: "ina-alert__text-section" };
1008
- const _hoisted_10$a = {
1009
1171
  key: 0,
1010
1172
  class: "ina-alert__title"
1011
1173
  };
1012
- const _hoisted_11$a = {
1174
+ const _hoisted_5$m = {
1013
1175
  key: 1,
1014
1176
  class: "ina-alert__description"
1015
1177
  };
1016
- const _hoisted_12$9 = {
1178
+ const _hoisted_6$j = {
1017
1179
  key: 2,
1018
1180
  class: "ina-alert__actions"
1019
1181
  };
1020
- const _hoisted_13$7 = ["aria-label"];
1182
+ const _hoisted_7$i = ["aria-label"];
1021
1183
  const _sfc_main$K = /* @__PURE__ */ defineComponent({
1022
1184
  __name: "Alert",
1023
1185
  props: {
@@ -1055,19 +1217,32 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
1055
1217
  __props.icon ? (openBlock(), createBlock(resolveDynamicComponent(__props.icon), {
1056
1218
  key: 0,
1057
1219
  size: 20
1058
- })) : showVariantIcon.value ? (openBlock(), createElementBlock("svg", _hoisted_2$A, [
1059
- __props.variant === "neutral" ? (openBlock(), createElementBlock("path", _hoisted_3$w)) : __props.variant === "success" ? (openBlock(), createElementBlock("path", _hoisted_4$r)) : __props.variant === "caution" ? (openBlock(), createElementBlock("path", _hoisted_5$m)) : __props.variant === "info" ? (openBlock(), createElementBlock("path", _hoisted_6$j)) : __props.variant === "critical" ? (openBlock(), createElementBlock("path", _hoisted_7$i)) : createCommentVNode("", true)
1060
- ])) : createCommentVNode("", true)
1220
+ })) : showVariantIcon.value && __props.variant === "neutral" ? (openBlock(), createBlock(unref(IconCube3dSphere), {
1221
+ key: 1,
1222
+ size: 20
1223
+ })) : showVariantIcon.value && __props.variant === "info" ? (openBlock(), createBlock(unref(IconInfoCircle), {
1224
+ key: 2,
1225
+ size: 20
1226
+ })) : showVariantIcon.value && __props.variant === "success" ? (openBlock(), createBlock(unref(IconCheck), {
1227
+ key: 3,
1228
+ size: 20
1229
+ })) : showVariantIcon.value && __props.variant === "caution" ? (openBlock(), createBlock(unref(IconAlertTriangle), {
1230
+ key: 4,
1231
+ size: 20
1232
+ })) : showVariantIcon.value && __props.variant === "critical" ? (openBlock(), createBlock(unref(IconAlertCircle), {
1233
+ key: 5,
1234
+ size: 20
1235
+ })) : createCommentVNode("", true)
1061
1236
  ])) : createCommentVNode("", true),
1062
- createElementVNode("div", _hoisted_8$f, [
1063
- createElementVNode("div", _hoisted_9$b, [
1064
- __props.title ? (openBlock(), createElementBlock("div", _hoisted_10$a, toDisplayString(__props.title), 1)) : createCommentVNode("", true),
1065
- _ctx.$slots.default || __props.message ? (openBlock(), createElementBlock("div", _hoisted_11$a, [
1237
+ createElementVNode("div", _hoisted_2$A, [
1238
+ createElementVNode("div", _hoisted_3$w, [
1239
+ __props.title ? (openBlock(), createElementBlock("div", _hoisted_4$r, toDisplayString(__props.title), 1)) : createCommentVNode("", true),
1240
+ _ctx.$slots.default || __props.message ? (openBlock(), createElementBlock("div", _hoisted_5$m, [
1066
1241
  renderSlot(_ctx.$slots, "default", {}, () => [
1067
1242
  createTextVNode(toDisplayString(__props.message), 1)
1068
1243
  ])
1069
1244
  ])) : createCommentVNode("", true),
1070
- _ctx.$slots.actions ? (openBlock(), createElementBlock("div", _hoisted_12$9, [
1245
+ _ctx.$slots.actions ? (openBlock(), createElementBlock("div", _hoisted_6$j, [
1071
1246
  renderSlot(_ctx.$slots, "actions")
1072
1247
  ])) : createCommentVNode("", true)
1073
1248
  ])
@@ -1094,7 +1269,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
1094
1269
  "stroke-linejoin": "round"
1095
1270
  })
1096
1271
  ], -1)
1097
- ])], 8, _hoisted_13$7)) : createCommentVNode("", true)
1272
+ ])], 8, _hoisted_7$i)) : createCommentVNode("", true)
1098
1273
  ], 2);
1099
1274
  };
1100
1275
  }
@@ -1264,202 +1439,6 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
1264
1439
  };
1265
1440
  }
1266
1441
  });
1267
- /**
1268
- * @license @tabler/icons-vue v3.35.0 - MIT
1269
- *
1270
- * This source code is licensed under the MIT license.
1271
- * See the LICENSE file in the root directory of this source tree.
1272
- */
1273
- var defaultAttributes = {
1274
- outline: {
1275
- xmlns: "http://www.w3.org/2000/svg",
1276
- width: 24,
1277
- height: 24,
1278
- viewBox: "0 0 24 24",
1279
- fill: "none",
1280
- stroke: "currentColor",
1281
- "stroke-width": 2,
1282
- "stroke-linecap": "round",
1283
- "stroke-linejoin": "round"
1284
- },
1285
- filled: {
1286
- xmlns: "http://www.w3.org/2000/svg",
1287
- width: 24,
1288
- height: 24,
1289
- viewBox: "0 0 24 24",
1290
- fill: "currentColor",
1291
- stroke: "none"
1292
- }
1293
- };
1294
- /**
1295
- * @license @tabler/icons-vue v3.35.0 - MIT
1296
- *
1297
- * This source code is licensed under the MIT license.
1298
- * See the LICENSE file in the root directory of this source tree.
1299
- */
1300
- const createVueComponent = (type, iconName, iconNamePascal, iconNode) => ({ color = "currentColor", size = 24, stroke = 2, title, class: classes, ...rest }, { attrs, slots }) => {
1301
- let children = [...iconNode.map((child) => h(...child)), ...slots.default ? [slots.default()] : []];
1302
- if (title)
1303
- children = [h("title", title), ...children];
1304
- return h(
1305
- "svg",
1306
- {
1307
- ...defaultAttributes[type],
1308
- width: size,
1309
- height: size,
1310
- ...attrs,
1311
- class: ["tabler-icon", `tabler-icon-${iconName}`],
1312
- ...type === "filled" ? {
1313
- fill: color
1314
- } : {
1315
- "stroke-width": stroke ?? defaultAttributes[type]["stroke-width"],
1316
- stroke: color
1317
- },
1318
- ...rest
1319
- },
1320
- children
1321
- );
1322
- };
1323
- /**
1324
- * @license @tabler/icons-vue v3.35.0 - MIT
1325
- *
1326
- * This source code is licensed under the MIT license.
1327
- * See the LICENSE file in the root directory of this source tree.
1328
- */
1329
- var IconAlertCircle = createVueComponent("outline", "alert-circle", "AlertCircle", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 8v4", "key": "svg-1" }], ["path", { "d": "M12 16h.01", "key": "svg-2" }]]);
1330
- /**
1331
- * @license @tabler/icons-vue v3.35.0 - MIT
1332
- *
1333
- * This source code is licensed under the MIT license.
1334
- * See the LICENSE file in the root directory of this source tree.
1335
- */
1336
- var IconArrowNarrowDown = createVueComponent("outline", "arrow-narrow-down", "ArrowNarrowDown", [["path", { "d": "M12 5l0 14", "key": "svg-0" }], ["path", { "d": "M16 15l-4 4", "key": "svg-1" }], ["path", { "d": "M8 15l4 4", "key": "svg-2" }]]);
1337
- /**
1338
- * @license @tabler/icons-vue v3.35.0 - MIT
1339
- *
1340
- * This source code is licensed under the MIT license.
1341
- * See the LICENSE file in the root directory of this source tree.
1342
- */
1343
- var IconArrowNarrowUp = createVueComponent("outline", "arrow-narrow-up", "ArrowNarrowUp", [["path", { "d": "M12 5l0 14", "key": "svg-0" }], ["path", { "d": "M16 9l-4 -4", "key": "svg-1" }], ["path", { "d": "M8 9l4 -4", "key": "svg-2" }]]);
1344
- /**
1345
- * @license @tabler/icons-vue v3.35.0 - MIT
1346
- *
1347
- * This source code is licensed under the MIT license.
1348
- * See the LICENSE file in the root directory of this source tree.
1349
- */
1350
- var IconCalendar = createVueComponent("outline", "calendar", "Calendar", [["path", { "d": "M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z", "key": "svg-0" }], ["path", { "d": "M16 3v4", "key": "svg-1" }], ["path", { "d": "M8 3v4", "key": "svg-2" }], ["path", { "d": "M4 11h16", "key": "svg-3" }], ["path", { "d": "M11 15h1", "key": "svg-4" }], ["path", { "d": "M12 15v3", "key": "svg-5" }]]);
1351
- /**
1352
- * @license @tabler/icons-vue v3.35.0 - MIT
1353
- *
1354
- * This source code is licensed under the MIT license.
1355
- * See the LICENSE file in the root directory of this source tree.
1356
- */
1357
- var IconCheck = createVueComponent("outline", "check", "Check", [["path", { "d": "M5 12l5 5l10 -10", "key": "svg-0" }]]);
1358
- /**
1359
- * @license @tabler/icons-vue v3.35.0 - MIT
1360
- *
1361
- * This source code is licensed under the MIT license.
1362
- * See the LICENSE file in the root directory of this source tree.
1363
- */
1364
- var IconChevronDown = createVueComponent("outline", "chevron-down", "ChevronDown", [["path", { "d": "M6 9l6 6l6 -6", "key": "svg-0" }]]);
1365
- /**
1366
- * @license @tabler/icons-vue v3.35.0 - MIT
1367
- *
1368
- * This source code is licensed under the MIT license.
1369
- * See the LICENSE file in the root directory of this source tree.
1370
- */
1371
- var IconChevronLeft = createVueComponent("outline", "chevron-left", "ChevronLeft", [["path", { "d": "M15 6l-6 6l6 6", "key": "svg-0" }]]);
1372
- /**
1373
- * @license @tabler/icons-vue v3.35.0 - MIT
1374
- *
1375
- * This source code is licensed under the MIT license.
1376
- * See the LICENSE file in the root directory of this source tree.
1377
- */
1378
- var IconChevronRight = createVueComponent("outline", "chevron-right", "ChevronRight", [["path", { "d": "M9 6l6 6l-6 6", "key": "svg-0" }]]);
1379
- /**
1380
- * @license @tabler/icons-vue v3.35.0 - MIT
1381
- *
1382
- * This source code is licensed under the MIT license.
1383
- * See the LICENSE file in the root directory of this source tree.
1384
- */
1385
- var IconChevronUp = createVueComponent("outline", "chevron-up", "ChevronUp", [["path", { "d": "M6 15l6 -6l6 6", "key": "svg-0" }]]);
1386
- /**
1387
- * @license @tabler/icons-vue v3.35.0 - MIT
1388
- *
1389
- * This source code is licensed under the MIT license.
1390
- * See the LICENSE file in the root directory of this source tree.
1391
- */
1392
- var IconCircleCheck = createVueComponent("outline", "circle-check", "CircleCheck", [["path", { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", "key": "svg-0" }], ["path", { "d": "M9 12l2 2l4 -4", "key": "svg-1" }]]);
1393
- /**
1394
- * @license @tabler/icons-vue v3.35.0 - MIT
1395
- *
1396
- * This source code is licensed under the MIT license.
1397
- * See the LICENSE file in the root directory of this source tree.
1398
- */
1399
- var IconCircleX = createVueComponent("outline", "circle-x", "CircleX", [["path", { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", "key": "svg-0" }], ["path", { "d": "M10 10l4 4m0 -4l-4 4", "key": "svg-1" }]]);
1400
- /**
1401
- * @license @tabler/icons-vue v3.35.0 - MIT
1402
- *
1403
- * This source code is licensed under the MIT license.
1404
- * See the LICENSE file in the root directory of this source tree.
1405
- */
1406
- var IconClock = createVueComponent("outline", "clock", "Clock", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 7v5l3 3", "key": "svg-1" }]]);
1407
- /**
1408
- * @license @tabler/icons-vue v3.35.0 - MIT
1409
- *
1410
- * This source code is licensed under the MIT license.
1411
- * See the LICENSE file in the root directory of this source tree.
1412
- */
1413
- var IconInfoCircle = createVueComponent("outline", "info-circle", "InfoCircle", [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "key": "svg-0" }], ["path", { "d": "M12 9h.01", "key": "svg-1" }], ["path", { "d": "M11 12h1v4h1", "key": "svg-2" }]]);
1414
- /**
1415
- * @license @tabler/icons-vue v3.35.0 - MIT
1416
- *
1417
- * This source code is licensed under the MIT license.
1418
- * See the LICENSE file in the root directory of this source tree.
1419
- */
1420
- var IconLoader2 = createVueComponent("outline", "loader-2", "Loader2", [["path", { "d": "M12 3a9 9 0 1 0 9 9", "key": "svg-0" }]]);
1421
- /**
1422
- * @license @tabler/icons-vue v3.35.0 - MIT
1423
- *
1424
- * This source code is licensed under the MIT license.
1425
- * See the LICENSE file in the root directory of this source tree.
1426
- */
1427
- var IconMoon = createVueComponent("outline", "moon", "Moon", [["path", { "d": "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z", "key": "svg-0" }]]);
1428
- /**
1429
- * @license @tabler/icons-vue v3.35.0 - MIT
1430
- *
1431
- * This source code is licensed under the MIT license.
1432
- * See the LICENSE file in the root directory of this source tree.
1433
- */
1434
- var IconRotateClockwise = createVueComponent("outline", "rotate-clockwise", "RotateClockwise", [["path", { "d": "M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5", "key": "svg-0" }]]);
1435
- /**
1436
- * @license @tabler/icons-vue v3.35.0 - MIT
1437
- *
1438
- * This source code is licensed under the MIT license.
1439
- * See the LICENSE file in the root directory of this source tree.
1440
- */
1441
- var IconSun = createVueComponent("outline", "sun", "Sun", [["path", { "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", "key": "svg-0" }], ["path", { "d": "M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7", "key": "svg-1" }]]);
1442
- /**
1443
- * @license @tabler/icons-vue v3.35.0 - MIT
1444
- *
1445
- * This source code is licensed under the MIT license.
1446
- * See the LICENSE file in the root directory of this source tree.
1447
- */
1448
- var IconTrash = createVueComponent("outline", "trash", "Trash", [["path", { "d": "M4 7l16 0", "key": "svg-0" }], ["path", { "d": "M10 11l0 6", "key": "svg-1" }], ["path", { "d": "M14 11l0 6", "key": "svg-2" }], ["path", { "d": "M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12", "key": "svg-3" }], ["path", { "d": "M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3", "key": "svg-4" }]]);
1449
- /**
1450
- * @license @tabler/icons-vue v3.35.0 - MIT
1451
- *
1452
- * This source code is licensed under the MIT license.
1453
- * See the LICENSE file in the root directory of this source tree.
1454
- */
1455
- var IconUpload = createVueComponent("outline", "upload", "Upload", [["path", { "d": "M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2", "key": "svg-0" }], ["path", { "d": "M7 9l5 -5l5 5", "key": "svg-1" }], ["path", { "d": "M12 4l0 12", "key": "svg-2" }]]);
1456
- /**
1457
- * @license @tabler/icons-vue v3.35.0 - MIT
1458
- *
1459
- * This source code is licensed under the MIT license.
1460
- * See the LICENSE file in the root directory of this source tree.
1461
- */
1462
- var IconX = createVueComponent("outline", "x", "X", [["path", { "d": "M18 6l-12 12", "key": "svg-0" }], ["path", { "d": "M6 6l12 12", "key": "svg-1" }]]);
1463
1442
  const _hoisted_1$C = { class: "ina-breadcrumb__list" };
1464
1443
  const _hoisted_2$y = {
1465
1444
  key: 0,