@codeandfunction/callaloo 1.13.2 → 1.13.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.
Files changed (37) hide show
  1. package/README.md +1 -0
  2. package/dist/assets/index.css +1 -1
  3. package/dist/index.d.ts +29 -29
  4. package/dist/index.js +45 -45
  5. package/dist/index.js.map +1 -1
  6. package/package.json +4 -4
  7. /package/dist/components/Assets/{Icon.vue.d.ts → CLIcon.vue.d.ts} +0 -0
  8. /package/dist/components/Buttons/{A11yButton.vue.d.ts → CLA11yButton.vue.d.ts} +0 -0
  9. /package/dist/components/Buttons/{Button.vue.d.ts → CLButton.vue.d.ts} +0 -0
  10. /package/dist/components/Containers/{Card.vue.d.ts → CLCard.vue.d.ts} +0 -0
  11. /package/dist/components/Containers/{Disclosure.vue.d.ts → CLDisclosure.vue.d.ts} +0 -0
  12. /package/dist/components/Containers/Carousel/{Carousel.vue.d.ts → CLCarousel.vue.d.ts} +0 -0
  13. /package/dist/components/Containers/Carousel/{CarouselNavigation.vue.d.ts → CLCarouselNavigation.vue.d.ts} +0 -0
  14. /package/dist/components/Containers/Carousel/{CarouselSlide.vue.d.ts → CLCarouselSlide.vue.d.ts} +0 -0
  15. /package/dist/components/Form/{Checkbox.vue.d.ts → CLCheckbox.vue.d.ts} +0 -0
  16. /package/dist/components/Form/{Input.vue.d.ts → CLInput.vue.d.ts} +0 -0
  17. /package/dist/components/Form/{InputMessages.vue.d.ts → CLInputMessages.vue.d.ts} +0 -0
  18. /package/dist/components/Form/{RadioButton.vue.d.ts → CLRadioButton.vue.d.ts} +0 -0
  19. /package/dist/components/Form/{Select.vue.d.ts → CLSelect.vue.d.ts} +0 -0
  20. /package/dist/components/Form/{TextArea.vue.d.ts → CLTextArea.vue.d.ts} +0 -0
  21. /package/dist/components/Indicators/{Badge.vue.d.ts → CLBadge.vue.d.ts} +0 -0
  22. /package/dist/components/Indicators/{Banner.vue.d.ts → CLBanner.vue.d.ts} +0 -0
  23. /package/dist/components/Loading/{Skeleton.vue.d.ts → CLSkeleton.vue.d.ts} +0 -0
  24. /package/dist/components/Loading/{Spinner.vue.d.ts → CLSpinner.vue.d.ts} +0 -0
  25. /package/dist/components/Navigation/{Link.vue.d.ts → CLLink.vue.d.ts} +0 -0
  26. /package/dist/components/Navigation/{NavLink.vue.d.ts → CLNavLink.vue.d.ts} +0 -0
  27. /package/dist/components/Navigation/{NavSection.vue.d.ts → CLNavSection.vue.d.ts} +0 -0
  28. /package/dist/components/Popups/{DropdownMenu.vue.d.ts → CLDropdownMenu.vue.d.ts} +0 -0
  29. /package/dist/components/Table/{Table.vue.d.ts → CLTable.vue.d.ts} +0 -0
  30. /package/dist/components/Table/{TableBody.vue.d.ts → CLTableBody.vue.d.ts} +0 -0
  31. /package/dist/components/Table/{TableCell.vue.d.ts → CLTableCell.vue.d.ts} +0 -0
  32. /package/dist/components/Table/{TableFooter.vue.d.ts → CLTableFooter.vue.d.ts} +0 -0
  33. /package/dist/components/Table/{TableHeader.vue.d.ts → CLTableHeader.vue.d.ts} +0 -0
  34. /package/dist/components/Table/{TableNestedCell.vue.d.ts → CLTableNestedCell.vue.d.ts} +0 -0
  35. /package/dist/components/Table/{TableRow.vue.d.ts → CLTableRow.vue.d.ts} +0 -0
  36. /package/dist/components/Typography/{Heading.vue.d.ts → CLHeading.vue.d.ts} +0 -0
  37. /package/dist/components/Typography/{Text.vue.d.ts → CLText.vue.d.ts} +0 -0
