@idds/vue 1.2.13 → 1.2.15

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)",
@@ -532,8 +532,6 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
532
532
  createElementVNode("div", _hoisted_3$z, [
533
533
  (openBlock(), createElementBlock("svg", {
534
534
  class: normalizeClass(["ina-accordion__icon", { "ina-accordion__icon--open": isOpen.value }]),
535
- width: "24",
536
- height: "24",
537
535
  viewBox: "0 0 24 24",
538
536
  fill: "none",
539
537
  xmlns: "http://www.w3.org/2000/svg"
@@ -574,8 +572,8 @@ const _hoisted_7$j = {
574
572
  key: 0,
575
573
  class: "ina-accordion-card__subtitle"
576
574
  };
577
- const _hoisted_8$g = ["id", "aria-labelledby"];
578
- const _hoisted_9$c = { class: "ina-accordion-card__body" };
575
+ const _hoisted_8$f = ["id", "aria-labelledby"];
576
+ const _hoisted_9$b = { class: "ina-accordion-card__body" };
579
577
  const _sfc_main$N = /* @__PURE__ */ defineComponent({
580
578
  __name: "AccordionCard",
581
579
  props: {
@@ -666,10 +664,10 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
666
664
  class: "ina-accordion-card__content",
667
665
  "aria-labelledby": headerId.value
668
666
  }, [
669
- createElementVNode("div", _hoisted_9$c, [
667
+ createElementVNode("div", _hoisted_9$b, [
670
668
  renderSlot(_ctx.$slots, "default", {}, void 0, true)
671
669
  ])
672
- ], 8, _hoisted_8$g)) : createCommentVNode("", true)
670
+ ], 8, _hoisted_8$f)) : createCommentVNode("", true)
673
671
  ]),
674
672
  _: 3
675
673
  })
@@ -951,73 +949,235 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
951
949
  }
952
950
  });
953
951
  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"
952
+ /**
953
+ * @license @tabler/icons-vue v3.35.0 - MIT
954
+ *
955
+ * This source code is licensed under the MIT license.
956
+ * See the LICENSE file in the root directory of this source tree.
957
+ */
958
+ var defaultAttributes = {
959
+ outline: {
960
+ xmlns: "http://www.w3.org/2000/svg",
961
+ width: 24,
962
+ height: 24,
963
+ viewBox: "0 0 24 24",
964
+ fill: "none",
965
+ stroke: "currentColor",
966
+ "stroke-width": 2,
967
+ "stroke-linecap": "round",
968
+ "stroke-linejoin": "round"
969
+ },
970
+ filled: {
971
+ xmlns: "http://www.w3.org/2000/svg",
972
+ width: 24,
973
+ height: 24,
974
+ viewBox: "0 0 24 24",
975
+ fill: "currentColor",
976
+ stroke: "none"
977
+ }
957
978
  };
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"
979
+ /**
980
+ * @license @tabler/icons-vue v3.35.0 - MIT
981
+ *
982
+ * This source code is licensed under the MIT license.
983
+ * See the LICENSE file in the root directory of this source tree.
984
+ */
985
+ const createVueComponent = (type, iconName, iconNamePascal, iconNode) => ({ color = "currentColor", size = 24, stroke = 2, title, class: classes, ...rest }, { attrs, slots }) => {
986
+ let children = [...iconNode.map((child) => h(...child)), ...slots.default ? [slots.default()] : []];
987
+ if (title)
988
+ children = [h("title", title), ...children];
989
+ return h(
990
+ "svg",
991
+ {
992
+ ...defaultAttributes[type],
993
+ width: size,
994
+ height: size,
995
+ ...attrs,
996
+ class: ["tabler-icon", `tabler-icon-${iconName}`],
997
+ ...type === "filled" ? {
998
+ fill: color
999
+ } : {
1000
+ "stroke-width": stroke ?? defaultAttributes[type]["stroke-width"],
1001
+ stroke: color
1002
+ },
1003
+ ...rest
1004
+ },
1005
+ children
1006
+ );
965
1007
  };
