@puckeditor/plugin-ai 0.6.1-canary.a5bb50b4 → 0.6.1-canary.a7fda263
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/index.css +230 -84
- package/dist/index.js +350 -231
- package/dist/index.mjs +327 -208
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -265,7 +265,7 @@ p {
|
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Button/Button.module.css/#css-module-data */
|
|
268
|
-
.
|
|
268
|
+
._Button_1sk6w_1 {
|
|
269
269
|
appearance: none;
|
|
270
270
|
background: none;
|
|
271
271
|
border: 1px solid transparent;
|
|
@@ -287,31 +287,28 @@ p {
|
|
|
287
287
|
white-space: nowrap;
|
|
288
288
|
margin: 0;
|
|
289
289
|
}
|
|
290
|
-
.
|
|
291
|
-
.
|
|
290
|
+
._Button_1sk6w_1:hover,
|
|
291
|
+
._Button_1sk6w_1:active {
|
|
292
292
|
transition: none;
|
|
293
293
|
}
|
|
294
|
-
.
|
|
294
|
+
._Button_1sk6w_1:focus-visible {
|
|
295
295
|
outline: 2px solid var(--puck-color-azure-05);
|
|
296
296
|
outline-offset: 2px;
|
|
297
297
|
}
|
|
298
|
-
._Button--
|
|
298
|
+
._Button--medium_1sk6w_34 {
|
|
299
299
|
min-height: 34px;
|
|
300
300
|
padding-bottom: 7px;
|
|
301
|
-
padding-left:
|
|
302
|
-
padding-right:
|
|
301
|
+
padding-left: 15px;
|
|
302
|
+
padding-right: 15px;
|
|
303
303
|
padding-top: 7px;
|
|
304
304
|
}
|
|
305
|
-
._Button--
|
|
305
|
+
._Button--large_1sk6w_42 {
|
|
306
306
|
padding-bottom: 11px;
|
|
307
307
|
padding-left: 19px;
|
|
308
308
|
padding-right: 19px;
|
|
309
309
|
padding-top: 11px;
|
|
310
310
|
}
|
|
311
|
-
._Button
|
|
312
|
-
margin-top: 2px;
|
|
313
|
-
}
|
|
314
|
-
._Button--brand_1sscz_53 {
|
|
311
|
+
._Button--brand_1sk6w_49 {
|
|
315
312
|
background-image:
|
|
316
313
|
linear-gradient(
|
|
317
314
|
210deg,
|
|
@@ -322,79 +319,81 @@ p {
|
|
|
322
319
|
border-radius: 48px;
|
|
323
320
|
}
|
|
324
321
|
@media (hover: hover) and (pointer: fine) {
|
|
325
|
-
._Button--
|
|
322
|
+
._Button--brand_1sk6w_49:hover {
|
|
326
323
|
opacity: 0.8;
|
|
327
324
|
}
|
|
328
325
|
}
|
|
329
|
-
._Button--
|
|
326
|
+
._Button--brand_1sk6w_49:active {
|
|
330
327
|
opacity: 0.8;
|
|
331
328
|
}
|
|
332
|
-
._Button--
|
|
329
|
+
._Button--primary_1sk6w_70 {
|
|
333
330
|
background: var(--puck-color-azure-04);
|
|
334
331
|
}
|
|
335
332
|
@media (hover: hover) and (pointer: fine) {
|
|
336
|
-
._Button--
|
|
333
|
+
._Button--primary_1sk6w_70:hover {
|
|
337
334
|
background-color: var(--puck-color-azure-03);
|
|
338
335
|
}
|
|
339
336
|
}
|
|
340
|
-
._Button--
|
|
337
|
+
._Button--primary_1sk6w_70:active {
|
|
341
338
|
background-color: var(--puck-color-azure-02);
|
|
342
339
|
}
|
|
343
|
-
._Button--
|
|
340
|
+
._Button--secondary_1sk6w_84 {
|
|
344
341
|
border: 1px solid currentColor;
|
|
345
342
|
color: currentColor;
|
|
346
343
|
}
|
|
347
344
|
@media (hover: hover) and (pointer: fine) {
|
|
348
|
-
._Button--
|
|
345
|
+
._Button--secondary_1sk6w_84:hover {
|
|
349
346
|
background-color: var(--puck-color-azure-12);
|
|
350
347
|
color: var(--puck-color-black);
|
|
351
348
|
}
|
|
352
349
|
}
|
|
353
|
-
._Button--
|
|
350
|
+
._Button--secondary_1sk6w_84:active {
|
|
354
351
|
background-color: var(--puck-color-azure-11);
|
|
355
352
|
color: var(--puck-color-black);
|
|
356
353
|
}
|
|
357
|
-
._Button--
|
|
354
|
+
._Button--danger_1sk6w_101 {
|
|
358
355
|
background: var(--puck-color-red-04);
|
|
359
356
|
}
|
|
360
357
|
@media (hover: hover) and (pointer: fine) {
|
|
361
|
-
._Button--
|
|
358
|
+
._Button--danger_1sk6w_101:hover {
|
|
362
359
|
background-color: var(--puck-color-red-03);
|
|
363
360
|
}
|
|
364
361
|
}
|
|
365
|
-
._Button--
|
|
362
|
+
._Button--danger_1sk6w_101:active {
|
|
366
363
|
background-color: var(--puck-color-red-02);
|
|
367
364
|
}
|
|
368
|
-
._Button--
|
|
365
|
+
._Button--flush_1sk6w_115 {
|
|
369
366
|
border-radius: 0;
|
|
370
367
|
}
|
|
371
|
-
._Button--
|
|
368
|
+
._Button--ghost_1sk6w_119 {
|
|
372
369
|
align-items: center;
|
|
373
370
|
background-color: transparent;
|
|
374
371
|
border: none;
|
|
375
|
-
border-radius:
|
|
376
|
-
color: var(--puck-color-
|
|
377
|
-
padding: 8px;
|
|
372
|
+
border-radius: 8px;
|
|
373
|
+
color: var(--puck-color-azure-04);
|
|
378
374
|
display: flex;
|
|
379
375
|
}
|
|
380
376
|
@media (hover: hover) and (pointer: fine) {
|
|
381
|
-
._Button--
|
|
382
|
-
background-color: var(--puck-color-
|
|
377
|
+
._Button--ghost_1sk6w_119:hover {
|
|
378
|
+
background-color: var(--puck-color-grey-11);
|
|
383
379
|
color: var(--puck-color-azure-04);
|
|
384
380
|
cursor: pointer;
|
|
385
381
|
}
|
|
386
382
|
}
|
|
387
|
-
._Button--
|
|
388
|
-
._Button--
|
|
389
|
-
|
|
390
|
-
|
|
383
|
+
._Button--disabled_1sk6w_136,
|
|
384
|
+
._Button--disabled_1sk6w_136:hover,
|
|
385
|
+
._Button--secondary_1sk6w_84._Button--disabled_1sk6w_136,
|
|
386
|
+
._Button--secondary_1sk6w_84._Button--disabled_1sk6w_136:hover {
|
|
387
|
+
background-color: var(--puck-color-grey-12);
|
|
388
|
+
border-color: var(--puck-color-grey-08);
|
|
389
|
+
color: var(--puck-color-grey-07);
|
|
391
390
|
cursor: not-allowed;
|
|
392
391
|
}
|
|
393
|
-
._Button--
|
|
392
|
+
._Button--fullWidth_1sk6w_146 {
|
|
394
393
|
justify-content: center;
|
|
395
394
|
width: 100%;
|
|
396
395
|
}
|
|
397
|
-
._Button-
|
|
396
|
+
._Button-spinner_1sk6w_151 {
|
|
398
397
|
padding-left: 8px;
|
|
399
398
|
}
|
|
400
399
|
|
|
@@ -524,7 +523,7 @@ p {
|
|
|
524
523
|
}
|
|
525
524
|
|
|
526
525
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Card/Card.module.css/#css-module-data */
|
|
527
|
-
.
|
|
526
|
+
._Card_rpnal_1 {
|
|
528
527
|
background-color: white;
|
|
529
528
|
border: 1px solid var(--puck-color-grey-08);
|
|
530
529
|
border-radius: 16px;
|
|
@@ -532,32 +531,33 @@ p {
|
|
|
532
531
|
display: block;
|
|
533
532
|
text-decoration: none;
|
|
534
533
|
}
|
|
535
|
-
.
|
|
534
|
+
._Card_rpnal_1:hover {
|
|
536
535
|
cursor: pointer;
|
|
537
536
|
background: var(--puck-color-azure-11);
|
|
538
537
|
border-color: currentColor;
|
|
539
538
|
color: var(--puck-color-azure-04);
|
|
540
539
|
}
|
|
541
|
-
._Card-
|
|
540
|
+
._Card-body_rpnal_17 {
|
|
542
541
|
align-items: center;
|
|
543
542
|
display: flex;
|
|
544
543
|
padding: 16px;
|
|
545
544
|
}
|
|
546
|
-
._Card-
|
|
545
|
+
._Card-title_rpnal_23 {
|
|
547
546
|
margin-bottom: 4px;
|
|
548
547
|
}
|
|
549
|
-
._Card-
|
|
548
|
+
._Card-subtitle_rpnal_27 {
|
|
550
549
|
margin: 0;
|
|
550
|
+
text-wrap: wrap;
|
|
551
551
|
}
|
|
552
|
-
._Card-
|
|
552
|
+
._Card-chevron_rpnal_32 {
|
|
553
553
|
align-items: center;
|
|
554
554
|
display: none;
|
|
555
555
|
margin-left: auto;
|
|
556
556
|
}
|
|
557
|
-
._Card--
|
|
557
|
+
._Card--showChevron_rpnal_38 ._Card-chevron_rpnal_32 {
|
|
558
558
|
display: flex;
|
|
559
559
|
}
|
|
560
|
-
._Card--
|
|
560
|
+
._Card--isActive_rpnal_42 {
|
|
561
561
|
border-color: var(--puck-color-azure-04);
|
|
562
562
|
color: var(--puck-color-azure-04);
|
|
563
563
|
}
|
|
@@ -837,6 +837,82 @@ p {
|
|
|
837
837
|
color: var(--puck-color-azure-05);
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Menu/styles.module.css/#css-module-data */
|
|
841
|
+
._Menu_1tu16_1 {
|
|
842
|
+
display: flex;
|
|
843
|
+
position: relative;
|
|
844
|
+
}
|
|
845
|
+
._Menu-content_1tu16_6 {
|
|
846
|
+
outline: none;
|
|
847
|
+
z-index: 1;
|
|
848
|
+
}
|
|
849
|
+
._Menu-sections_1tu16_11 {
|
|
850
|
+
background-color: white;
|
|
851
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
852
|
+
border-radius: 8px;
|
|
853
|
+
box-sizing: border-box;
|
|
854
|
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
855
|
+
min-width: 128px;
|
|
856
|
+
padding-bottom: 4px;
|
|
857
|
+
padding-top: 4px;
|
|
858
|
+
}
|
|
859
|
+
._Menu-action_1tu16_22 {
|
|
860
|
+
background: none;
|
|
861
|
+
border: none;
|
|
862
|
+
margin-left: auto;
|
|
863
|
+
padding: 0;
|
|
864
|
+
}
|
|
865
|
+
._Menu-action_1tu16_22:hover:not(:disabled) {
|
|
866
|
+
cursor: pointer;
|
|
867
|
+
opacity: 0.8;
|
|
868
|
+
}
|
|
869
|
+
._Menu-action_1tu16_22:disabled {
|
|
870
|
+
cursor: not-allowed;
|
|
871
|
+
opacity: 0.5;
|
|
872
|
+
}
|
|
873
|
+
._Menu-action_1tu16_22:focus-visible {
|
|
874
|
+
outline: 2px solid var(--puck-color-azure-05);
|
|
875
|
+
outline-offset: 2px;
|
|
876
|
+
}
|
|
877
|
+
._Menu-list_1tu16_44 {
|
|
878
|
+
list-style: none;
|
|
879
|
+
margin: 0;
|
|
880
|
+
padding: 0;
|
|
881
|
+
}
|
|
882
|
+
._Menu-list_1tu16_44 + ._Menu-list_1tu16_44 {
|
|
883
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
884
|
+
margin-top: 4px;
|
|
885
|
+
}
|
|
886
|
+
._Menu-item_1tu16_55 {
|
|
887
|
+
align-items: center;
|
|
888
|
+
background: none;
|
|
889
|
+
border: none;
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
color: var(--puck-color-grey-02);
|
|
892
|
+
display: flex;
|
|
893
|
+
font-size: var(--puck-font-size-xxs);
|
|
894
|
+
font-weight: 500;
|
|
895
|
+
gap: 8px;
|
|
896
|
+
padding: 8px 12px;
|
|
897
|
+
text-align: start;
|
|
898
|
+
text-decoration: none;
|
|
899
|
+
white-space: nowrap;
|
|
900
|
+
width: 100%;
|
|
901
|
+
}
|
|
902
|
+
a._Menu-item_1tu16_55,
|
|
903
|
+
button._Menu-item_1tu16_55 {
|
|
904
|
+
cursor: pointer;
|
|
905
|
+
}
|
|
906
|
+
a._Menu-item_1tu16_55:hover,
|
|
907
|
+
button._Menu-item_1tu16_55:hover {
|
|
908
|
+
background-color: var(--puck-color-azure-11);
|
|
909
|
+
color: var(--puck-color-azure-04);
|
|
910
|
+
}
|
|
911
|
+
._Menu-item--disabled_1tu16_83 {
|
|
912
|
+
cursor: not-allowed;
|
|
913
|
+
opacity: 0.5;
|
|
914
|
+
}
|
|
915
|
+
|
|
840
916
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Page/Page.module.css/#css-module-data */
|
|
841
917
|
._Page_nkzj9_1 {
|
|
842
918
|
display: flex;
|
|
@@ -925,10 +1001,10 @@ p {
|
|
|
925
1001
|
}
|
|
926
1002
|
|
|
927
1003
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/PlanGrid/styles.module.css/#css-module-data */
|
|
928
|
-
._PlanGrid--
|
|
1004
|
+
._PlanGrid--loading_97rn7_1 {
|
|
929
1005
|
opacity: 0;
|
|
930
1006
|
}
|
|
931
|
-
._PlanGrid-
|
|
1007
|
+
._PlanGrid-grid_97rn7_5 {
|
|
932
1008
|
color: var(--puck-color-grey-02);
|
|
933
1009
|
display: grid;
|
|
934
1010
|
gap: 16px;
|
|
@@ -937,7 +1013,7 @@ p {
|
|
|
937
1013
|
grid-template-columns: 1fr 1fr 1fr;
|
|
938
1014
|
}
|
|
939
1015
|
}
|
|
940
|
-
._PlanGrid-
|
|
1016
|
+
._PlanGrid-enterprise_97rn7_16 {
|
|
941
1017
|
color: var(--puck-color-grey-04);
|
|
942
1018
|
font-size: var(--puck-font-size-xxs);
|
|
943
1019
|
margin-left: auto;
|
|
@@ -946,13 +1022,14 @@ p {
|
|
|
946
1022
|
padding-top: 20px;
|
|
947
1023
|
text-align: center;
|
|
948
1024
|
}
|
|
949
|
-
._PlanGrid-
|
|
1025
|
+
._PlanGrid-enterprise_97rn7_16 a {
|
|
950
1026
|
color: var(--puck-color-azure-04);
|
|
951
1027
|
cursor: pointer;
|
|
1028
|
+
font-weight: 500;
|
|
952
1029
|
}
|
|
953
1030
|
|
|
954
1031
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/PlanCard/styles.module.css/#css-module-data */
|
|
955
|
-
.
|
|
1032
|
+
._PlanCard_16zmu_1 {
|
|
956
1033
|
border: 1px solid var(--puck-color-grey-09);
|
|
957
1034
|
border-radius: 16px;
|
|
958
1035
|
display: flex;
|
|
@@ -960,17 +1037,21 @@ p {
|
|
|
960
1037
|
flex-direction: column;
|
|
961
1038
|
min-width: 256px;
|
|
962
1039
|
padding: 8px;
|
|
1040
|
+
position: relative;
|
|
963
1041
|
}
|
|
964
|
-
._PlanCard--
|
|
1042
|
+
._PlanCard--enterprise_16zmu_12 {
|
|
965
1043
|
flex-direction: row;
|
|
966
1044
|
grid-column: span 3;
|
|
967
1045
|
}
|
|
968
|
-
._PlanCard-
|
|
1046
|
+
._PlanCard-title_16zmu_17 {
|
|
1047
|
+
display: flex;
|
|
1048
|
+
gap: 8px;
|
|
1049
|
+
justify-content: space-between;
|
|
969
1050
|
font-size: var(--puck-font-size-xs);
|
|
970
1051
|
font-weight: 700;
|
|
971
1052
|
white-space: nowrap;
|
|
972
1053
|
}
|
|
973
|
-
._PlanCard-
|
|
1054
|
+
._PlanCard-header_16zmu_26 {
|
|
974
1055
|
box-sizing: border-box;
|
|
975
1056
|
display: flex;
|
|
976
1057
|
flex-direction: column;
|
|
@@ -978,101 +1059,158 @@ p {
|
|
|
978
1059
|
padding: 12px 16px;
|
|
979
1060
|
width: 100%;
|
|
980
1061
|
}
|
|
981
|
-
._PlanCard-
|
|
1062
|
+
._PlanCard-features_16zmu_35 {
|
|
982
1063
|
display: grid;
|
|
983
1064
|
gap: 4px;
|
|
984
1065
|
list-style: none;
|
|
985
1066
|
margin: 0;
|
|
986
1067
|
padding: 0;
|
|
987
1068
|
}
|
|
988
|
-
._PlanCard-
|
|
1069
|
+
._PlanCard-feature_16zmu_35 {
|
|
989
1070
|
align-items: center;
|
|
990
1071
|
display: flex;
|
|
991
1072
|
gap: 4px;
|
|
992
1073
|
color: var(--puck-color-grey-05);
|
|
993
1074
|
font-size: var(--puck-font-size-xxs);
|
|
994
1075
|
}
|
|
995
|
-
._PlanCard-
|
|
1076
|
+
._PlanCard-featureIcon_16zmu_51 {
|
|
996
1077
|
align-self: flex-start;
|
|
997
1078
|
margin-top: 5px;
|
|
998
1079
|
}
|
|
999
|
-
._PlanCard-
|
|
1080
|
+
._PlanCard-featureTitle_16zmu_56 {
|
|
1000
1081
|
color: var(--puck-color-grey-04);
|
|
1001
1082
|
font-weight: 600;
|
|
1002
1083
|
}
|
|
1003
|
-
._PlanCard-
|
|
1084
|
+
._PlanCard-priceValue_16zmu_61 {
|
|
1004
1085
|
font-size: var(--puck-font-size-m);
|
|
1005
1086
|
}
|
|
1006
|
-
._PlanCard-
|
|
1087
|
+
._PlanCard-priceInterval_16zmu_65 {
|
|
1007
1088
|
color: var(--puck-color-grey-05);
|
|
1008
1089
|
}
|
|
1009
|
-
._PlanCard-
|
|
1090
|
+
._PlanCard-body_16zmu_69 {
|
|
1010
1091
|
background-color: var(--puck-color-grey-12);
|
|
1011
1092
|
border: 1px solid var(--puck-color-grey-11);
|
|
1012
1093
|
border-radius: 8px;
|
|
1013
1094
|
padding: 16px;
|
|
1014
1095
|
flex-grow: 1;
|
|
1015
1096
|
}
|
|
1016
|
-
._PlanCard--
|
|
1097
|
+
._PlanCard--enterprise_16zmu_12 ._PlanCard-body_16zmu_69 {
|
|
1017
1098
|
display: flex;
|
|
1018
1099
|
gap: 8px;
|
|
1019
1100
|
width: 100%;
|
|
1020
1101
|
}
|
|
1021
|
-
._PlanCard-
|
|
1102
|
+
._PlanCard-section_16zmu_83 {
|
|
1022
1103
|
padding-bottom: 16px;
|
|
1023
1104
|
min-width: 192px;
|
|
1024
1105
|
}
|
|
1025
|
-
._PlanCard-
|
|
1106
|
+
._PlanCard-section_16zmu_83:last-of-type {
|
|
1026
1107
|
padding-bottom: 0;
|
|
1027
1108
|
}
|
|
1028
|
-
._PlanCard-
|
|
1109
|
+
._PlanCard-section_16zmu_83 + ._PlanCard-section_16zmu_83 {
|
|
1029
1110
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1030
1111
|
padding-top: 16px;
|
|
1031
1112
|
}
|
|
1032
|
-
._PlanCard--
|
|
1033
|
-
._PlanCard-
|
|
1113
|
+
._PlanCard--enterprise_16zmu_12 {
|
|
1114
|
+
._PlanCard-section_16zmu_83 + ._PlanCard-section_16zmu_83 {
|
|
1034
1115
|
border-left: 1px solid var(--puck-color-grey-09);
|
|
1035
1116
|
border-top: none;
|
|
1036
1117
|
padding-left: 16px;
|
|
1037
1118
|
padding-top: 0;
|
|
1038
1119
|
}
|
|
1039
1120
|
}
|
|
1040
|
-
._PlanCard-
|
|
1121
|
+
._PlanCard-sectionTitle_16zmu_106 {
|
|
1041
1122
|
font-size: var(--puck-font-size-xs);
|
|
1042
1123
|
font-weight: 500;
|
|
1043
1124
|
margin-bottom: 8px;
|
|
1044
1125
|
}
|
|
1045
|
-
._PlanCard-
|
|
1126
|
+
._PlanCard-sectionBody_16zmu_112 + ._PlanCard-sectionTitle_16zmu_106 {
|
|
1046
1127
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1047
1128
|
margin-top: 16px;
|
|
1048
1129
|
padding-top: 16px;
|
|
1049
1130
|
}
|
|
1050
|
-
._PlanCard-
|
|
1131
|
+
._PlanCard-sectionBody_16zmu_112 {
|
|
1051
1132
|
color: var(--puck-color-grey-03);
|
|
1052
1133
|
font-size: var(--puck-font-size-xxs);
|
|
1053
1134
|
display: grid;
|
|
1054
1135
|
gap: 2px;
|
|
1055
1136
|
}
|
|
1056
|
-
._PlanCard-
|
|
1137
|
+
._PlanCard-usageItem_16zmu_125 {
|
|
1057
1138
|
display: flex;
|
|
1058
1139
|
gap: 8px;
|
|
1059
1140
|
font-size: var(--puck-font-size-xxs);
|
|
1060
1141
|
}
|
|
1061
|
-
._PlanCard-
|
|
1142
|
+
._PlanCard-usageLabel_16zmu_131 {
|
|
1062
1143
|
color: var(--puck-color-grey-04);
|
|
1063
1144
|
font-weight: 500;
|
|
1064
1145
|
}
|
|
1065
|
-
._PlanCard-
|
|
1146
|
+
._PlanCard-usageValue_16zmu_136 {
|
|
1066
1147
|
color: var(--puck-color-grey-05);
|
|
1067
1148
|
font-family: var(--puck-font-family-monospaced);
|
|
1068
1149
|
margin-left: auto;
|
|
1069
1150
|
}
|
|
1070
|
-
._PlanCard-
|
|
1151
|
+
._PlanCard-action_16zmu_142 {
|
|
1071
1152
|
align-items: flex-end;
|
|
1072
1153
|
display: flex;
|
|
1073
1154
|
justify-content: flex-end;
|
|
1074
1155
|
width: 100%;
|
|
1075
1156
|
}
|
|
1157
|
+
._PlanCard-description_16zmu_149 {
|
|
1158
|
+
color: var(--puck-color-grey-03);
|
|
1159
|
+
margin-top: 8px;
|
|
1160
|
+
}
|
|
1161
|
+
._PlanCard--highlight_16zmu_154 {
|
|
1162
|
+
border: transparent;
|
|
1163
|
+
}
|
|
1164
|
+
._PlanCard--highlight_16zmu_154::before {
|
|
1165
|
+
content: "";
|
|
1166
|
+
position: absolute;
|
|
1167
|
+
inset: 0;
|
|
1168
|
+
padding: 1px;
|
|
1169
|
+
border-radius: inherit;
|
|
1170
|
+
background-image:
|
|
1171
|
+
linear-gradient(
|
|
1172
|
+
210deg,
|
|
1173
|
+
var(--puck-color-azure-01) 0%,
|
|
1174
|
+
var(--puck-color-azure-03) 40%,
|
|
1175
|
+
var(--puck-color-red-05) 100%);
|
|
1176
|
+
background-size: cover;
|
|
1177
|
+
background-position: center;
|
|
1178
|
+
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
1179
|
+
-webkit-mask-composite: xor;
|
|
1180
|
+
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
1181
|
+
mask-composite: exclude;
|
|
1182
|
+
pointer-events: none;
|
|
1183
|
+
}
|
|
1184
|
+
._PlanCard-highlightText_16zmu_184 {
|
|
1185
|
+
@supports (background-clip: text) or (-webkit-background-clip: text) {
|
|
1186
|
+
color: transparent;
|
|
1187
|
+
background-clip: text;
|
|
1188
|
+
-webkit-background-clip: text;
|
|
1189
|
+
background-image:
|
|
1190
|
+
linear-gradient(
|
|
1191
|
+
210deg,
|
|
1192
|
+
var(--puck-color-azure-01) 0%,
|
|
1193
|
+
var(--puck-color-azure-03) 40%,
|
|
1194
|
+
var(--puck-color-red-05) 100%);
|
|
1195
|
+
background-size: cover;
|
|
1196
|
+
background-position: center;
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
._PlanCard--fullWidth_16zmu_200 {
|
|
1200
|
+
flex-direction: row;
|
|
1201
|
+
grid-column: 1 / -1;
|
|
1202
|
+
}
|
|
1203
|
+
._PlanCard--fullWidth_16zmu_200 ._PlanCard-header_16zmu_26 {
|
|
1204
|
+
max-width: 312px;
|
|
1205
|
+
}
|
|
1206
|
+
._PlanCard--fullWidth_16zmu_200 ._PlanCard-action_16zmu_142 {
|
|
1207
|
+
max-width: 256px;
|
|
1208
|
+
}
|
|
1209
|
+
._PlanCard--fullWidth_16zmu_200 ._PlanCard-sectionBody_16zmu_112 {
|
|
1210
|
+
display: grid;
|
|
1211
|
+
grid-template-rows: 1fr 1fr 1fr 1fr;
|
|
1212
|
+
grid-auto-flow: column;
|
|
1213
|
+
}
|
|
1076
1214
|
|
|
1077
1215
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
|
|
1078
1216
|
._Section-inner_1uwo0_1 {
|
|
@@ -1093,10 +1231,11 @@ p {
|
|
|
1093
1231
|
}
|
|
1094
1232
|
|
|
1095
1233
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Tag/Tag.module.css/#css-module-data */
|
|
1096
|
-
.
|
|
1234
|
+
._Tag_s2h0n_1 {
|
|
1097
1235
|
align-items: center;
|
|
1098
|
-
display:
|
|
1236
|
+
display: flex;
|
|
1099
1237
|
text-transform: uppercase;
|
|
1238
|
+
font-family: var(--puck-font-family-monospaced);
|
|
1100
1239
|
font-weight: 600;
|
|
1101
1240
|
font-size: var(--puck-font-size-xxxs);
|
|
1102
1241
|
gap: 6px;
|
|
@@ -1105,34 +1244,38 @@ p {
|
|
|
1105
1244
|
color: var(--puck-color-grey-05);
|
|
1106
1245
|
padding: 4px 8px;
|
|
1107
1246
|
white-space: nowrap;
|
|
1247
|
+
line-height: 1;
|
|
1108
1248
|
position: relative;
|
|
1109
1249
|
z-index: 0;
|
|
1110
1250
|
}
|
|
1111
|
-
._Tag--
|
|
1251
|
+
._Tag--borderless_s2h0n_21 {
|
|
1252
|
+
border: none;
|
|
1253
|
+
}
|
|
1254
|
+
._Tag--colorBlue_s2h0n_25 {
|
|
1112
1255
|
color: var(--puck-color-azure-05);
|
|
1113
1256
|
}
|
|
1114
|
-
._Tag--
|
|
1257
|
+
._Tag--colorGreen_s2h0n_29 {
|
|
1115
1258
|
color: var(--puck-color-green-06);
|
|
1116
1259
|
}
|
|
1117
|
-
._Tag--
|
|
1260
|
+
._Tag--colorRed_s2h0n_33 {
|
|
1118
1261
|
color: var(--puck-color-red-04);
|
|
1119
1262
|
}
|
|
1120
|
-
._Tag--
|
|
1263
|
+
._Tag--colorMuted_s2h0n_37 {
|
|
1121
1264
|
color: var(--puck-color-grey-06);
|
|
1122
1265
|
}
|
|
1123
|
-
._Tag-
|
|
1266
|
+
._Tag-sprite_s2h0n_41 {
|
|
1124
1267
|
display: flex;
|
|
1125
1268
|
}
|
|
1126
|
-
._Tag--
|
|
1127
|
-
._Tag-
|
|
1269
|
+
._Tag--pulse_s2h0n_45 {
|
|
1270
|
+
._Tag-sprite_s2h0n_41 {
|
|
1128
1271
|
background: currentColor;
|
|
1129
1272
|
border-radius: 50%;
|
|
1130
1273
|
height: 5px;
|
|
1131
1274
|
position: relative;
|
|
1132
1275
|
width: 5px;
|
|
1133
1276
|
}
|
|
1134
|
-
._Tag-
|
|
1135
|
-
animation:
|
|
1277
|
+
._Tag-sprite_s2h0n_41::before {
|
|
1278
|
+
animation: _pulse_s2h0n_1 1s 0s infinite alternate;
|
|
1136
1279
|
animation-fill-mode: both;
|
|
1137
1280
|
background-color: color-mix(in srgb, currentColor 25%, transparent);
|
|
1138
1281
|
border-radius: 50%;
|
|
@@ -1146,7 +1289,7 @@ p {
|
|
|
1146
1289
|
z-index: -1;
|
|
1147
1290
|
}
|
|
1148
1291
|
}
|
|
1149
|
-
@keyframes
|
|
1292
|
+
@keyframes _pulse_s2h0n_1 {
|
|
1150
1293
|
0% {
|
|
1151
1294
|
transform: scale(1);
|
|
1152
1295
|
}
|
|
@@ -1154,6 +1297,9 @@ p {
|
|
|
1154
1297
|
transform: scale(2);
|
|
1155
1298
|
}
|
|
1156
1299
|
}
|
|
1300
|
+
._Tag-label_s2h0n_79 {
|
|
1301
|
+
margin-top: 1px;
|
|
1302
|
+
}
|
|
1157
1303
|
|
|
1158
1304
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Table/Table.module.css/#css-module-data */
|
|
1159
1305
|
._Table_o345u_1 {
|