package/dist/index.d.ts CHANGED
@@ -1,34 +1,34 @@
1
1
  export { Align as CLAlign, BorderRadius as CLBorderRadius, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, IconSizes as CLIconSizes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget, MessageType as CLMessageType, Orientation as CLOrientation, Order as CLOrder, PaginationType as CLPaginationType, Placement as CLPlacement, Position as CLPosition, Sizes as CLSizes, TableTypes as CLTableTypes, TextTypes as CLTextTypes, Themes as CLThemes, } from './types';
2
2
  export type { BadgeThemes as CLBadgeThemes, BannerProps as CLBannerProps, CardProps as CLCardProps, HeadingThemes as CLHeadingThemes, InputThemes as CLInputThemes, GenericFunction as CLGenericFunction, GenericFocusFunction as CLGenericFocusFunction, NavItem as CLNavItem, PillThemes as CLPillThemes, Option as CLOption, SimpleThemes as CLSimpleThemes, SpinnerThemes as CLSpinnerThemes, ToastProps as CLToastProps, TextThemes as CLTextThemes, TextHtmlTags as CLTextHtmlTags, } from './types';
3
- export { default as CLA11yButton } from './components/Buttons/A11yButton.vue';
4
- export { default as CLBadge } from './components/Indicators/Badge.vue';
5
- export { default as CLBanner } from './components/Indicators/Banner.vue';
6
- export { default as CLButton } from './components/Buttons/Button.vue';
7
- export { default as CLCard } from './components/Containers/Card.vue';
8
- export { default as CLCarousel } from './components/Containers/Carousel/Carousel.vue';
9
- export { default as CLCarouselSlide } from './components/Containers/Carousel/CarouselSlide.vue';
10
- export { default as CLCheckbox } from './components/Form/Checkbox.vue';
11
- export { default as CLDisclosure } from './components/Containers/Disclosure.vue';
12
- export { default as CLHeading } from './components/Typography/Heading.vue';
13
- export { default as CLIcon } from './components/Assets/Icon.vue';
14
- export { default as CLInput } from './components/Form/Input.vue';
15
- export { default as CLLink } from './components/Navigation/Link.vue';
16
- export { default as CLDropdownMenu } from './components/Popups/DropdownMenu.vue';
3
+ export { default as CLA11yButton } from './components/Buttons/CLA11yButton.vue';
4
+ export { default as CLBadge } from './components/Indicators/CLBadge.vue';
5
+ export { default as CLBanner } from './components/Indicators/CLBanner.vue';
6
+ export { default as CLButton } from './components/Buttons/CLButton.vue';
7
+ export { default as CLCard } from './components/Containers/CLCard.vue';
8
+ export { default as CLCarousel } from './components/Containers/Carousel/CLCarousel.vue';
9
+ export { default as CLCarouselSlide } from './components/Containers/Carousel/CLCarouselSlide.vue';
10
+ export { default as CLCheckbox } from './components/Form/CLCheckbox.vue';
11
+ export { default as CLDisclosure } from './components/Containers/CLDisclosure.vue';
12
+ export { default as CLHeading } from './components/Typography/CLHeading.vue';
13
+ export { default as CLIcon } from './components/Assets/CLIcon.vue';
14
+ export { default as CLInput } from './components/Form/CLInput.vue';
15
+ export { default as CLLink } from './components/Navigation/CLLink.vue';
16
+ export { default as CLDropdownMenu } from './components/Popups/CLDropdownMenu.vue';
17
17
  export { default as CLModal } from './components/Modals/CLModal.vue';
18
- export { default as CLNavLink } from './components/Navigation/NavLink.vue';
19
- export { default as CLNavSection } from './components/Navigation/NavSection.vue';
18
+ export { default as CLNavLink } from './components/Navigation/CLNavLink.vue';
19
+ export { default as CLNavSection } from './components/Navigation/CLNavSection.vue';
20
20
  export { default as CLPill } from './components/Indicators/Pill.vue';
