@powerhousedao/design-system 5.0.0-staging.17 → 5.0.0-staging.19

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 (45) hide show
  1. package/dist/src/connect/components/drop-zone/use-upload-tracker.js +1 -1
  2. package/dist/src/connect/components/drop-zone/use-upload-tracker.js.map +1 -1
  3. package/dist/src/connect/components/drop-zone/utils.d.ts +1 -1
  4. package/dist/src/connect/components/drop-zone/utils.d.ts.map +1 -1
  5. package/dist/src/connect/components/drop-zone/utils.js +2 -0
  6. package/dist/src/connect/components/drop-zone/utils.js.map +1 -1
  7. package/dist/src/connect/components/revision-history/header/branch.js +1 -1
  8. package/dist/src/connect/components/revision-history/header/branch.js.map +1 -1
  9. package/dist/src/connect/components/revision-history/header/doc-id.js +1 -1
  10. package/dist/src/connect/components/revision-history/header/doc-id.js.map +1 -1
  11. package/dist/src/connect/components/revision-history/header/document-state.d.ts +6 -0
  12. package/dist/src/connect/components/revision-history/header/document-state.d.ts.map +1 -0
  13. package/dist/src/connect/components/revision-history/header/document-state.js +19 -0
  14. package/dist/src/connect/components/revision-history/header/document-state.js.map +1 -0
  15. package/dist/src/connect/components/revision-history/header/header.d.ts +2 -0
  16. package/dist/src/connect/components/revision-history/header/header.d.ts.map +1 -1
  17. package/dist/src/connect/components/revision-history/header/header.js +3 -2
  18. package/dist/src/connect/components/revision-history/header/header.js.map +1 -1
  19. package/dist/src/connect/components/revision-history/revision-history.d.ts +2 -0
  20. package/dist/src/connect/components/revision-history/revision-history.d.ts.map +1 -1
  21. package/dist/src/connect/components/revision-history/revision-history.js +2 -2
  22. package/dist/src/connect/components/revision-history/revision-history.js.map +1 -1
  23. package/dist/src/connect/components/revision-history/utils.d.ts.map +1 -1
  24. package/dist/src/connect/components/revision-history/utils.js +4 -0
  25. package/dist/src/connect/components/revision-history/utils.js.map +1 -1
  26. package/dist/src/connect/components/upload-file-item/components/error-details.d.ts.map +1 -1
  27. package/dist/src/connect/components/upload-file-item/components/error-details.js +2 -1
  28. package/dist/src/connect/components/upload-file-item/components/error-details.js.map +1 -1
  29. package/dist/src/connect/components/upload-file-item/components/status-row.d.ts.map +1 -1
  30. package/dist/src/connect/components/upload-file-item/components/status-row.js +3 -0
  31. package/dist/src/connect/components/upload-file-item/components/status-row.js.map +1 -1
  32. package/dist/src/connect/components/upload-file-item/upload-file-item.d.ts +1 -1
  33. package/dist/src/connect/components/upload-file-item/upload-file-item.d.ts.map +1 -1
  34. package/dist/src/connect/components/upload-file-item/upload-file-item.js.map +1 -1
  35. package/dist/src/powerhouse/components/icon-components/CurlyBrackets.d.ts +3 -0
  36. package/dist/src/powerhouse/components/icon-components/CurlyBrackets.d.ts.map +1 -0
  37. package/dist/src/powerhouse/components/icon-components/CurlyBrackets.js +5 -0
  38. package/dist/src/powerhouse/components/icon-components/CurlyBrackets.js.map +1 -0
  39. package/dist/src/powerhouse/components/icon-components/index.d.ts +1 -1
  40. package/dist/src/powerhouse/components/icon-components/index.d.ts.map +1 -1
  41. package/dist/src/powerhouse/components/icon-components/index.js +3 -0
  42. package/dist/src/powerhouse/components/icon-components/index.js.map +1 -1
  43. package/dist/style.css +93 -0
  44. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  45. package/package.json +5 -5
package/dist/style.css CHANGED
@@ -740,6 +740,7 @@
740
740
  --color-zinc-200: oklch(92% 0.004 286.32);
741
741
  --color-zinc-500: oklch(55.2% 0.016 285.938);
742
742
  --color-zinc-600: oklch(44.2% 0.017 285.786);
