@codeandfunction/callaloo 1.13.3 → 1.13.6

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 (36) hide show
  1. package/dist/assets/index.css +1 -1
  2. package/dist/index.d.ts +29 -29
  3. package/dist/index.js +82 -78
  4. package/dist/index.js.map +1 -1
  5. package/package.json +1 -1
  6. /package/dist/components/Assets/{Icon.vue.d.ts → CLIcon.vue.d.ts} +0 -0
  7. /package/dist/components/Buttons/{A11yButton.vue.d.ts → CLA11yButton.vue.d.ts} +0 -0
  8. /package/dist/components/Buttons/{Button.vue.d.ts → CLButton.vue.d.ts} +0 -0
  9. /package/dist/components/Containers/{Card.vue.d.ts → CLCard.vue.d.ts} +0 -0
  10. /package/dist/components/Containers/{Disclosure.vue.d.ts → CLDisclosure.vue.d.ts} +0 -0
  11. /package/dist/components/Containers/Carousel/{Carousel.vue.d.ts → CLCarousel.vue.d.ts} +0 -0
  12. /package/dist/components/Containers/Carousel/{CarouselNavigation.vue.d.ts → CLCarouselNavigation.vue.d.ts} +0 -0
  13. /package/dist/components/Containers/Carousel/{CarouselSlide.vue.d.ts → CLCarouselSlide.vue.d.ts} +0 -0
  14. /package/dist/components/Form/{Checkbox.vue.d.ts → CLCheckbox.vue.d.ts} +0 -0
  15. /package/dist/components/Form/{Input.vue.d.ts → CLInput.vue.d.ts} +0 -0
  16. /package/dist/components/Form/{InputMessages.vue.d.ts → CLInputMessages.vue.d.ts} +0 -0
  17. /package/dist/components/Form/{RadioButton.vue.d.ts → CLRadioButton.vue.d.ts} +0 -0
  18. /package/dist/components/Form/{Select.vue.d.ts → CLSelect.vue.d.ts} +0 -0
  19. /package/dist/components/Form/{TextArea.vue.d.ts → CLTextArea.vue.d.ts} +0 -0
  20. /package/dist/components/Indicators/{Badge.vue.d.ts → CLBadge.vue.d.ts} +0 -0
  21. /package/dist/components/Indicators/{Banner.vue.d.ts → CLBanner.vue.d.ts} +0 -0
  22. /package/dist/components/Loading/{Skeleton.vue.d.ts → CLSkeleton.vue.d.ts} +0 -0
  23. /package/dist/components/Loading/{Spinner.vue.d.ts → CLSpinner.vue.d.ts} +0 -0
  24. /package/dist/components/Navigation/{Link.vue.d.ts → CLLink.vue.d.ts} +0 -0
  25. /package/dist/components/Navigation/{NavLink.vue.d.ts → CLNavLink.vue.d.ts} +0 -0
  26. /package/dist/components/Navigation/{NavSection.vue.d.ts → CLNavSection.vue.d.ts} +0 -0
  27. /package/dist/components/Popups/{DropdownMenu.vue.d.ts → CLDropdownMenu.vue.d.ts} +0 -0
  28. /package/dist/components/Table/{Table.vue.d.ts → CLTable.vue.d.ts} +0 -0
  29. /package/dist/components/Table/{TableBody.vue.d.ts → CLTableBody.vue.d.ts} +0 -0
  30. /package/dist/components/Table/{TableCell.vue.d.ts → CLTableCell.vue.d.ts} +0 -0
  31. /package/dist/components/Table/{TableFooter.vue.d.ts → CLTableFooter.vue.d.ts} +0 -0
  32. /package/dist/components/Table/{TableHeader.vue.d.ts → CLTableHeader.vue.d.ts} +0 -0
  33. /package/dist/components/Table/{TableNestedCell.vue.d.ts → CLTableNestedCell.vue.d.ts} +0 -0
  34. /package/dist/components/Table/{TableRow.vue.d.ts → CLTableRow.vue.d.ts} +0 -0
  35. /package/dist/components/Typography/{Heading.vue.d.ts → CLHeading.vue.d.ts} +0 -0
  36. /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 },
@@ -2150,39 +2150,43 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
2150
2150
  createTextVNode(toDisplayString(_ctx.prefix), 1)
2151
2151
  ], 64))
2152
2152
  ], 2)) : createCommentVNode("", true),