21
- export { default as CLRadioButton } from './components/Form/RadioButton.vue';
22
- export { default as CLSelect } from './components/Form/Select.vue';
23
- export { default as CLSkeleton } from './components/Loading/Skeleton.vue';
24
- export { default as CLSpinner } from './components/Loading/Spinner.vue';
25
- export { default as CLTable } from './components/Table/Table.vue';
26
- export { default as CLTableBody } from './components/Table/TableBody.vue';
27
- export { default as CLTableCell } from './components/Table/TableCell.vue';
28
- export { default as CLTableFooter } from './components/Table/TableFooter.vue';
29
- export { default as CLTableHeader } from './components/Table/TableHeader.vue';
30
- export { default as CLTableNestedCell } from './components/Table/TableNestedCell.vue';
31
- export { default as CLTableRow } from './components/Table/TableRow.vue';
32
- export { default as CLText } from './components/Typography/Text.vue';
33
- export { default as CLTextArea } from './components/Form/TextArea.vue';
21
+ export { default as CLRadioButton } from './components/Form/CLRadioButton.vue';
22
+ export { default as CLSelect } from './components/Form/CLSelect.vue';
23
+ export { default as CLSkeleton } from './components/Loading/CLSkeleton.vue';
24
+ export { default as CLSpinner } from './components/Loading/CLSpinner.vue';
25
+ export { default as CLTable } from './components/Table/CLTable.vue';
26
+ export { default as CLTableBody } from './components/Table/CLTableBody.vue';
27
+ export { default as CLTableCell } from './components/Table/CLTableCell.vue';
28
+ export { default as CLTableFooter } from './components/Table/CLTableFooter.vue';
29
+ export { default as CLTableHeader } from './components/Table/CLTableHeader.vue';
30
+ export { default as CLTableNestedCell } from './components/Table/CLTableNestedCell.vue';
31
+ export { default as CLTableRow } from './components/Table/CLTableRow.vue';
32
+ export { default as CLText } from './components/Typography/CLText.vue';
33
+ export { default as CLTextArea } from './components/Form/CLTextArea.vue';
34
34
  export { default as CLToast } from './components/Popups/Toast.vue';
package/dist/index.js CHANGED
@@ -387,7 +387,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
387
387
  ...{
388
388
  name: "CLA11yButton"
389
389
  },
390
- __name: "A11yButton",
390
+ __name: "CLA11yButton",
391
391
  props: {
392
392
  enabled: { type: Boolean, default: false },
393
393
  fluid: { type: Boolean, default: true },
@@ -443,7 +443,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
443
443
  ...{
444
444
  name: "CLBadge"
445
445
  },
446
- __name: "Badge",
446
+ __name: "CLBadge",
447
447
  props: {
448
448
  borderRadius: {},
449
449
  count: {},
@@ -488,7 +488,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
488
488
  ...{
489
489
  name: "CLBanner"
490
490
  },
491
- __name: "Banner",
491
+ __name: "CLBanner",
492
492
  props: {
493
493
  align: { default: Align.Left },
494
494
  ariaLabel: {},
@@ -506,8 +506,8 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
506
506
  },
507
507
  setup(__props) {
508
508
  useCssVars((_ctx) => ({
509
- "15c7fd74": _ctx.width,
510
- "ed2e918e": _ctx.height
509
+ "36332bac": _ctx.width,
510
+ "c3d03d7a": _ctx.height
511
511
  }));
512
512
  const props = __props;
513
513
  const getTextTheme = () => {
@@ -599,7 +599,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
599
599
  "on-click": _ctx.onDismiss,
600
600
  size: unref(Sizes).Tiny,
601
601
  "test-id": `${prefix$m}__dismiss-button`,
602
- theme: unref(Themes).Transparent
602
+ theme: _ctx.theme
603
603
  }, null, 8, ["icon-before", "icon-size", "on-click", "size", "test-id", "theme"])
604
604
  ], 2)) : createCommentVNode("", true),
