@uniformdev/design-system 19.61.1 → 19.62.0

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/esm/index.js CHANGED
@@ -562,7 +562,7 @@ var buttonGhostUnimportant = css`
562
562
  color: var(--gray-400);
563
563
  }
564
564
 
565
- ${buttonRippleEffect({ hoverColor: "var(--white)", activeColor: "var(--gray-500)" })}
565
+ ${buttonRippleEffect({ hoverColor: "var(--brand-secondary-2)", activeColor: "var(--gray-100)" })}
566
566
  `;
567
567
 
568
568
  // src/components/Input/styles/Inputs.styles.ts
@@ -19430,11 +19430,11 @@ var StatusError = css94`
19430
19430
  &:before {
19431
19431
  /* TODO: replace this with an svg icon */
19432
19432
  background: linear-gradient(
19433
- 120deg,
19434
- var(--error) 45%,
19435
- var(--white) 46%,
19436
- var(--white) 54%,
19437
- var(--error) 55%
19433
+ 133deg,
19434
+ var(--error) 41%,
19435
+ var(--white) 42%,
19436
+ var(--white) 58%,
19437
+ var(--error) 59%
19438
19438
  );
19439
19439
  }
19440
19440
  `;
@@ -19448,6 +19448,11 @@ var StatusOrphan = css94`
19448
19448
  background: var(--brand-secondary-5);
19449
19449
  }
19450
19450
  `;
19451
+ var StatusUnknown = css94`
19452
+ &:before {
19453
+ background: var(--brand-secondary-1);
19454
+ }
19455
+ `;
19451
19456
 
19452
19457
  // src/components/Validation/StatusBullet.tsx
19453
19458
  import { jsx as jsx115 } from "@emotion/react/jsx-runtime";
@@ -19465,7 +19470,8 @@ var StatusBullet = ({
19465
19470
  Orphan: StatusOrphan,
19466
19471
  Published: StatusPublished,
19467
19472
  Draft: StatusDraft,
19468
- Previous: StatusDraft
19473
+ Previous: StatusDraft,
19474
+ Unknown: StatusUnknown
19469
19475
  };
19470
19476
  const statusSize = size === "base" ? StatusBulletBase : StatusBulletSmall;
19471
19477
  return /* @__PURE__ */ jsx115(
package/dist/index.d.mts CHANGED
@@ -23168,7 +23168,7 @@ type ParagraphProps = {
23168
23168
  */
23169
23169
  declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23170
23170
 
23171
- type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous';
23171
+ type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown';
23172
23172
  type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23173
23173
  /** sets the current status */
23174
23174
  status: StatusTypeProps;
package/dist/index.d.ts CHANGED
@@ -23168,7 +23168,7 @@ type ParagraphProps = {
23168
23168
  */
23169
23169
  declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23170
23170
 
23171
- type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous';
23171
+ type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown';
23172
23172
  type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23173
23173
  /** sets the current status */
23174
23174
  status: StatusTypeProps;
package/dist/index.js CHANGED
@@ -2138,7 +2138,7 @@ var buttonGhostUnimportant = import_react3.css`
2138
2138
  color: var(--gray-400);
2139
2139
  }
2140
2140
 
2141
- ${buttonRippleEffect({ hoverColor: "var(--white)", activeColor: "var(--gray-500)" })}
2141
+ ${buttonRippleEffect({ hoverColor: "var(--brand-secondary-2)", activeColor: "var(--gray-100)" })}
2142
2142
  `;
2143
2143
 
2144
2144
  // src/components/Input/styles/Inputs.styles.ts
@@ -21239,11 +21239,11 @@ var StatusError = import_react135.css`
21239
21239
  &:before {
21240
21240
  /* TODO: replace this with an svg icon */
21241
21241
  background: linear-gradient(
21242
- 120deg,
21243
- var(--error) 45%,
21244
- var(--white) 46%,
21245
- var(--white) 54%,
21246
- var(--error) 55%
21242
+ 133deg,
21243
+ var(--error) 41%,
21244
+ var(--white) 42%,
21245
+ var(--white) 58%,
21246
+ var(--error) 59%
21247
21247
  );
21248
21248
  }
21249
21249
  `;
@@ -21257,6 +21257,11 @@ var StatusOrphan = import_react135.css`
21257
21257
  background: var(--brand-secondary-5);
21258
21258
  }
21259
21259
  `;
21260
+ var StatusUnknown = import_react135.css`
21261
+ &:before {
21262
+ background: var(--brand-secondary-1);
21263
+ }
21264
+ `;
21260
21265
 
21261
21266
  // src/components/Validation/StatusBullet.tsx
21262
21267
  var import_jsx_runtime115 = require("@emotion/react/jsx-runtime");
@@ -21274,7 +21279,8 @@ var StatusBullet = ({
21274
21279
  Orphan: StatusOrphan,
21275
21280
  Published: StatusPublished,
21276
21281
  Draft: StatusDraft,
21277
- Previous: StatusDraft
21282
+ Previous: StatusDraft,
21283
+ Unknown: StatusUnknown
21278
21284
  };
21279
21285
  const statusSize = size === "base" ? StatusBulletBase : StatusBulletSmall;
21280
21286
  return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "19.61.1",
3
+ "version": "19.62.0",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -23,8 +23,8 @@
23
23
  "@storybook/react": "6.5.16",
24
24
  "@types/react": "18.2.21",
25
25
  "@types/react-dom": "18.2.7",
26
- "@uniformdev/canvas": "^19.61.1",
27
- "@uniformdev/richtext": "^19.61.1",
26
+ "@uniformdev/canvas": "^19.62.0",
27
+ "@uniformdev/richtext": "^19.62.0",
28
28
  "autoprefixer": "10.4.16",
29
29
  "hygen": "6.2.11",
30
30
  "postcss": "8.4.31",
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "01ed7d10fd66f65c79caa4cf87a22080b3d7942b"
68
+ "gitHead": "dcaa272276caccfec3318d2a028cf4efa8a569a8"
69
69
  }