@powerhousedao/network-admin 0.0.13 → 0.0.14

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 (2) hide show
  1. package/dist/style.css +243 -0
  2. package/package.json +14 -14
package/dist/style.css CHANGED
@@ -95,6 +95,10 @@
95
95
  --color-gray-700: oklch(37.3% 0.034 259.733);
96
96
  --color-gray-800: oklch(27.8% 0.033 256.848);
97
97
  --color-gray-900: oklch(21% 0.034 264.665);
98
+ --color-zinc-50: oklch(98.5% 0 0);
99
+ --color-zinc-200: oklch(92% 0.004 286.32);
100
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
101
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
98
102
  --color-black: #000;
99
103
  --color-white: #fff;
100
104
  --spacing: 0.25rem;
@@ -133,6 +137,7 @@
133
137
  --radius-xl: 0.75rem;
134
138
  --radius-2xl: 1rem;
135
139
  --radius-3xl: 1.5rem;
140
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
136
141
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
137
142
  --animate-spin: spin 1s linear infinite;
138
143
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -2144,6 +2149,10 @@
2144
2149
  --color-gray-700: hsl(189 5% 29%);
2145
2150
  --color-gray-800: hsl(200 4% 26%);
2146
2151
  --color-gray-900: hsl(192 5% 21%);
2152
+ --color-zinc-50: oklch(98.5% 0 0);
2153
+ --color-zinc-200: oklch(92% 0.004 286.32);
2154
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
2155
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
2147
2156
  --color-black: hsl(0 0% 0%);
2148
2157
  --color-white: hsl(0 0% 100%);
2149
2158
  --spacing: 0.25rem;
@@ -2173,6 +2182,7 @@
2173
2182
  --radius-xl: 0.75rem;
2174
2183
  --radius-2xl: 1rem;
2175
2184
  --radius-3xl: 1.5rem;
2185
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
2176
2186
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
2177
2187
  --animate-spin: spin 1s linear infinite;
2178
2188
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -2429,6 +2439,9 @@
2429
2439
  .right-3 {
2430
2440
  right: calc(var(--spacing) * 3);
2431
2441
  }
2442
+ .right-4 {
2443
+ right: calc(var(--spacing) * 4);
2444
+ }
2432
2445
  .right-5 {
2433
2446
  right: calc(var(--spacing) * 5);
2434
2447
  }
@@ -2438,9 +2451,15 @@
2438
2451
  .right-\[0px\] {
2439
2452
  right: 0px;
2440
2453
  }
2454
+ .-bottom-16 {
2455
+ bottom: calc(var(--spacing) * -16);
2456
+ }
2441
2457
  .bottom-0 {
2442
2458
  bottom: calc(var(--spacing) * 0);
2443
2459
  }
2460
+ .bottom-4 {
2461
+ bottom: calc(var(--spacing) * 4);
2462
+ }
2444
2463
  .bottom-5 {
2445
2464
  bottom: calc(var(--spacing) * 5);
2446
2465
  }
@@ -2486,6 +2505,12 @@
2486
2505
  .z-\[20\] {
2487
2506
  z-index: 20;
2488
2507
  }