605
605
  _ctx.onClick && _ctx.ariaLabel ? (openBlock(), createElementBlock("button", {
@@ -921,8 +921,8 @@ const __default__ = {
921
921
  };
922
922
  const __injectCSSVars__ = () => {
923
923
  useCssVars((_ctx) => ({
924
- "a75d9dd0": _ctx.width,
925
- "77f40fd6": _ctx.height
924
+ "2132e270": _ctx.width,
925
+ "294b1c86": _ctx.height
926
926
  }));
927
927
  };
928
928
  const __setup__ = __default__.setup;
@@ -939,7 +939,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
939
939
  ...{
940
940
  name: "CLCard"
941
941
  },
942
- __name: "Card",
942
+ __name: "CLCard",
943
943
  props: {
944
944
  active: { type: Boolean, default: false },
945
945
  align: { default: Align.Left },
@@ -969,10 +969,10 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
969
969
  },
970
970
  setup(__props) {
971
971
  useCssVars((_ctx) => ({
972
- "3b7caaf9": _ctx.width,
973
- "1a49ba54": _ctx.height,
974
- "6059ffd8": _ctx.imageWidth,
975
- "ddd1fd56": _ctx.imageHeight
972
+ "724da3d4": _ctx.width,
973
+ "0b04ca52": _ctx.height,
974
+ "4ad3e6db": _ctx.imageWidth,
975
+ "144c0a9c": _ctx.imageHeight
976
976
  }));
977
977
  const slots = useSlots();
978
978
  const props = __props;
@@ -1183,7 +1183,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
1183
1183
  });
1184
1184
 
1185
1185
  const _sfc_main$s = /* @__PURE__ */ defineComponent({
1186
- __name: "CarouselNavigation",
1186
+ __name: "CLCarouselNavigation",
1187
1187
  props: {
1188
1188
  currentPage: {},
1189
1189
  enabled: { type: Boolean },
@@ -1292,7 +1292,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
1292
1292
  ...{
1293
1293
  name: "CLCarousel"
1294
1294
  },
1295
- __name: "Carousel",
1295
+ __name: "CLCarousel",
1296
1296
  props: {
1297
1297
  controlAlign: { default: Align.Right },
1298
1298
  controlPosition: { default: Order.Before },
@@ -1309,8 +1309,8 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
1309
1309
  },
1310
1310
  setup(__props) {
1311
1311
  useCssVars((_ctx) => ({
1312
- "16f7868f": _ctx.width,
1313
- "2550b928": slideWidth.value
1312
+ "102ebf92": _ctx.width,
1313
+ "67da9449": slideWidth.value
1314
1314
  }));
1315
1315
  const props = __props;
1316
1316
  const currentPage = ref(1);
@@ -1598,11 +1598,11 @@ function _sfc_render(_ctx, _cache) {
1598
1598
  renderSlot(_ctx.$slots, "default")
1599
1599
  ]))
1600
1600
  }
1601
- const CarouselSlide = /*#__PURE__*/_export_sfc(_sfc_main$q, [['render',_sfc_render]]);
1601
+ const CLCarouselSlide = /*#__PURE__*/_export_sfc(_sfc_main$q, [['render',_sfc_render]]);
1602
1602
 
1603
1603
  const cssPrefix$5 = "clll-input__message";
1604
1604
  const _sfc_main$p = /* @__PURE__ */ defineComponent({
1605
- __name: "InputMessages",
1605
+ __name: "CLInputMessages",
1606
1606
  props: {
1607
1607
  id: {},
1608
1608
  messages: {},
@@ -1654,7 +1654,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
1654
1654
  ...{
1655
1655
  name: "CLCheckbox"
1656
1656
  },
1657
- __name: "Checkbox",
1657
+ __name: "CLCheckbox",
1658
1658
  props: {
1659
1659
  ariaLabel: {},
1660
1660
  borderRadius: {},
@@ -1793,7 +1793,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
1793
1793
  ...{
1794
1794
  name: "CLDisclosure"
1795
1795
  },
1796
- __name: "Disclosure",
1796
+ __name: "CLDisclosure",
1797
1797
  props: {
1798
1798
  borderRadius: { default: BorderRadius.Medium },
1799
1799
  compact: { type: Boolean },
@@ -1973,7 +1973,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
1973
1973
  ...{
1974
1974
  name: "CLIcon"
1975
1975
  },
1976
- __name: "Icon",
1976
+ __name: "CLIcon",
1977
1977
  props: {
1978
1978
  name: {},
1979
1979
  size: { default: IconSizes.Small },
@@ -1981,7 +1981,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
1981
1981
  },
1982
1982
  setup(__props) {
1983
1983
  useCssVars((_ctx) => ({
1984
- "dcfdeb8a": iconSizes[_ctx.size]
1984
+ "2ffe45b4": iconSizes[_ctx.size]
1985
1985
  }));
1986
1986
  const iconSizes = {
1987
1987
  [IconSizes.Tiny]: 18,
@@ -2023,7 +2023,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
2023
2023
  ...{
2024
2024
  name: "CLInput"
2025
2025
  },
2026
- __name: "Input",
2026
+ __name: "CLInput",
2027
2027
  props: {
2028
2028
  ariaLabel: {},
2029
2029
  autoComplete: { type: Boolean },
@@ -2235,7 +2235,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
2235
2235
  ...{
2236
2236
  name: "CLLink"
2237
2237
  },
2238
- __name: "Link",
2238
+ __name: "CLLink",
2239
2239
  props: {
2240
2240
  ariaLabel: {},
2241
2241
  external: { type: Boolean, default: false },
@@ -3975,7 +3975,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
3975
3975
  ...{
3976
3976
  name: "CLDropdownMenu"
3977
3977
  },
3978
- __name: "DropdownMenu",
3978
+ __name: "CLDropdownMenu",
3979
3979
  props: {
3980
3980
  buttonAriaLabel: {},
3981
3981
  buttonBorderRadius: {},
@@ -3997,7 +3997,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
3997
3997
  },
3998
3998
  setup(__props) {
3999
3999
  useCssVars((_ctx) => ({
4000
- "0303caea": _ctx.zIndex
4000
+ "1c71c52c": _ctx.zIndex
4001
4001
  }));
4002
4002
  const props = __props;
4003
4003
  let toggleElem = ref();
@@ -4233,7 +4233,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
4233
4233
  ...{
4234
4234
  name: "CLNavLink"
4235
4235
  },
4236
- __name: "NavLink",
4236
+ __name: "CLNavLink",
4237
4237
  props: {
4238
4238
  ariaLabel: {},
4239
4239
  external: { type: Boolean, default: false },
@@ -4277,7 +4277,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
4277
4277
  ...{
4278
4278
  name: "CLNavSection"
4279
4279
  },
4280
- __name: "NavSection",
4280
+ __name: "CLNavSection",
4281
4281
  props: {
4282
4282
  navItems: {},
4283
4283
  testId: { default: "clll-nav-section" },
@@ -4414,7 +4414,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
4414
4414
  ...{
4415
4415
  name: "CLRadioButton"
4416
4416
  },
4417
- __name: "RadioButton",
4417
+ __name: "CLRadioButton",
4418
4418
  props: {
4419
4419
  ariaLabel: {},
4420
4420
  borderRadius: {},
@@ -4528,7 +4528,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
4528
4528
  ...{
4529
4529
  name: "CLSelect"
4530
4530
  },
4531
- __name: "Select",
4531
+ __name: "CLSelect",
4532
4532
  props: {
4533
4533
  ariaLabel: {},
4534
4534
  borderRadius: {},
@@ -4655,7 +4655,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
4655
4655
  ...{
4656
4656
  name: "CLSkeleton"
4657
4657
  },
4658
- __name: "Skeleton",
4658
+ __name: "CLSkeleton",
4659
4659
  props: {
4660
4660
  borderRadius: {},
4661
4661
  height: { default: "100%" },
@@ -4665,8 +4665,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
4665
4665
  },
4666
4666
  setup(__props) {
4667
4667
  useCssVars((_ctx) => ({
4668
- "6e020419": _ctx.width,
4669
- "386f8534": _ctx.height
4668
+ "0bc2c4df": _ctx.width,
4669
+ "52c6dd2e": _ctx.height
4670
4670
  }));
4671
4671
  return (_ctx, _cache) => {
4672
4672
  return openBlock(), createElementBlock("div", {
@@ -4690,7 +4690,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
4690
4690
  ...{
4691
4691
  name: "CLSpinner"
4692
4692
  },
4693
- __name: "Spinner",
4693
+ __name: "CLSpinner",
4694
4694
  props: {
4695
4695
  align: { default: Align.Left },
4696
4696
  position: { default: Position.Absolute },
@@ -4743,7 +4743,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
4743
4743
  ...{
4744
4744
  name: "CLTable"
4745
4745
  },
4746
- __name: "Table",
4746
+ __name: "CLTable",
4747
4747
  props: {
4748
4748
  bordered: { type: Boolean },
4749
4749
  borderRadius: {},
@@ -4758,7 +4758,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
4758
4758
  },
4759
4759
  setup(__props) {
4760
4760
  useCssVars((_ctx) => ({
4761
- "5efe810c": _ctx.rowHeight
4761
+ "514abee8": _ctx.rowHeight
4762
4762
  }));
4763
4763
  return (_ctx, _cache) => {
4764
4764
  return openBlock(), createElementBlock("div", {
@@ -4801,7 +4801,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
4801
4801
  ...{
4802
4802
  name: "CLTableBody"
4803
4803
  },
4804
- __name: "TableBody",
4804
+ __name: "CLTableBody",
4805
4805
  setup(__props) {
4806
4806
  return (_ctx, _cache) => {
4807
4807
  return openBlock(), createElementBlock("tbody", {
@@ -4820,7 +4820,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4820
4820
  ...{
4821
4821
  name: "CLTableCell"
4822
4822
  },
4823
- __name: "TableCell",
4823
+ __name: "CLTableCell",
4824
4824
  props: {
4825
4825
  colSpan: { default: 1 },
4826
4826
  isAction: { type: Boolean, default: false },
@@ -4881,7 +4881,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
4881
4881
  ...{
4882
4882
  name: "CLTableFooter"
4883
4883
  },
4884
- __name: "TableFooter",
4884
+ __name: "CLTableFooter",
4885
4885
  setup(__props) {
4886
4886
  return (_ctx, _cache) => {
4887
4887
  return openBlock(), createElementBlock("tfoot", {
@@ -4898,7 +4898,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
4898
4898
  ...{
4899
4899
  name: "CLTableHeader"
4900
4900
  },
4901
- __name: "TableHeader",
4901
+ __name: "CLTableHeader",
4902
4902
  setup(__props) {
4903
4903
  return (_ctx, _cache) => {
4904
4904
  return openBlock(), createElementBlock("thead", {
@@ -4912,7 +4912,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
4912
4912
 
4913
4913
  const prefix$3 = "clll-table__nested-cell";
4914
4914
  const _sfc_main$4 = /* @__PURE__ */ defineComponent({
4915
- __name: "TableNestedCell",
4915
+ __name: "CLTableNestedCell",
4916
4916
  props: {
4917
4917
  truncate: { type: Boolean }
4918
4918
  },
@@ -4940,7 +4940,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
4940
4940
  ...{
4941
4941
  name: "CLTableRow"
4942
4942
  },
4943
- __name: "TableRow",
4943
+ __name: "CLTableRow",
4944
4944
  props: {
4945
4945
  onClick: { type: Function }
4946
4946
  },
@@ -5022,7 +5022,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
5022
5022
  ...{
5023
5023
  name: "CLTextArea"
5024
5024
  },
5025
- __name: "TextArea",
5025
+ __name: "CLTextArea",
5026
5026
  props: {
5027
5027
  ariaLabel: {},
5028
5028
  autoComplete: { type: Boolean },
@@ -5359,5 +5359,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
5359
5359
  }
5360
5360
  })();
5361
5361
 
5362
- export { _sfc_main$w as CLA11yButton, Align as CLAlign, _sfc_main$v as CLBadge, _sfc_main$u as CLBanner, BorderRadius as CLBorderRadius, __default__ as CLButton, ButtonTypes as CLButtonTypes, _sfc_main$t as CLCard, CardTypes as CLCardTypes, _sfc_main$r as CLCarousel, CarouselSlide as CLCarouselSlide, _sfc_main$o as CLCheckbox, DarkMode as CLDarkMode, _sfc_main$n as CLDisclosure, _sfc_main$i as CLDropdownMenu, _sfc_main$m as CLHeading, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, _sfc_main$l as CLIcon, IconNames as CLIconNames, IconSizes as CLIconSizes, _sfc_main$k as CLInput, InputTypes as CLInputTypes, _sfc_main$j as CLLink, LinkTarget as CLLinkTarget, MessageType as CLMessageType, _sfc_main$h as CLModal, _sfc_main$g as CLNavLink, _sfc_main$f as CLNavSection, Order as CLOrder, Orientation as CLOrientation, PaginationType as CLPaginationType, _sfc_main$e as CLPill, Placement as CLPlacement, Position as CLPosition, _sfc_main$d as CLRadioButton, _sfc_main$c as CLSelect, Sizes as CLSizes, _sfc_main$b as CLSkeleton, _sfc_main$a as CLSpinner, _sfc_main$9 as CLTable, _sfc_main$8 as CLTableBody, _sfc_main$7 as CLTableCell, _sfc_main$6 as CLTableFooter, _sfc_main$5 as CLTableHeader, _sfc_main$4 as CLTableNestedCell, _sfc_main$3 as CLTableRow, TableTypes as CLTableTypes, _sfc_main$2 as CLText, _sfc_main$1 as CLTextArea, TextTypes as CLTextTypes, Themes as CLThemes, _sfc_main as CLToast };
5362
+ export { _sfc_main$w as CLA11yButton, Align as CLAlign, _sfc_main$v as CLBadge, _sfc_main$u as CLBanner, BorderRadius as CLBorderRadius, __default__ as CLButton, ButtonTypes as CLButtonTypes, _sfc_main$t as CLCard, CardTypes as CLCardTypes, _sfc_main$r as CLCarousel, CLCarouselSlide, _sfc_main$o as CLCheckbox, DarkMode as CLDarkMode, _sfc_main$n as CLDisclosure, _sfc_main$i as CLDropdownMenu, _sfc_main$m as CLHeading, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, _sfc_main$l as CLIcon, IconNames as CLIconNames, IconSizes as CLIconSizes, _sfc_main$k as CLInput, InputTypes as CLInputTypes, _sfc_main$j as CLLink, LinkTarget as CLLinkTarget, MessageType as CLMessageType, _sfc_main$h as CLModal, _sfc_main$g as CLNavLink, _sfc_main$f as CLNavSection, Order as CLOrder, Orientation as CLOrientation, PaginationType as CLPaginationType, _sfc_main$e as CLPill, Placement as CLPlacement, Position as CLPosition, _sfc_main$d as CLRadioButton, _sfc_main$c as CLSelect, Sizes as CLSizes, _sfc_main$b as CLSkeleton, _sfc_main$a as CLSpinner, _sfc_main$9 as CLTable, _sfc_main$8 as CLTableBody, _sfc_main$7 as CLTableCell, _sfc_main$6 as CLTableFooter, _sfc_main$5 as CLTableHeader, _sfc_main$4 as CLTableNestedCell, _sfc_main$3 as CLTableRow, TableTypes as CLTableTypes, _sfc_main$2 as CLText, _sfc_main$1 as CLTextArea, TextTypes as CLTextTypes, Themes as CLThemes, _sfc_main as CLToast };
5363
5363
  //# sourceMappingURL=index.js.map