@sellmate/design-system-react 1.0.23 → 1.0.24

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.
@@ -502,12 +502,10 @@ export const SdTabs = /*@__PURE__*/ createComponent({
502
502
  export const SdTag = /*@__PURE__*/ createComponent({
503
503
  tagName: 'sd-tag',
504
504
  properties: {
505
- size: 'size',
506
- color: 'color',
507
- rounded: 'rounded',
505
+ name: 'name',
508
506
  label: 'label',
509
- bgColor: 'bg-color',
510
- textColor: 'text-color'
507
+ icon: 'icon',
508
+ isLeft: 'is-left'
511
509
  },
512
510
  hydrateModule: import('@sellmate/design-system/hydrate'),
513
511
  clientModule: clientComponents.SdTag,
package/dist/index.d.ts CHANGED
@@ -2,4 +2,4 @@ export * from './components/components.js';
2
2
  export { defineCustomElements } from '@sellmate/design-system/loader';
3
3
  export { SdTable } from './SdTable';
4
4
  export type { SdTableProps } from './SdTable';
5
- export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, ButtonV2Name, DropdownButtonItem, DropdownButtonName, DropdownButtonSize, DropdownButtonValue, Rule, ValidatableField, SdModalCardButtonProps, SdTooltipProps, TagColor, TagSize, ToastType, CheckedType, Type as DateBoxType, TabOption, } from '@sellmate/design-system';
5
+ export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, ButtonV2Name, DropdownButtonItem, DropdownButtonName, DropdownButtonSize, DropdownButtonValue, Rule, ValidatableField, SdModalCardButtonProps, SdTooltipProps, TagName, ToastType, CheckedType, Type as DateBoxType, TabOption, } from '@sellmate/design-system';
@@ -706,12 +706,10 @@ export type SdTagEvents = NonNullable<unknown>;
706
706
  export const SdTag: StencilReactComponent<SdTagElement, SdTagEvents> = /*@__PURE__*/ createComponent<SdTagElement, SdTagEvents>({
707
707
  tagName: 'sd-tag',
708
708
  properties: {
709
- size: 'size',
710
- color: 'color',
711
- rounded: 'rounded',
709
+ name: 'name',
712
710
  label: 'label',
713
- bgColor: 'bg-color',
714
- textColor: 'text-color'
711
+ icon: 'icon',
712
+ isLeft: 'is-left'
715
713
  },
716
714
  hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
717
715
  clientModule: clientComponents.SdTag as ReactWebComponent<SdTagElement, SdTagEvents>,
package/lib/index.ts CHANGED
@@ -36,8 +36,7 @@ export type {
36
36
  // Tooltip types
37
37
  SdTooltipProps,
38
38
  // Tag types
39
- TagColor,
40
- TagSize,
39
+ TagName,
41
40
  // Toast types
42
41
  ToastType,
43
42
  // Checkbox types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-react",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Design System - React Component Wrappers",
5
5
  "keywords": [
6
6
  "react",
@@ -54,7 +54,7 @@
54
54
  "dev": "tsc --watch"
55
55
  },
56
56
  "dependencies": {
57
- "@sellmate/design-system": "^1.0.22",
57
+ "@sellmate/design-system": "^1.0.23",
58
58
  "@stencil/react-output-target": "^1.2.0"
59
59
  },
60
60
  "peerDependencies": {