2508
+ .z-\[1000\] {
2509
+ z-index: 1000;
2510
+ }
2511
+ .z-\[1001\] {
2512
+ z-index: 1001;
2513
+ }
2489
2514
  .container {
2490
2515
  width: 100%;
2491
2516
  @media (width >= 40rem) {
@@ -2739,9 +2764,15 @@
2739
2764
  .h-0\.5 {
2740
2765
  height: calc(var(--spacing) * 0.5);
2741
2766
  }
2767
+ .h-2 {
2768
+ height: calc(var(--spacing) * 2);
2769
+ }
2742
2770
  .h-3 {
2743
2771
  height: calc(var(--spacing) * 3);
2744
2772
  }
2773
+ .h-4 {
2774
+ height: calc(var(--spacing) * 4);
2775
+ }
2745
2776
  .h-5 {
2746
2777
  height: calc(var(--spacing) * 5);
2747
2778
  }
@@ -2790,6 +2821,9 @@
2790
2821
  .h-\[17px\] {
2791
2822
  height: 17px;
2792
2823
  }
2824
+ .h-\[18px\] {
2825
+ height: 18px;
2826
+ }
2793
2827
  .h-\[22px\] {
2794
2828
  height: 22px;
2795
2829
  }
@@ -2805,6 +2839,9 @@
2805
2839
  .h-\[52px\] {
2806
2840
  height: 52px;
2807
2841
  }
2842
+ .h-\[130px\] {
2843
+ height: 130px;
2844
+ }
2808
2845
  .h-\[244px\] {
2809
2846
  height: 244px;
2810
2847
  }
@@ -2847,6 +2884,9 @@
2847
2884
  .max-h-\[370px\] {
2848
2885
  max-height: 370px;
2849
2886
  }
2887
+ .max-h-\[404px\] {
2888
+ max-height: 404px;
2889
+ }
2850
2890
  .max-h-screen {
2851
2891
  max-height: 100vh;
2852
2892
  }
@@ -2871,6 +2911,9 @@
2871
2911
  .min-h-full {
2872
2912
  min-height: 100%;
2873
2913
  }
2914
+ .min-h-screen {
2915
+ min-height: 100vh;
2916
+ }
2874
2917
  .w-\(--radix-popover-trigger-width\) {
2875
2918
  width: var(--radix-popover-trigger-width);
2876
2919
  }
@@ -2895,6 +2938,9 @@
2895
2938
  .w-6 {
2896
2939
  width: calc(var(--spacing) * 6);
2897
2940
  }
2941
+ .w-7 {
2942
+ width: calc(var(--spacing) * 7);
2943
+ }
2898
2944
  .w-8 {
2899
2945
  width: calc(var(--spacing) * 8);
2900
2946
  }
@@ -2919,6 +2965,9 @@
2919
2965
  .w-\[6px\] {
2920
2966
  width: 6px;
2921
2967
  }
2968
+ .w-\[18px\] {
2969
+ width: 18px;
2970
+ }
2922
2971
  .w-\[50px\] {
2923
2972
  width: 50px;
2924
2973
  }
@@ -2931,6 +2980,12 @@
2931
2980
  .w-\[320px\] {
2932
2981
  width: 320px;
2933
2982
  }
2983
+ .w-\[338px\] {
2984
+ width: 338px;
2985
+ }
2986
+ .w-\[358px\] {
2987
+ width: 358px;
2988
+ }
2934
2989
  .w-\[400px\] {
2935
2990
  width: 400px;
2936
2991
  }
@@ -3015,6 +3070,9 @@
3015
3070
  .flex-none {
3016
3071
  flex: none;
3017
3072
  }
3073
+ .flex-shrink-0 {
3074
+ flex-shrink: 0;
3075
+ }
3018
3076
  .shrink-0 {
3019
3077
  flex-shrink: 0;
3020
3078
  }
@@ -3039,6 +3097,9 @@
3039
3097
  .-rotate-90 {
3040
3098
  rotate: calc(90deg * -1);
3041
3099
  }
3100
+ .rotate-0 {
3101
+ rotate: 0deg;
3102
+ }
3042
3103
  .rotate-90 {
3043
3104
  rotate: 90deg;
3044
3105
  }
@@ -3126,6 +3187,9 @@
3126
3187
  .justify-start {
3127
3188
  justify-content: flex-start;
3128
3189
  }
3190
+ .gap-0\.5 {
3191
+ gap: calc(var(--spacing) * 0.5);
3192
+ }
3129
3193
  .gap-1 {
3130
3194
  gap: calc(var(--spacing) * 1);
3131
3195
  }
@@ -3206,12 +3270,18 @@
3206
3270
  .overflow-scroll {
3207
3271
  overflow: scroll;
3208
3272
  }
3273
+ .overflow-visible {
3274
+ overflow: visible;
3275
+ }
3209
3276
  .overflow-x-auto {
3210
3277
  overflow-x: auto;
3211
3278
  }
3212
3279
  .overflow-x-hidden {
3213
3280
  overflow-x: hidden;
3214
3281
  }
3282
+ .overflow-x-visible {
3283
+ overflow-x: visible;
3284
+ }
3215
3285
  .overflow-y-auto {
3216
3286
  overflow-y: auto;
3217
3287
  }
@@ -3227,6 +3297,9 @@
3227
3297
  .rounded-\[2px\] {
3228
3298
  border-radius: 2px;
3229
3299
  }
3300
+ .rounded-\[24px\] {
3301
+ border-radius: 24px;
3302
+ }
3230
3303
  .rounded-full {
3231
3304
  border-radius: calc(infinity * 1px);
3232
3305
  }
@@ -3320,6 +3393,9 @@
3320
3393
  --tw-border-style: solid;
3321
3394
  border-style: solid;
3322
3395
  }
3396
+ .border-black {
3397
+ border-color: var(--color-black);
3398
+ }
3323
3399
  .border-blue-600 {
3324
3400
  border-color: var(--color-blue-600);
3325
3401
  }
@@ -3365,6 +3441,9 @@
3365
3441
  .border-white {
3366
3442
  border-color: var(--color-white);
3367
3443
  }
3444
+ .border-zinc-200 {
3445
+ border-color: var(--color-zinc-200);
3446
+ }
3368
3447
  .border-b-gray-300 {
3369
3448
  border-bottom-color: var(--color-gray-300);
3370
3449
  }
@@ -3374,6 +3453,15 @@
3374
3453
  .bg-black {
3375
3454
  background-color: var(--color-black);
3376
3455
  }
3456
+ .bg-black\/50 {
3457
+ background-color: color-mix(in srgb, hsl(0 0% 0%) 50%, transparent);
3458
+ @supports (color: color-mix(in lab, red, red)) {
3459
+ background-color: color-mix(in srgb, #000 50%, transparent);
3460
+ @supports (color: color-mix(in lab, red, red)) {
3461
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
3462
+ }
3463
+ }
3464
+ }
3377
3465
  .bg-blue-100 {
3378
3466
  background-color: var(--color-blue-100);
3379
3467
  }
@@ -3473,6 +3561,9 @@
3473
3561
  .bg-white {
3474
3562
  background-color: var(--color-white);
3475
3563
  }
3564
+ .bg-zinc-50 {
3565
+ background-color: var(--color-zinc-50);
3566
+ }
3476
3567
  .object-contain {
3477
3568
  object-fit: contain;
3478
3569
  }
@@ -3542,6 +3633,9 @@
3542
3633
  .py-4 {
3543
3634
  padding-block: calc(var(--spacing) * 4);
3544
3635
  }
3636
+ .py-6 {
3637
+ padding-block: calc(var(--spacing) * 6);
3638
+ }
3545
3639
  .py-28 {
3546
3640
  padding-block: calc(var(--spacing) * 28);
3547
3641
  }
@@ -3705,6 +3799,9 @@
3705
3799
  .text-nowrap {
3706
3800
  text-wrap: nowrap;
3707
3801
  }
3802
+ .break-words {
3803
+ overflow-wrap: break-word;
3804
+ }
3708
3805
  .whitespace-nowrap {
3709
3806
  white-space: nowrap;
3710
3807
  }
@@ -3819,6 +3916,12 @@
3819
3916
  .text-yellow-900 {
3820
3917
  color: var(--color-yellow-900);
3821
3918
  }
3919
+ .text-zinc-500 {
3920
+ color: var(--color-zinc-500);
3921
+ }
3922
+ .text-zinc-600 {
3923
+ color: var(--color-zinc-600);
3924
+ }
3822
3925
  .capitalize {
3823
3926
  text-transform: capitalize;
3824
3927
  }
@@ -3847,10 +3950,18 @@
3847
3950
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
3848
3951
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3849
3952
  }
3953
+ .shadow-\[0_2px_12px_rgba\(37\,42\,52\,0\.1\)\] {
3954
+ --tw-shadow: 0 2px 12px var(--tw-shadow-color, rgba(37,42,52,0.1));
3955
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3956
+ }
3850
3957
  .shadow-\[1px_4px_15px_0px_rgba\(74\,88\,115\,0\.25\)\] {
3851
3958
  --tw-shadow: 1px 4px 15px 0px var(--tw-shadow-color, rgba(74,88,115,0.25));
3852
3959
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3853
3960
  }
3961
+ .shadow-\[1px_4px_15px_rgba\(74\,88\,115\,0\.25\)\] {
3962
+ --tw-shadow: 1px 4px 15px var(--tw-shadow-color, rgba(74,88,115,0.25));
3963
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3964
+ }
3854
3965
  .shadow-button {
3855
3966
  --tw-shadow: 0px -1px 1px 0px var(--tw-shadow-color, rgba(0, 0, 0, 0.04)) inset, 0px 2px 0px 0px var(--tw-shadow-color, rgba(255, 255, 255, 0.25)) inset, 0px 4px 8px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1));
