@dt-dds/react-tag 1.0.0-beta.45 → 1.0.0-beta.47

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @dt-ui/react-tag
2
2
 
3
+ ## 1.0.0-beta.47
4
+
5
+ ### Patch Changes
6
+
7
+ - chore(dependencies): upgrade builders versions
8
+ - Updated dependencies
9
+ - @dt-dds/react-core@1.0.0-beta.45
10
+ - @dt-dds/react-tooltip@1.0.0-beta.53
11
+ - @dt-dds/themes@1.0.0-beta.5
12
+
13
+ ## 1.0.0-beta.46
14
+
15
+ ### Patch Changes
16
+
17
+ - refactor(themes): consolidate theme structure
18
+ - Updated dependencies
19
+ - @dt-dds/react-core@1.0.0-beta.44
20
+ - @dt-dds/react-tooltip@1.0.0-beta.52
21
+ - @dt-dds/themes@1.0.0-beta.4
22
+
3
23
  ## 1.0.0-beta.45
4
24
 
5
25
  ### Minor Changes
@@ -0,0 +1,39 @@
1
+ import { CustomTheme } from '@dt-dds/themes';
2
+ import * as react from 'react';
3
+ import { ComponentSize, BaseProps } from '@dt-dds/react-core';
4
+ import { TooltipBackground } from '@dt-dds/react-tooltip';
5
+
6
+ type TagColor = 'primary' | 'secondary' | 'informative' | 'warning' | 'success' | 'error';
7
+ type TagVariant = 'solid' | 'outlined';
8
+ type TagBorder = 'rounded' | 'squared';
9
+ type TagSize = Extract<ComponentSize, 'small' | 'medium'>;
10
+
11
+ type TagProps = {
12
+ variant?: TagVariant;
13
+ color?: TagColor;
14
+ border?: TagBorder;
15
+ size?: TagSize;
16
+ isDisabled?: boolean;
17
+ isClickable?: boolean;
18
+ onClick?: (event: React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>) => void;
19
+ onClose?: (event: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void;
20
+ tooltipVariant?: TooltipBackground;
21
+ } & BaseProps;
22
+ declare const Tag: react.ForwardRefExoticComponent<{
23
+ variant?: TagVariant | undefined;
24
+ color?: TagColor | undefined;
25
+ border?: TagBorder | undefined;
26
+ size?: TagSize | undefined;
27
+ isDisabled?: boolean | undefined;
28
+ isClickable?: boolean | undefined;
29
+ onClick?: ((event: React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>) => void) | undefined;
30
+ onClose?: ((event: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
31
+ tooltipVariant?: TooltipBackground | undefined;
32
+ } & BaseProps & react.RefAttributes<HTMLDivElement>>;
33
+
34
+ declare module '@emotion/react' {
35
+ interface Theme extends CustomTheme {
36
+ }
37
+ }
38
+
39
+ export { Tag, type TagBorder, type TagColor, type TagProps, type TagSize, type TagVariant };
package/dist/index.d.ts CHANGED
@@ -36,4 +36,4 @@ declare module '@emotion/react' {
36
36
  }
37
37
  }
38
38
 
39
- export { Tag, TagBorder, TagColor, TagProps, TagSize, TagVariant };
39
+ export { Tag, type TagBorder, type TagColor, type TagProps, type TagSize, type TagVariant };
package/dist/index.js CHANGED
@@ -45,11 +45,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
45
45
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
46
46
 
47
47
  // index.ts
48
- var tag_exports = {};
49
- __export(tag_exports, {
48
+ var index_exports = {};
49
+ __export(index_exports, {
50
50
  Tag: () => Tag
51
51
  });
52
- module.exports = __toCommonJS(tag_exports);
52
+ module.exports = __toCommonJS(index_exports);
53
53
 
54
54
  // src/Tag.tsx
55
55
  var import_react_tooltip = require("@dt-dds/react-tooltip");
@@ -282,7 +282,7 @@ var tagVariantColors = ({
282
282
  const colors = getColors(variant, theme, isDisabled, color);
283
283
  return {
284
284
  solid: __spreadValues({
285
- border: theme.spacing.none,
285
+ border: theme.spacing.spacing_0,
286
286
  color: theme.palette.content.contrast,
287
287
  backgroundColor: colors == null ? void 0 : colors.bgColor
288
288
  }, hasHover && {
@@ -311,14 +311,14 @@ var tagSizeStyles = (theme, size) => ({
311
311
  fontSize: "0.75rem",
312
312
  fontWeight: "700",
313
313
  lineHeight: "1rem",
314
- padding: `${theme.spacing["4xs"]} ${theme.spacing["3xs"]}`,
314
+ padding: `${theme.spacing.spacing_30} ${theme.spacing.spacing_40}`,
315
315
  height: "32px"
316
316
  },
317
317
  small: {
318
318
  fontSize: "0.625rem",
319
319
  fontWeight: "700",
320
320
  lineHeight: "0.875rem",
321
- padding: `${theme.spacing["6xs"]} ${theme.spacing["4xs"]}`,
321
+ padding: `${theme.spacing.spacing_10} ${theme.spacing.spacing_30}`,
322
322
  height: "18px"
323
323
  }
324
324
  })[size];
@@ -340,8 +340,8 @@ var TagStyled = import_styled.default.div(
340
340
  textTransform: "uppercase",
341
341
  alignItems: "center",
342
342
  maxWidth: "max-content",
343
- gap: theme.spacing["5xs"],
344
- borderRadius: theme.radius[border === "rounded" ? "s" : "none"],
343
+ gap: theme.spacing.spacing_20,
344
+ borderRadius: theme.radius[border === "rounded" ? "radius_70" : "radius_0"],
345
345
  width: "150px",
346
346
  ["> :first-child"]: {
347
347
  whiteSpace: "nowrap",
package/dist/index.mjs CHANGED
@@ -249,7 +249,7 @@ var tagVariantColors = ({
249
249
  const colors = getColors(variant, theme, isDisabled, color);
250
250
  return {
251
251
  solid: __spreadValues({
252
- border: theme.spacing.none,
252
+ border: theme.spacing.spacing_0,
253
253
  color: theme.palette.content.contrast,
254
254
  backgroundColor: colors == null ? void 0 : colors.bgColor
255
255
  }, hasHover && {
@@ -278,14 +278,14 @@ var tagSizeStyles = (theme, size) => ({
278
278
  fontSize: "0.75rem",
279
279
  fontWeight: "700",
280
280
  lineHeight: "1rem",
281
- padding: `${theme.spacing["4xs"]} ${theme.spacing["3xs"]}`,
281
+ padding: `${theme.spacing.spacing_30} ${theme.spacing.spacing_40}`,
282
282
  height: "32px"
283
283
  },
284
284
  small: {
285
285
  fontSize: "0.625rem",
286
286
  fontWeight: "700",
287
287
  lineHeight: "0.875rem",
288
- padding: `${theme.spacing["6xs"]} ${theme.spacing["4xs"]}`,
288
+ padding: `${theme.spacing.spacing_10} ${theme.spacing.spacing_30}`,
289
289
  height: "18px"
290
290
  }
291
291
  })[size];
@@ -307,8 +307,8 @@ var TagStyled = styled.div(
307
307
  textTransform: "uppercase",
308
308
  alignItems: "center",
309
309
  maxWidth: "max-content",
310
- gap: theme.spacing["5xs"],
311
- borderRadius: theme.radius[border === "rounded" ? "s" : "none"],
310
+ gap: theme.spacing.spacing_20,
311
+ borderRadius: theme.radius[border === "rounded" ? "radius_70" : "radius_0"],
312
312
  width: "150px",
313
313
  ["> :first-child"]: {
314
314
  whiteSpace: "nowrap",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-tag",
3
- "version": "1.0.0-beta.45",
3
+ "version": "1.0.0-beta.47",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,9 +20,9 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-core": "1.0.0-beta.43",
24
- "@dt-dds/react-tooltip": "1.0.0-beta.51",
25
- "@dt-dds/themes": "1.0.0-beta.3"
23
+ "@dt-dds/react-core": "1.0.0-beta.45",
24
+ "@dt-dds/react-tooltip": "1.0.0-beta.53",
25
+ "@dt-dds/themes": "1.0.0-beta.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@babel/core": "^7.22.9",
@@ -43,7 +43,7 @@
43
43
  "react": "^18.1.0",
44
44
  "react-dom": "^18.2.0",
45
45
  "tsconfig": "*",
46
- "tsup": "^6.6.3",
46
+ "tsup": "^8.5.0",
47
47
  "typescript": "^4.5.3"
48
48
  },
49
49
  "peerDependencies": {