966
- const _hoisted_3$w = {
1008
+ /**
1009
+ * @license @tabler/icons-vue v3.35.0 - MIT
1010
+ *
1011
+ * This source code is licensed under the MIT license.
1012
+ * See the LICENSE file in the root directory of this source tree.
1013
+ */
1014
+ 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" }]]);
1015
+ /**
1016
+ * @license @tabler/icons-vue v3.35.0 - MIT
1017
+ *
1018
+ * This source code is licensed under the MIT license.
1019
+ * See the LICENSE file in the root directory of this source tree.
1020
+ */
1021
+ 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" }]]);
1022
+ /**
1023
+ * @license @tabler/icons-vue v3.35.0 - MIT
1024
+ *
1025
+ * This source code is licensed under the MIT license.
1026
+ * See the LICENSE file in the root directory of this source tree.
1027
+ */
1028
+ 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" }]]);
1029
+ /**
1030
+ * @license @tabler/icons-vue v3.35.0 - MIT
1031
+ *
1032
+ * This source code is licensed under the MIT license.
1033
+ * See the LICENSE file in the root directory of this source tree.
1034
+ */
1035
+ 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" }]]);
1036
+ /**
1037
+ * @license @tabler/icons-vue v3.35.0 - MIT
1038
+ *
1039
+ * This source code is licensed under the MIT license.
1040
+ * See the LICENSE file in the root directory of this source tree.
1041
+ */
1042
+ 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" }]]);
1043
+ /**
1044
+ * @license @tabler/icons-vue v3.35.0 - MIT
1045
+ *
1046
+ * This source code is licensed under the MIT license.
1047
+ * See the LICENSE file in the root directory of this source tree.
1048
+ */
1049
+ var IconCheck = createVueComponent("outline", "check", "Check", [["path", { "d": "M5 12l5 5l10 -10", "key": "svg-0" }]]);
1050
+ /**
1051
+ * @license @tabler/icons-vue v3.35.0 - MIT
1052
+ *
1053
+ * This source code is licensed under the MIT license.
1054
+ * See the LICENSE file in the root directory of this source tree.
1055
+ */
1056
+ var IconChevronDown = createVueComponent("outline", "chevron-down", "ChevronDown", [["path", { "d": "M6 9l6 6l6 -6", "key": "svg-0" }]]);
1057
+ /**
1058
+ * @license @tabler/icons-vue v3.35.0 - MIT
1059
+ *
1060
+ * This source code is licensed under the MIT license.
1061
+ * See the LICENSE file in the root directory of this source tree.
1062
+ */
1063
+ var IconChevronLeft = createVueComponent("outline", "chevron-left", "ChevronLeft", [["path", { "d": "M15 6l-6 6l6 6", "key": "svg-0" }]]);
1064
+ /**
1065
+ * @license @tabler/icons-vue v3.35.0 - MIT
1066
+ *
1067
+ * This source code is licensed under the MIT license.
1068
+ * See the LICENSE file in the root directory of this source tree.
1069
+ */
1070
+ var IconChevronRight = createVueComponent("outline", "chevron-right", "ChevronRight", [["path", { "d": "M9 6l6 6l-6 6", "key": "svg-0" }]]);
1071
+ /**
1072
+ * @license @tabler/icons-vue v3.35.0 - MIT
1073
+ *
1074
+ * This source code is licensed under the MIT license.
1075
+ * See the LICENSE file in the root directory of this source tree.
1076
+ */
1077
+ var IconChevronUp = createVueComponent("outline", "chevron-up", "ChevronUp", [["path", { "d": "M6 15l6 -6l6 6", "key": "svg-0" }]]);
1078
+ /**
1079
+ * @license @tabler/icons-vue v3.35.0 - MIT
1080
+ *
1081
+ * This source code is licensed under the MIT license.
1082
+ * See the LICENSE file in the root directory of this source tree.
1083
+ */
1084
+ 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" }]]);
1085
+ /**
1086
+ * @license @tabler/icons-vue v3.35.0 - MIT
1087
+ *
1088
+ * This source code is licensed under the MIT license.
1089
+ * See the LICENSE file in the root directory of this source tree.
1090
+ */
1091
+ 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" }]]);
1092
+ /**
1093
+ * @license @tabler/icons-vue v3.35.0 - MIT
1094
+ *
1095
+ * This source code is licensed under the MIT license.
1096
+ * See the LICENSE file in the root directory of this source tree.
1097
+ */
1098
+ 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" }]]);
1099
+ /**
1100
+ * @license @tabler/icons-vue v3.35.0 - MIT
1101
+ *
1102
+ * This source code is licensed under the MIT license.
1103
+ * See the LICENSE file in the root directory of this source tree.
1104
+ */
1105
+ 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" }]]);
1106
+ /**
1107
+ * @license @tabler/icons-vue v3.35.0 - MIT
1108
+ *
1109
+ * This source code is licensed under the MIT license.
1110
+ * See the LICENSE file in the root directory of this source tree.
1111
+ */
1112
+ 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" }]]);
1113
+ /**
1114
+ * @license @tabler/icons-vue v3.35.0 - MIT
1115
+ *
1116
+ * This source code is licensed under the MIT license.
1117
+ * See the LICENSE file in the root directory of this source tree.
1118
+ */
1119
+ var IconLoader2 = createVueComponent("outline", "loader-2", "Loader2", [["path", { "d": "M12 3a9 9 0 1 0 9 9", "key": "svg-0" }]]);
1120
+ /**
1121
+ * @license @tabler/icons-vue v3.35.0 - MIT
1122
+ *
1123
+ * This source code is licensed under the MIT license.
1124
+ * See the LICENSE file in the root directory of this source tree.
1125
+ */
1126
+ 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" }]]);
1127
+ /**
1128
+ * @license @tabler/icons-vue v3.35.0 - MIT
1129
+ *
1130
+ * This source code is licensed under the MIT license.
1131
+ * See the LICENSE file in the root directory of this source tree.
1132
+ */
1133
+ var IconRotateClockwise = createVueComponent("outline", "rotate-clockwise", "RotateClockwise", [["path", { "d": "M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5", "key": "svg-0" }]]);
1134
+ /**
1135
+ * @license @tabler/icons-vue v3.35.0 - MIT
1136
+ *
1137
+ * This source code is licensed under the MIT license.
1138
+ * See the LICENSE file in the root directory of this source tree.
1139
+ */
1140
+ 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" }]]);
1141
+ /**
1142
+ * @license @tabler/icons-vue v3.35.0 - MIT
1143
+ *
1144
+ * This source code is licensed under the MIT license.
1145
+ * See the LICENSE file in the root directory of this source tree.
1146
+ */
1147
+ 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" }]]);
1148
+ /**
1149
+ * @license @tabler/icons-vue v3.35.0 - MIT
1150
+ *
1151
+ * This source code is licensed under the MIT license.
1152
+ * See the LICENSE file in the root directory of this source tree.
1153
+ */
1154
+ 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" }]]);
1155
+ /**
1156
+ * @license @tabler/icons-vue v3.35.0 - MIT
1157
+ *
1158
+ * This source code is licensed under the MIT license.
1159
+ * See the LICENSE file in the root directory of this source tree.
1160
+ */
1161
+ var IconX = createVueComponent("outline", "x", "X", [["path", { "d": "M18 6l-12 12", "key": "svg-0" }], ["path", { "d": "M6 6l12 12", "key": "svg-1" }]]);
1162
+ const _hoisted_1$F = {
967
1163
  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"
1164
+ class: "ina-alert__icon"
973
1165
  };
1166
+ const _hoisted_2$A = { class: "ina-alert__content" };
1167
+ const _hoisted_3$w = { class: "ina-alert__text-section" };
974
1168
  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
1169
  key: 0,
1010
1170
  class: "ina-alert__title"
1011
1171
  };