3856
3967
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -3925,6 +4036,11 @@
3925
4036
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3926
4037
  transition-duration: var(--tw-duration, var(--default-transition-duration));
3927
4038
  }
4039
+ .transition-transform {
4040
+ transition-property: transform, translate, scale, rotate;
4041
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
4042
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
4043
+ }
3928
4044
  .duration-150 {
3929
4045
  --tw-duration: 150ms;
3930
4046
  transition-duration: 150ms;
@@ -3941,6 +4057,10 @@
3941
4057
  --tw-ease: var(--ease-in-out);
3942
4058
  transition-timing-function: var(--ease-in-out);
3943
4059
  }
4060
+ .ease-out {
4061
+ --tw-ease: var(--ease-out);
4062
+ transition-timing-function: var(--ease-out);
4063
+ }
3944
4064
  .outline-none {
3945
4065
  --tw-outline-style: none;
3946
4066
  outline-style: none;
@@ -7281,6 +7401,10 @@ input[type="number"] {
7281
7401
  --color-gray-700: oklch(37.3% 0.034 259.733);
7282
7402
  --color-gray-800: oklch(27.8% 0.033 256.848);
7283
7403
  --color-gray-900: oklch(21% 0.034 264.665);
7404
+ --color-zinc-50: oklch(98.5% 0 0);
7405
+ --color-zinc-200: oklch(92% 0.004 286.32);
7406
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
7407
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
7284
7408
  --color-black: #000;
7285
7409
  --color-white: #fff;
7286
7410
  --spacing: 0.25rem;
@@ -7316,6 +7440,7 @@ input[type="number"] {
7316
7440
  --radius-xl: 0.75rem;
7317
7441
  --radius-2xl: 1rem;
7318
7442
  --radius-3xl: 1.5rem;
7443
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
7319
7444
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
7320
7445
  --animate-spin: spin 1s linear infinite;
7321
7446
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -8894,6 +9019,10 @@ input[type="number"] {
8894
9019
  --color-gray-700: hsl(189 5% 29%);
8895
9020
  --color-gray-800: hsl(200 4% 26%);
8896
9021
  --color-gray-900: hsl(192 5% 21%);
9022
+ --color-zinc-50: oklch(98.5% 0 0);
9023
+ --color-zinc-200: oklch(92% 0.004 286.32);
9024
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
9025
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
8897
9026
  --color-black: hsl(0 0% 0%);
8898
9027
  --color-white: hsl(0 0% 100%);
8899
9028
  --spacing: 0.25rem;
@@ -8923,6 +9052,7 @@ input[type="number"] {
8923
9052
  --radius-xl: 0.75rem;
8924
9053
  --radius-2xl: 1rem;
8925
9054
  --radius-3xl: 1.5rem;
9055
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
8926
9056
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
8927
9057
  --animate-spin: spin 1s linear infinite;
8928
9058
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -9182,6 +9312,9 @@ input[type="number"] {
9182
9312
  .right-3 {
9183
9313
  right: calc(var(--spacing) * 3);
9184
9314
  }
9315
+ .right-4 {
9316
+ right: calc(var(--spacing) * 4);
9317
+ }
9185
9318
  .right-5 {
9186
9319
  right: calc(var(--spacing) * 5);
9187
9320
  }
@@ -9191,9 +9324,15 @@ input[type="number"] {
9191
9324
  .right-\[0px\] {
9192
9325
  right: 0px;
9193
9326
  }
9327
+ .-bottom-16 {
9328
+ bottom: calc(var(--spacing) * -16);
9329
+ }
9194
9330
  .bottom-0 {
9195
9331
  bottom: calc(var(--spacing) * 0);
9196
9332
  }
9333
+ .bottom-4 {
9334
+ bottom: calc(var(--spacing) * 4);
9335
+ }
9197
9336
  .bottom-5 {
9198
9337
  bottom: calc(var(--spacing) * 5);
9199
9338
  }
@@ -9239,6 +9378,12 @@ input[type="number"] {
9239
9378
  .z-\[20\] {
9240
9379
  z-index: 20;
9241
9380
  }
9381
+ .z-\[1000\] {
9382
+ z-index: 1000;
9383
+ }
9384
+ .z-\[1001\] {
9385
+ z-index: 1001;
9386
+ }
9242
9387
  .container {
9243
9388
  width: 100%;
9244
9389
  @media (width >= 40rem) {
@@ -9492,9 +9637,15 @@ input[type="number"] {
9492
9637
  .h-0\.5 {
9493
9638
  height: calc(var(--spacing) * 0.5);
9494
9639
  }
9640
+ .h-2 {
9641
+ height: calc(var(--spacing) * 2);
9642
+ }
9495
9643
  .h-3 {
9496
9644
  height: calc(var(--spacing) * 3);
9497
9645
  }
9646
+ .h-4 {
9647
+ height: calc(var(--spacing) * 4);
9648
+ }
9498
9649
  .h-5 {
9499
9650
  height: calc(var(--spacing) * 5);
9500
9651
  }
@@ -9543,6 +9694,9 @@ input[type="number"] {
9543
9694
  .h-\[17px\] {
9544
9695
  height: 17px;
9545
9696
  }
9697
+ .h-\[18px\] {
9698
+ height: 18px;
9699
+ }
9546
9700
  .h-\[22px\] {
9547
9701
  height: 22px;
9548
9702
  }
@@ -9558,6 +9712,9 @@ input[type="number"] {
9558
9712
  .h-\[52px\] {
9559
9713
  height: 52px;
9560
9714
  }
9715
+ .h-\[130px\] {
9716
+ height: 130px;
9717
+ }
9561
9718
  .h-\[244px\] {
9562
9719
  height: 244px;
9563
9720
  }
@@ -9600,6 +9757,9 @@ input[type="number"] {
9600
9757
  .max-h-\[370px\] {
9601
9758
  max-height: 370px;
9602
9759
  }
9760
+ .max-h-\[404px\] {
9761
+ max-height: 404px;
9762
+ }
9603
9763
  .max-h-screen {
9604
9764
  max-height: 100vh;
9605
9765
  }
@@ -9624,6 +9784,9 @@ input[type="number"] {
9624
9784
  .min-h-full {
9625
9785
  min-height: 100%;
9626
9786
  }
9787
+ .min-h-screen {
9788
+ min-height: 100vh;
9789
+ }
9627
9790
  .w-\(--radix-popover-trigger-width\) {
9628
9791
  width: var(--radix-popover-trigger-width);
9629
9792
  }
@@ -9648,6 +9811,9 @@ input[type="number"] {
9648
9811
  .w-6 {
9649
9812
  width: calc(var(--spacing) * 6);
9650
9813
  }
9814
+ .w-7 {
9815
+ width: calc(var(--spacing) * 7);
9816
+ }
9651
9817
  .w-8 {
9652
9818
  width: calc(var(--spacing) * 8);
9653
9819
  }
@@ -9672,6 +9838,9 @@ input[type="number"] {
9672
9838
  .w-\[6px\] {
9673
9839
  width: 6px;
9674
9840
  }
9841
+ .w-\[18px\] {
9842
+ width: 18px;
9843
+ }
9675
9844
  .w-\[50px\] {
9676
9845
  width: 50px;
9677
9846
  }
@@ -9684,6 +9853,12 @@ input[type="number"] {
9684
9853
  .w-\[320px\] {
9685
9854
  width: 320px;
9686
9855
  }
9856
+ .w-\[338px\] {
9857
+ width: 338px;
9858
+ }
9859
+ .w-\[358px\] {
9860
+ width: 358px;
9861
+ }
9687
9862
  .w-\[400px\] {
9688
9863
  width: 400px;
9689
9864
  }
@@ -9768,6 +9943,9 @@ input[type="number"] {
9768
9943
  .flex-none {
9769
9944
  flex: none;
9770
9945
  }
9946
+ .flex-shrink-0 {
9947
+ flex-shrink: 0;
9948
+ }
9771
9949
  .shrink-0 {
9772
9950
  flex-shrink: 0;
9773
9951
  }
@@ -9792,6 +9970,9 @@ input[type="number"] {
9792
9970
  .-rotate-90 {
9793
9971
  rotate: calc(90deg * -1);
9794
9972
  }
9973
+ .rotate-0 {
9974
+ rotate: 0deg;
9975
+ }
9795
9976
  .rotate-90 {
9796
9977
  rotate: 90deg;
9797
9978
  }
@@ -9879,6 +10060,9 @@ input[type="number"] {
9879
10060
  .justify-start {
9880
10061
  justify-content: flex-start;
9881
10062
  }
10063
+ .gap-0\.5 {
10064
+ gap: calc(var(--spacing) * 0.5);
10065
+ }
9882
10066
  .gap-1 {
9883
10067
  gap: calc(var(--spacing) * 1);
9884
10068
  }
@@ -9959,12 +10143,18 @@ input[type="number"] {
9959
10143
  .overflow-scroll {
9960
10144
  overflow: scroll;
9961
10145
  }
10146
+ .overflow-visible {
10147
+ overflow: visible;
10148
+ }
9962
10149
  .overflow-x-auto {
9963
10150
  overflow-x: auto;
9964
10151
  }
9965
10152
  .overflow-x-hidden {
9966
10153
  overflow-x: hidden;
9967
10154
  }
10155
+ .overflow-x-visible {
10156
+ overflow-x: visible;
10157
+ }
9968
10158
  .overflow-y-auto {
9969
10159
  overflow-y: auto;
9970
10160
  }
@@ -9980,6 +10170,9 @@ input[type="number"] {
9980
10170
  .rounded-\[2px\] {
9981
10171
  border-radius: 2px;
9982
10172
  }
10173
+ .rounded-\[24px\] {
10174
+ border-radius: 24px;
10175
+ }
9983
10176
  .rounded-full {
9984
10177
  border-radius: calc(infinity * 1px);
9985
10178
  }
@@ -10073,6 +10266,9 @@ input[type="number"] {
10073
10266
  --tw-border-style: solid;
10074
10267
  border-style: solid;
10075
10268
  }
10269
+ .border-black {
10270
+ border-color: var(--color-black);
10271
+ }
10076
10272
  .border-blue-600 {
10077
10273
  border-color: var(--color-blue-600);
10078
10274
  }
@@ -10118,6 +10314,9 @@ input[type="number"] {
10118
10314
  .border-white {
10119
10315
  border-color: var(--color-white);
10120
10316
  }
10317
+ .border-zinc-200 {
10318
+ border-color: var(--color-zinc-200);
10319
+ }
10121
10320
  .border-b-gray-300 {
10122
10321
  border-bottom-color: var(--color-gray-300);
10123
10322
  }
@@ -10127,6 +10326,18 @@ input[type="number"] {
10127
10326
  .bg-black {
10128
10327
  background-color: var(--color-black);
10129
10328
  }
10329
+ .bg-black\/50 {
10330
+ background-color: color-mix(in srgb, hsl(0 0% 0%) 50%, transparent);
10331
+ @supports (color: color-mix(in lab, red, red)) {
10332
+ background-color: color-mix(in srgb, #000 50%, transparent);
10333
+ @supports (color: color-mix(in lab, red, red)) {
10334
+ background-color: color-mix(in srgb, #000 50%, transparent);
10335
+ @supports (color: color-mix(in lab, red, red)) {
10336
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
10337
+ }
10338
+ }
10339
+ }
10340
+ }
10130
10341
  .bg-blue-100 {
10131
10342
  background-color: var(--color-blue-100);
10132
10343
  }
@@ -10235,6 +10446,9 @@ input[type="number"] {
10235
10446
  .bg-white {
10236
10447
  background-color: var(--color-white);
10237
10448
  }
10449
+ .bg-zinc-50 {
10450
+ background-color: var(--color-zinc-50);
10451
+ }
10238
10452
  .object-contain {
10239
10453
  object-fit: contain;
10240
10454
  }
@@ -10304,6 +10518,9 @@ input[type="number"] {
10304
10518
  .py-4 {
10305
10519
  padding-block: calc(var(--spacing) * 4);
10306
10520
  }
10521
+ .py-6 {
10522
+ padding-block: calc(var(--spacing) * 6);
10523
+ }
10307
10524
  .py-28 {
10308
10525
  padding-block: calc(var(--spacing) * 28);
10309
10526
  }
@@ -10467,6 +10684,9 @@ input[type="number"] {
10467
10684
  .text-nowrap {
10468
10685
  text-wrap: nowrap;
10469
10686
  }
10687
+ .break-words {
10688
+ overflow-wrap: break-word;
10689
+ }
10470
10690
  .whitespace-nowrap {
10471
10691
  white-space: nowrap;
10472
10692
  }
@@ -10581,6 +10801,12 @@ input[type="number"] {
10581
10801
  .text-yellow-900 {
10582
10802
  color: var(--color-yellow-900);
10583
10803
  }
10804
+ .text-zinc-500 {
10805
+ color: var(--color-zinc-500);
10806
+ }
10807
+ .text-zinc-600 {
10808
+ color: var(--color-zinc-600);
10809
+ }
10584
10810
  .capitalize {
10585
10811
  text-transform: capitalize;
10586
10812
  }
@@ -10609,10 +10835,18 @@ input[type="number"] {
10609
10835
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
10610
10836
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
10611
10837
  }
10838
+ .shadow-\[0_2px_12px_rgba\(37\,42\,52\,0\.1\)\] {
10839
+ --tw-shadow: 0 2px 12px var(--tw-shadow-color, rgba(37,42,52,0.1));
10840
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
10841
+ }
10612
10842
  .shadow-\[1px_4px_15px_0px_rgba\(74\,88\,115\,0\.25\)\] {
10613
10843
  --tw-shadow: 1px 4px 15px 0px var(--tw-shadow-color, rgba(74,88,115,0.25));
10614
10844
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
10615
10845
  }
10846
+ .shadow-\[1px_4px_15px_rgba\(74\,88\,115\,0\.25\)\] {
10847
+ --tw-shadow: 1px 4px 15px var(--tw-shadow-color, rgba(74,88,115,0.25));
10848
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
10849
+ }
10616
10850
  .shadow-button {
10617
10851
  --tw-shadow: 0px -1px 1px 0px var(--tw-shadow-color, rgba(0, 0, 0, 0.04)) inset, 0px 2px 0px 0px var(--tw-shadow-color, rgba(255, 255, 255, 0.25)) inset, 0px 4px 8px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1));
10618
10852
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -10690,6 +10924,11 @@ input[type="number"] {
10690
10924
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
10691
10925
  transition-duration: var(--tw-duration, var(--default-transition-duration));
10692
10926
  }
10927
+ .transition-transform {
10928
+ transition-property: transform, translate, scale, rotate;
10929
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
10930
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
10931
+ }
10693
10932
  .duration-150 {
10694
10933
  --tw-duration: 150ms;
10695
10934
  transition-duration: 150ms;
@@ -10706,6 +10945,10 @@ input[type="number"] {
10706
10945
  --tw-ease: var(--ease-in-out);
10707
10946
  transition-timing-function: var(--ease-in-out);
10708
10947
  }
10948
+ .ease-out {
10949
+ --tw-ease: var(--ease-out);
10950
+ transition-timing-function: var(--ease-out);
10951
+ }
10709
10952
  .outline-none {
10710
10953
  --tw-outline-style: none;
10711
10954
  outline-style: none;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/network-admin",
3
3
  "description": "Network Admin package for Powerhouse",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",
7
7
  "files": [
@@ -55,13 +55,13 @@
55
55
  "service-unstartup": "bash ./node_modules/@powerhousedao/ph-cli/dist/scripts/service-unstartup.sh"
56
56
  },
57
57
  "dependencies": {
58
- "@powerhousedao/builder-tools": "^5.0.0-staging.9",
59
- "@powerhousedao/common": "^5.0.0-staging.9",
60
- "@powerhousedao/design-system": "^5.0.0-staging.9",
61
- "@powerhousedao/document-engineering": "^1.34.0",
62
- "@powerhousedao/project-management": "0.0.30",
58
+ "@powerhousedao/builder-tools": "^5.0.0-staging.15",
59
+ "@powerhousedao/common": "^5.0.0-staging.15",
60
+ "@powerhousedao/design-system": "^5.0.0-staging.15",
61
+ "@powerhousedao/document-engineering": "^1.37.0",
62
+ "@powerhousedao/project-management": "0.0.34",
63
63
  "@uiw/react-md-editor": "^4.0.8",
64
- "document-model": "^5.0.0-staging.9",
64
+ "document-model": "^5.0.0-staging.15",
65
65
  "error": "^10.4.0",
66
66
  "graphql": "^16.10.0",
67
67
  "graphql-tag": "^2.12.6",
@@ -73,19 +73,19 @@
73
73
  "@electric-sql/pglite": "^0.2.12",
74
74
  "@eslint/js": "^9.25.0",
75
75
  "@powerhousedao/analytics-engine-core": "^0.5.0",
76
- "@powerhousedao/codegen": "^5.0.0-staging.9",
77
- "@powerhousedao/ph-cli": "^5.0.0-staging.9",
78
- "@powerhousedao/reactor-api": "^5.0.0-staging.9",
79
- "@powerhousedao/reactor-browser": "^5.0.0-staging.9",
80
- "@powerhousedao/reactor-local": "^5.0.0-staging.9",
76
+ "@powerhousedao/codegen": "^5.0.0-staging.15",
77
+ "@powerhousedao/ph-cli": "^5.0.0-staging.15",
78
+ "@powerhousedao/reactor-api": "^5.0.0-staging.15",
79
+ "@powerhousedao/reactor-browser": "^5.0.0-staging.15",
80
+ "@powerhousedao/reactor-local": "^5.0.0-staging.15",
81
81
  "@powerhousedao/scalars": "^1.33.1-staging.5",
82
- "@powerhousedao/switchboard": "^5.0.0-staging.9",
82
+ "@powerhousedao/switchboard": "^5.0.0-staging.15",
83
83
  "@tailwindcss/cli": "^4.1.4",
84
84
  "@testing-library/react": "^16.3.0",
85
85
  "@types/node": "^22.14.1",
86
86
  "@types/react": "^18.3.20",
87
87
  "@vitejs/plugin-react": "^4.4.1",
88
- "document-drive": "^5.0.0-staging.9",
88
+ "document-drive": "^5.0.0-staging.15",
89
89
  "eslint": "^9.25.0",
90
90
  "eslint-plugin-react": "^7.37.5",
91
91
  "eslint-plugin-react-hooks": "^5.2.0",