2153
- withDirectives(createElementVNode("input", {
2154
- id: _ctx.id,
2155
- ref_key: "inputElem",
2156
- ref: inputElem,
2157
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedColor.value = $event),
2158
- name: _ctx.name,
2159
- "aria-label": _ctx.ariaLabel,
2160
- autocomplete: _ctx.autoComplete ? "on" : "off",
2161
- class: normalizeClass([
2162
- `${cssPrefix$4}__input`,
2163
- { "--input-group": _ctx.grouped || _ctx.prefix || _ctx.suffix }
2164
- ]),
2165
- disabled: _ctx.disabled,
2166
- form: _ctx.form,
2167
- maxlength: _ctx.maxLength,
2168
- minlength: _ctx.minLength,
2169
- pattern: _ctx.pattern,
2170
- placeholder: _ctx.placeholder,
2171
- readonly: _ctx.readonly,
2172
- required: _ctx.required,
2173
- spellcheck: _ctx.spellCheck,
2174
- type: _ctx.type,
2175
- onBlur: _cache[1] || (_cache[1] = //@ts-ignore
2176
- (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
2177
- onChange: _cache[2] || (_cache[2] = //@ts-ignore
2178
- (...args) => _ctx.onChange && _ctx.onChange(...args)),
2179
- onFocus: _cache[3] || (_cache[3] = //@ts-ignore
2180
- (...args) => _ctx.onFocus && _ctx.onFocus(...args)),
2181
- onInput: _cache[4] || (_cache[4] = //@ts-ignore
2182
- (...args) => _ctx.onInput && _ctx.onInput(...args))
2183
- }, null, 42, _hoisted_3$4), [
2184
- [vModelDynamic, selectedColor.value]
2185
- ]),
2153
+ createElementVNode("span", {
2154
+ class: normalizeClass(`${cssPrefix$4}__input-border-control`)
2155
+ }, [
2156
+ withDirectives(createElementVNode("input", {
2157
+ id: _ctx.id,
2158
+ ref_key: "inputElem",
2159
+ ref: inputElem,
2160
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedColor.value = $event),
2161
+ name: _ctx.name,
2162
+ "aria-label": _ctx.ariaLabel,
2163
+ autocomplete: _ctx.autoComplete ? "on" : "off",
2164
+ class: normalizeClass([
2165
+ `${cssPrefix$4}__input`,
2166
+ { "--input-group": _ctx.grouped || _ctx.prefix || _ctx.suffix }
2167
+ ]),
2168
+ disabled: _ctx.disabled,
2169
+ form: _ctx.form,
2170
+ maxlength: _ctx.maxLength,
2171
+ minlength: _ctx.minLength,
2172
+ pattern: _ctx.pattern,
2173
+ placeholder: _ctx.placeholder,
2174
+ readonly: _ctx.readonly,
2175
+ required: _ctx.required,
2176
+ spellcheck: _ctx.spellCheck,
2177
+ type: _ctx.type,
2178
+ onBlur: _cache[1] || (_cache[1] = //@ts-ignore
2179
+ (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
2180
+ onChange: _cache[2] || (_cache[2] = //@ts-ignore
2181
+ (...args) => _ctx.onChange && _ctx.onChange(...args)),
2182
+ onFocus: _cache[3] || (_cache[3] = //@ts-ignore
2183
+ (...args) => _ctx.onFocus && _ctx.onFocus(...args)),
2184
+ onInput: _cache[4] || (_cache[4] = //@ts-ignore
2185
+ (...args) => _ctx.onInput && _ctx.onInput(...args))
2186
+ }, null, 42, _hoisted_3$4), [
2187
+ [vModelDynamic, selectedColor.value]
2188
+ ])
2189
+ ], 2),
2186
2190
  _ctx.type === unref(InputTypes).Color ? (openBlock(), createElementBlock("span", {
2187
2191
  key: 1,
2188
2192
  class: normalizeClass(`${cssPrefix$4}__selected-color`)
@@ -2235,7 +2239,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
2235
2239
  ...{
2236
2240
  name: "CLLink"
2237
2241
  },
2238
- __name: "Link",
2242
+ __name: "CLLink",
2239
2243
  props: {
2240
2244
  ariaLabel: {},
2241
2245
  external: { type: Boolean, default: false },
@@ -3975,7 +3979,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
3975
3979
  ...{
3976
3980
  name: "CLDropdownMenu"
3977
3981
  },
3978
- __name: "DropdownMenu",
3982
+ __name: "CLDropdownMenu",
3979
3983
  props: {
3980
3984
  buttonAriaLabel: {},
3981
3985
  buttonBorderRadius: {},
@@ -3997,7 +4001,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
3997
4001
  },
3998
4002
  setup(__props) {
3999
4003
  useCssVars((_ctx) => ({
4000
- "0303caea": _ctx.zIndex
4004
+ "1c71c52c": _ctx.zIndex
4001
4005
  }));
4002
4006
  const props = __props;
4003
4007
  let toggleElem = ref();
@@ -4233,7 +4237,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
4233
4237
  ...{
4234
4238
  name: "CLNavLink"
4235
4239
  },
4236
- __name: "NavLink",
4240
+ __name: "CLNavLink",
4237
4241
  props: {
4238
4242
  ariaLabel: {},
4239
4243
  external: { type: Boolean, default: false },
@@ -4277,7 +4281,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
4277
4281
  ...{
4278
4282
  name: "CLNavSection"
4279
4283
  },
4280
- __name: "NavSection",
4284
+ __name: "CLNavSection",
4281
4285
  props: {
4282
4286
  navItems: {},
4283
4287
  testId: { default: "clll-nav-section" },
@@ -4414,7 +4418,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
4414
4418
  ...{
4415
4419
  name: "CLRadioButton"
4416
4420
  },
4417
- __name: "RadioButton",
4421
+ __name: "CLRadioButton",
4418
4422
  props: {
4419
4423
  ariaLabel: {},
4420
4424
  borderRadius: {},
@@ -4528,7 +4532,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
4528
4532
  ...{
4529
4533
  name: "CLSelect"
4530
4534
  },
4531
- __name: "Select",
4535
+ __name: "CLSelect",
4532
4536
  props: {
4533
4537
  ariaLabel: {},
4534
4538
  borderRadius: {},
@@ -4655,7 +4659,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
4655
4659
  ...{
4656
4660
  name: "CLSkeleton"
4657
4661
  },
4658
- __name: "Skeleton",
4662
+ __name: "CLSkeleton",
4659
4663
  props: {
4660
4664
  borderRadius: {},
4661
4665
  height: { default: "100%" },
@@ -4665,8 +4669,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
4665
4669
  },
4666
4670
  setup(__props) {
4667
4671
  useCssVars((_ctx) => ({
4668
- "6e020419": _ctx.width,
4669
- "386f8534": _ctx.height
4672
+ "0bc2c4df": _ctx.width,
4673
+ "52c6dd2e": _ctx.height
4670
4674
  }));
4671
4675
  return (_ctx, _cache) => {
4672
4676
  return openBlock(), createElementBlock("div", {
@@ -4690,7 +4694,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
4690
4694
  ...{
4691
4695
  name: "CLSpinner"
4692
4696
  },
4693
- __name: "Spinner",
4697
+ __name: "CLSpinner",
4694
4698
  props: {
4695
4699
  align: { default: Align.Left },
4696
4700
  position: { default: Position.Absolute },
@@ -4743,7 +4747,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
4743
4747
  ...{
4744
4748
  name: "CLTable"
4745
4749
  },
4746
- __name: "Table",
4750
+ __name: "CLTable",
4747
4751
  props: {
4748
4752
  bordered: { type: Boolean },
4749
4753
  borderRadius: {},
@@ -4758,7 +4762,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
4758
4762
  },
4759
4763
  setup(__props) {
4760
4764
  useCssVars((_ctx) => ({
4761
- "5efe810c": _ctx.rowHeight
4765
+ "514abee8": _ctx.rowHeight
4762
4766
  }));
4763
4767
  return (_ctx, _cache) => {
4764
4768
  return openBlock(), createElementBlock("div", {
@@ -4801,7 +4805,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
4801
4805
  ...{
4802
4806
  name: "CLTableBody"
4803
4807
  },
4804
- __name: "TableBody",
4808
+ __name: "CLTableBody",
4805
4809
  setup(__props) {
4806
4810
  return (_ctx, _cache) => {
4807
4811
  return openBlock(), createElementBlock("tbody", {
@@ -4820,7 +4824,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4820
4824
  ...{
4821
4825
  name: "CLTableCell"
4822
4826
  },
4823
- __name: "TableCell",
4827
+ __name: "CLTableCell",
4824
4828
  props: {
4825
4829
  colSpan: { default: 1 },
4826
4830
  isAction: { type: Boolean, default: false },
@@ -4881,7 +4885,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
4881
4885
  ...{
4882
4886
  name: "CLTableFooter"
4883
4887
  },
4884
- __name: "TableFooter",
4888
+ __name: "CLTableFooter",
4885
4889
  setup(__props) {
4886
4890
  return (_ctx, _cache) => {
4887
4891
  return openBlock(), createElementBlock("tfoot", {
@@ -4898,7 +4902,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
4898
4902
  ...{
4899
4903
  name: "CLTableHeader"
4900
4904
  },
4901
- __name: "TableHeader",
4905
+ __name: "CLTableHeader",
4902
4906
  setup(__props) {
4903
4907
  return (_ctx, _cache) => {
4904
4908
  return openBlock(), createElementBlock("thead", {
@@ -4912,7 +4916,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
4912
4916
 
4913
4917
  const prefix$3 = "clll-table__nested-cell";
4914
4918
  const _sfc_main$4 = /* @__PURE__ */ defineComponent({
4915
- __name: "TableNestedCell",
4919
+ __name: "CLTableNestedCell",
4916
4920
  props: {
4917
4921
  truncate: { type: Boolean }
4918
4922
  },
@@ -4940,7 +4944,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
4940
4944
  ...{
4941
4945
  name: "CLTableRow"
4942
4946
  },
4943
- __name: "TableRow",
4947
+ __name: "CLTableRow",
4944
4948
  props: {
4945
4949
  onClick: { type: Function }
4946
4950
  },
@@ -5022,7 +5026,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
5022
5026
  ...{
5023
5027
  name: "CLTextArea"
5024
5028
  },
5025
- __name: "TextArea",
5029
+ __name: "CLTextArea",
5026
5030
  props: {
5027
5031
  ariaLabel: {},
5028
5032
  autoComplete: { type: Boolean },
@@ -5359,5 +5363,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
5359
5363
  }
5360
5364
  })();
5361
5365
 
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 };
5366
+ 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
5367
  //# sourceMappingURL=index.js.map