1012
- const _hoisted_11$a = {
1172
+ const _hoisted_5$m = {
1013
1173
  key: 1,
1014
1174
  class: "ina-alert__description"
1015
1175
  };
1016
- const _hoisted_12$9 = {
1176
+ const _hoisted_6$j = {
1017
1177
  key: 2,
1018
1178
  class: "ina-alert__actions"
1019
1179
  };
1020
- const _hoisted_13$7 = ["aria-label"];
1180
+ const _hoisted_7$i = ["aria-label"];
1021
1181
  const _sfc_main$K = /* @__PURE__ */ defineComponent({
1022
1182
  __name: "Alert",
1023
1183
  props: {
@@ -1055,19 +1215,32 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
1055
1215
  __props.icon ? (openBlock(), createBlock(resolveDynamicComponent(__props.icon), {
1056
1216
  key: 0,
1057
1217
  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)
1218
+ })) : showVariantIcon.value && __props.variant === "neutral" ? (openBlock(), createBlock(unref(IconCube3dSphere), {
1219
+ key: 1,
1220
+ size: 20
1221
+ })) : showVariantIcon.value && __props.variant === "info" ? (openBlock(), createBlock(unref(IconInfoCircle), {
1222
+ key: 2,
1223
+ size: 20
1224
+ })) : showVariantIcon.value && __props.variant === "success" ? (openBlock(), createBlock(unref(IconCheck), {
1225
+ key: 3,
1226
+ size: 20
1227
+ })) : showVariantIcon.value && __props.variant === "caution" ? (openBlock(), createBlock(unref(IconAlertTriangle), {
1228
+ key: 4,
1229
+ size: 20
1230
+ })) : showVariantIcon.value && __props.variant === "critical" ? (openBlock(), createBlock(unref(IconAlertCircle), {
1231
+ key: 5,
1232
+ size: 20
1233
+ })) : createCommentVNode("", true)
1061
1234
  ])) : 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, [
1235
+ createElementVNode("div", _hoisted_2$A, [
1236
+ createElementVNode("div", _hoisted_3$w, [
1237
+ __props.title ? (openBlock(), createElementBlock("div", _hoisted_4$r, toDisplayString(__props.title), 1)) : createCommentVNode("", true),
1238
+ _ctx.$slots.default || __props.message ? (openBlock(), createElementBlock("div", _hoisted_5$m, [
1066
1239
  renderSlot(_ctx.$slots, "default", {}, () => [
1067
1240
  createTextVNode(toDisplayString(__props.message), 1)
1068
1241
  ])
1069
1242
  ])) : createCommentVNode("", true),
1070
- _ctx.$slots.actions ? (openBlock(), createElementBlock("div", _hoisted_12$9, [
1243
+ _ctx.$slots.actions ? (openBlock(), createElementBlock("div", _hoisted_6$j, [
1071
1244
  renderSlot(_ctx.$slots, "actions")
1072
1245
  ])) : createCommentVNode("", true)
1073
1246
  ])
@@ -1094,7 +1267,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
1094
1267
  "stroke-linejoin": "round"
1095
1268
  })
1096
1269
  ], -1)
1097
- ])], 8, _hoisted_13$7)) : createCommentVNode("", true)
1270
+ ])], 8, _hoisted_7$i)) : createCommentVNode("", true)
1098
1271
  ], 2);
1099
1272
  };
1100
1273
  }
@@ -1264,202 +1437,6 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
1264
1437
  };
1265
1438
  }
1266
1439
  });
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
1440
  const _hoisted_1$C = { class: "ina-breadcrumb__list" };
1464
1441
  const _hoisted_2$y = {
1465
1442
  key: 0,
@@ -10432,7 +10409,7 @@ const predefinedBrands = [
10432
10409
  "bgn",
10433
10410
  "bkn",
10434
10411
  "lan",
10435
- "pan-rb",
10412
+ "panrb",
10436
10413
  "default"
10437
10414
  ];
10438
10415
  let currentTheme = {