743
+ --color-stone-300: oklch(86.9% 0.005 56.366);
743
744
  --color-black: hsl(0 0% 0%);
744
745
  --color-white: hsl(0 0% 100%);
745
746
  --spacing: 0.25rem;
@@ -2479,6 +2480,9 @@
2479
2480
  .text-slate-800 {
2480
2481
  color: var(--color-slate-800);
2481
2482
  }
2483
+ .text-stone-300 {
2484
+ color: var(--color-stone-300);
2485
+ }
2482
2486
  .text-white {
2483
2487
  color: var(--color-white);
2484
2488
  }
@@ -4322,6 +4326,95 @@ input[type="number"] {
4322
4326
  cursor: pointer;
4323
4327
  }
4324
4328
  }
4329
+ .ph-default-styles h1 {
4330
+ font-family: "Inter", sans-serif;
4331
+ font-style: normal;
4332
+ font-weight: 600;
4333
+ font-size: 32px;
4334
+ line-height: 120%;
4335
+ color: #343839;
4336
+ }
4337
+ .ph-default-styles h2 {
4338
+ font-family: "Inter", sans-serif;
4339
+ font-style: normal;
4340
+ font-weight: 600;
4341
+ font-size: 24px;
4342
+ line-height: 120%;
4343
+ color: #343839;
4344
+ }
4345
+ .ph-default-styles h3 {
4346
+ font-family: "Inter", sans-serif;
4347
+ font-style: normal;
4348
+ font-weight: 600;
4349
+ font-size: 20px;
4350
+ line-height: 120%;
4351
+ color: #343839;
4352
+ }
4353
+ .ph-default-styles p {
4354
+ font-family: "Inter", sans-serif;
4355
+ font-style: normal;
4356
+ font-weight: 400;
4357
+ font-size: 16px;
4358
+ line-height: 120%;
4359
+ color: #343839;
4360
+ }
4361
+ .ph-default-styles small {
4362
+ font-family: "Inter", sans-serif;
4363
+ font-style: normal;
4364
+ font-weight: 400;
4365
+ font-size: 14px;
4366
+ line-height: 100%;
4367
+ color: #474d4e;
4368
+ }
4369
+ .ph-default-styles input[type="text"], .ph-default-styles input[type="email"], .ph-default-styles input[type="password"], .ph-default-styles input[type="search"], .ph-default-styles input[type="tel"], .ph-default-styles input[type="url"], .ph-default-styles input[type="number"], .ph-default-styles textarea {
4370
+ font-family: "Inter", sans-serif;
4371
+ font-size: 0.875rem;
4372
+ font-weight: 400;
4373
+ line-height: 1.25rem;
4374
+ color: #343839;
4375
+ background-color: #ffffff;
4376
+ border: 1px solid #ced4da;
4377
+ border-radius: 0.375rem;
4378
+ padding: 7px 0.75rem;
4379
+ width: 100%;
4380
+ box-sizing: border-box;
4381
+ margin-bottom: 10px;
4382
+ }
4383
+ .ph-default-styles textarea {
4384
+ min-height: 2.25rem;
4385
+ resize: vertical;
4386
+ }
4387
+ .ph-default-styles a {
4388
+ color: #007bff;
4389
+ text-decoration: none;
4390
+ }
4391
+ .ph-default-styles a:hover {
4392
+ text-decoration: underline;
4393
+ color: #0056b3;
4394
+ }
4395
+ .ph-default-styles a:focus {
4396
+ outline: 2px solid transparent;
4397
+ outline-offset: 2px;
4398
+ box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(0, 123, 255, 0.5);
4399
+ }
4400
+ .ph-default-styles ul, .ph-default-styles ol {
4401
+ padding-left: 0px;
4402
+ margin-top: 0;
4403
+ margin-bottom: 0;
4404
+ }
4405
+ .ph-default-styles label {
4406
+ display: block;
4407
+ font-family: "Inter", sans-serif;
4408
+ font-weight: 500;
4409
+ color: #343839;
4410
+ }
4411
+ .ph-default-styles hr {
4412
+ border: 0;
4413
+ height: 1px;
4414
+ background-color: #ced4da;
4415
+ margin-top: 1rem;
4416
+ margin-bottom: 1rem;
4417
+ }
4325
4418
  @layer base {
4326
4419
  * {
4327
4420
  scrollbar-color: initial;