-
Notifications
You must be signed in to change notification settings - Fork 3
/
readme.txt
1841 lines (1394 loc) · 63.5 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== VK Blocks ===
Contributors: vektor-inc,kurudrive,naoki0h,nc30,una9,kaorock72,rickaddison7634,mimitips,mthaichi,shimotomoki,sysbird,chiakikouno,doshimaf,mtdkei
Donate link:
Tags: Gutenberg,FAQ,alert
Requires at least: 6.4
Tested up to: 6.7
Stable tag: 1.92.0.1
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
This is a plugin that extends Gutenberg's blocks.
== Description ==
This is a plugin that extends Gutenberg's blocks.
[ Blocks ]
* Alert
* Ballon
* Border Box
* Button
* Classic FAQ
* New FAQ
* Flow
* Heading (not recommended)
* Icon
* Icon Outer
* Page Content
* PR Blocks (not recommended)
* PR Content (not recommended)
* Responsive Spacer
* Staff (not recommended)
* Page list from ancestor
* Slider
* Accordion [ Pro ]
* Animation [ Pro ]
* Archive list [ Pro ]
* Blog Card [ Pro ]
* Breadcrumb [ Pro ]
* Button Outer [ Pro ]
* Card [ Pro ] (not recommended)
* Category Badge [ Pro ]
* Child page list [ Pro ]
* Dynamic Text ( Post Type name / Ancestor Page name ) [ Pro ]
* Fixed Display [ Pro ]
* Icon Card [ Pro ] (not recommended)
* Post list [ Pro ]
* Post list Slider [ Pro ]
* New Badge [ Pro ]
* Selected Post List [ Pro ]
* Step [ Pro ]
* Tab [ Pro ]
* Table of Contents [ Pro ]
* Taxonomy [ Pro ]
* Timeline [ Pro ]
* Grid Column [ Pro ]
* Grid Column Card [ Pro ]
* Outer [ Pro ]
[ Extensions ]
* Hidden extension
* Highlighter
* Inline Font Size
* Margin extension
* Nowrap
* Responsive BR
* Columns direction
* Custom CSS [ Pro ]
* Link toolber
[ Settings ]
* Balloon
* Custom Format [ Pro ]
* Custom Block Style [ Pro ]
* Common Margin
* Load Separate
* FAQ Block [ Pro ]
* Custom CSS [ Pro ]
* Block Manager
* Block Style Manager
[ Tools ]
* Import Export
[ Editing and correction ]
The source code of this plug-in is below.
https://github.com/vektor-inc/vk-blocks
== Installation ==
This section describes how to install the plugin and get it working.
e.g.
1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
== Frequently Asked Questions ==
== Screenshots ==
1. VK Blocks can be selected from the VK Blocks Panel.
1. VK Blocks examples.
== Changelog ==
= 1.92.1 =
[ Bug fix ][ Post List (Pro) ] Remove white space above title
[ Design Bug Fix ][ Post list Slider (Pro) ] Fixed an issue where post list did not have consistent heights.
[ Design Bug Fix ][ VK Button ] Fixed an issue where the text of a button with an icon was dropping in a column. Reset the word-break property to its initial value for better compatibility in Firefox.
= 1.92.0 =
[ Add Block ] Add Post list Slider block.
[ Add function ][ Fixed Display (Pro) ] Added a timer feature to control block appearance/disappearance and a "Do not show again for returning visitors" option. Session Storage is used, and no personal data is collected or tracked. Since Session Storage is used, the block may reappear after the browser is closed or in private browsing mode.
[ Bug Fix ][ Grid Column Card (Pro) ] Fixed only dots being displayed as separators.
[ Bug fix ][ Post List (Pro) ] Since WordPress 6.7.1 started outputting contain-intrinsic-size: 3000px 1500px, add a reset for this in .card.
[ Other ][ Slider ] Refactoring editor script.
= 1.91.2 =
[ Bug fix ] Fix checkbox misalignment in the admin panel.
= 1.91.1 =
[ Bug fix ] Avoiding translation errors in WordPress 6.7
= 1.91.0 =
[ Specification change ] Adjusted translation file loading to comply with changes in WordPress 6.7.
[ Bug fix ][ Table of Contents (Pro) ] Fixed "CLOSE" label not appearing after clicking the "OPEN" button when the initial state is set to "CLOSE".
= 1.90.1 =
[ Bug fix ][ Cover ] Fixed inline styles not being retained when adding a link.
= 1.90.0 =
[ Add function ][ Outer (Pro) ] Add book and pyramid in divider style.
[ Bug fix ] The split loading option is now supported for core/heading, core/image, and core/table styles for block editor.
[ Bug fix ][ Cover ] Fixed an issue where, after setting a link in the Cover block and adding two unstyled headings inside it, the content positioning would not apply upon returning to the editing screen (editing screen only).
[ Other ][ Slider ] Add alert message.
= 1.89.0 =
[ Add function ][ Outer (Pro) ] Added support for core text color settings.
[ Specification Change ][ Accordion (Pro) ] Added the ability to toggle the Accordion block open and close in the editing screen.
[ Bug fix ][ Grid Column Card (Pro) ] Fixed slider overflow in Grid Column Card Item Body.
[ Bug fix ][ core/roup ] Fixed an issue where unwanted classes were assigned when links were present in the group block.
= 1.88.0 =
[ Specification change ][ Grid Column Card (Pro) ] Changed the default settings of headerDisplay and footerDisplay from "Delete" to "Display".
[ Specification change ] Add filter vk_post_taxonomies_html ( Update VK Components 1.6.1 )
[ Bug fix ][ Link Component ] Fix adding "http://" with "tel:" and "mailto:" link.
[ Bug fix ][ Slider ] Fix an issue where full width alignment does not work in tt4 and tt5.
= 1.87.0 =
[ Add function ][ Link Toolbar ] Added to skip retrieving metadata (title and favicon) for external links in link toolbar to prevent CORS errors.
[ Add function ][ icon ] Add toolbar link for components.
[ Bug fix ][ Slider ] Adjusting the timing of loading swiper to prevent the slider from collapsing.
[ Bug fix ][ Grid Column Card (Pro) ] Add translation.
[ Bug fix ][ Category Badge (Pro) ] Added Pro label to the inserter.
= 1.86.1 =
[ Bug fix ] Roll back 1.85.1
= 1.86.0 =
[ Add function ] [ Fixed Display (Pro) ] Added an option for "Fixed display from the bottom."
[ Add function ] Added to apply the vk-scroll-hint class to all elements with the vk_hidden and vk_hidden-XXX classes.
[ Bug fix ][ Core/table ] Fixed the class was not removed when table scrolling was disabled.
[ Bug fix ] Fix load styles when separate load is enable.
[ Bug fix ][ Tab (Pro) ] Added a process to dynamically calculate and set the iframe height when the tab becomes active.
[ Bug fix ] Fixed an issue where disabling separated loading caused all block CSS to load.
= 1.85.1 =
[ Bug fix ] Due to an issue where the hidden setting does not function properly when TreeShaking is enabled and CSS splitting is disabled, TreeShaking has been temporarily disabled as a workaround.
= 1.85.0 =
[ Add function ][ Core Table ] Add scroll hint for horizontal scrolling.
[ Specification change ][ Post List (Pro) ] Disable link on edit screen.
[ Specification change ][ Alert ] Fixed the alert variation icon.
[ Bug fix ][ Breadcrumb (Pro) ] Fixed an issue where the separator setting in the Breadcrumb block was not being loaded correctly (now loaded from view.js).
[ Bug fix ] Fixed an issue where abnormal load occurred on a server that cannot use auto-update.
= 1.84.2 =
[ Bug fix ][ Custom CSS (Pro) ] Replaced an improved sanitation function in `vk_blocks_output custom css` to handle various CSS patterns.
= 1.84.1 =
[ Bug fix ][ Custom CSS (Pro) ] Replaced wp_kses with a sanitization function in vk_blocks_output_custom_css.
= 1.84.0 =
[ Add function ][ Column ] Add toolbar link for components.
[ Specification change ][ Classic FAQ / New FAQ ] Support structured data.
[ Bug fix ][ Link toolbar ] Fix to prevent adding http:// or https:// when a relative path is entered.
[ Bug fix ][ Post list (Pro) ] Fixed pagination customization in post list.
[ Other ] Add a mode to extract class name for Font awesome icon.
[ Other ] Supports custom CSS including pseudo-elements even in block-by-block lazy loading mode.
= 1.83.0 =
[ Add function ][ Alert ] Add icon setting and inner block.
[ Bug fix ][ Grid Column Card (Pro) ] Fixed an issue where using a synced pattern would cause the destination edit page to crash.
[ Bug fix ][ Core List ] Add support for handling list color in old settings.
[ Bug fix ][ Tab Item ] When duplicating an active tab-item block, no more than one tab-item block becomes active.
= 1.82.0 =
[ Add function ][ Core Cover ] Add toolbar link for components.
[ Specification change ] Change the location of the margin-related CSS code.
[ Bug fix ] Added dynamic color settings for `vk-has-*` and `has-vk-*` classes.
[ Bug fix ][ Post list (Pro) / Selected post list (Pro) / Child page list (Pro) ] Fix error when 'new_date' attribute is empty.
[ Bug fix ][ Post list (Pro) / Selected post list (Pro) / Child page list (Pro) ] Fixed an issue where the button would remain aligned to the left even when it was set to align to the right.
= 1.81.0 =
[ Add function ][ Table ] Add horizontal scrolling Setting.
[ Specification change ][ Image ] Add a circle style to the image block.
[ Specification change ][ Slider ] Delete width setting from sidebar.
[ Specification change ] Update VK Component.
[ Bug fix ] Added dynamic color settings for common css.
[ Bug fix ][ Slider Item ] Fixed to hide content that exceeds the height when setting the slider height.
[ Bug fix ][ Category Badge (Pro) ] Fixed an issue where the spinner continued to display on the edit screen in WordPress 6.6
[ Bug fix ][ Slider Item ] Fix infinite loop in slider item block when used in reusable blocks.
[ Bug fix ][ Accordion(Pro) ] Remove resize event causing accordion closure on scroll.
[ Bug Fix ][ Blog Card ] Make it editable in the edit screen in WordPress 6.6
[ Bug Fix ][ Grid Column Card (Pro) ] Setting a grid column block inside a reusable block no longer causes an error.
[ Bug fix ][ Post list (Pro) ] Fixed post query to prevent memory overflow by paginating results.
[ Bug fix ][ Post List (Pro) ] Fixed pagination handling.
[ Bug fix ] The split loading option is now supported for core/heading, core/image, and core/table styles.
= 1.80.1 =
[ Bug Fix ] Fixed in WordPress 6.4.x / 6.5.x so that blocks can be used.
[ Design Bug Fix ][ Fixed Display (Pro) ] Add max-width for position top and bottom.
= 1.80.0 =
[ Add function ][ Outer (Pro) ] Add serrated and large triangle in divider style.
[ Bug Fix ][ Outer (Pro) ] Add vertical padding variables.
[ Bug Fix ][ Grid Colum (Pro) ] Fix error
= 1.79.1 =
[ Bug Fix (Free) ] Fixed an issue where blocks couldn't be used in WordPress 6.6.
= 1.79.0 =
[ Add function ][ Tab (Pro) ] Add settings for when there are many labels or the screen width is narrow.
[ Add function ][ Core Group ] Add toolbar link for components.
[ Add function ][ Grid Column (Pro) ] Add toolbar link for components by item.
[ Add function ][ Slider ] Add 'Wide' to width.
[ Specification change ] Hide license key when license key is valid.
[ Specification change ][ Category Badge (Pro) ] Enabled taxonomy specification regardless of post type.
[ Specification change ][ Slider ] Change padding style to core system from original.
[ Bug fix ] Fixed an error in the component link toolbar in WordPress version 6.6.
[ Bug fix ][ Tab (Pro) ] Fixed extra space being added to tabs depending on theme.
[ Bug fix ][ Fixed Display (Pro) ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment.
[ Other ][ Table of Contents (Pro) ] Improved pseudo elements for frontend page accessibility.
[ Other ][ Outer ] Refactored CSS of width treatment to prevent layout corruption on the edit screen.
= 1.78.0 =
[ Other ] Attend to WordPress 6.6
= 1.77.0 =
[ Add function ][ Outer (Pro) ] Add toolbar link for components.
[ Add function ][ Accordion(Pro) ] Added initial display state setting.
[ Specification change ][ Tab (Pro) ] Accessibility support
[ Bug fix ][ Table of Contents (Pro) ] Fix "OBJ" characters appeared in the Table of Contents on Windows.
[ Bug fix ] Delete unnecessary development files included in 1.76.2.
[ Fix ][ FAQ / FAQ2 ] add aria-label for accessibility
= 1.76.2 =
[ Specification change ] Change Font Awesome Version to 6.5.2
[ Bug fix ] Fix load font awesome files
= 1.76.1 =
[ Bug fix ][ Fixed Display (Pro) ] Add css for position and alignment.
[ Bug fix ][ Post List (Pro) ] Fixed sorting by display order other than publication date to work for multiple post types.
[ Other ] Add Transform vk-blocks/heading ( Not Recommended ) to core/heading.
[ Other ] Delete old deprecated code
= 1.76.0 =
[ Add function ] Add Setting for the position of VK Blocks on all block inserter.
[ Add function ][ Border Box ] Add title tag setting.
[ Add function ][ Slider ] Add url interface to block toolbar for slider item.
[ Specification change ][ Post List (Pro) ] Displayed taxonomies now only show for selected post types.
[ Specification change ][ Responsive Spacer ] Added CSS to remove margins from the default theme.
[ Bug fix ][ Tab ] Fix background color of tab disappearing when clicking active tab.
[ Add function ][ Slider Item ] Add toolbar link for components.
[ Other ] Add toolbar link to components.
= 1.75.1 =
[ Specification change ][ Fixed Display (Pro) ] Do not fix the edit screen as it makes editing difficult.
[ Bug fix ] Fixed an issue where the Pro version could not be activated in an environment where the Free version is active.
= 1.75.0 =
[ Add Block ][ Fixed Display block (Pro) ] Add Fixed display block.
[ Bug fix ][ Tab (Pro) ] Fix the default line style to show the top of the border.
[ Specification change ] Delete unnecessary css value ( We abolished the --vk-size-text and changed it to 1rem. ).
= 1.74.0 =
[ Specification change ] Fix block categories order
[ Specification change ][ VK Button ] Add unit "percent" for border radius.
[ Bug fix ][ VK Button ] Fixed button URL being output in editor.
[ Bug fix ][ Tab (Pro) ] Fix innactive tab color setting.
= 1.73.0 =
[ Add Block ] Add Tab Block
[ Add function ][ Columns ] Add direction reverse option.
[ Add function ][ VK Button ] Add border radius setting.
[ Add function ][ Spacer / Common margin ] Add size option XXL/XXS.
[ Add function ][ Grid Column Card (Pro) ] Add border width setting to grid column card block.
[ Add function ][ Outer (Pro) ] Added option to min height setting.
[ Specification change ][ Custom CSS (Pro) ] Changed the custom CSS text area to be wider
[ Specification change ][ Outer ] Remove the negative margin for .vk_outer-width-full.
[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment.
[ Bug fix ] Remove min-height from "Custom CSS" on edit screen.
[ Other ] Fixed useSetting deprecated
= 1.72.1 =
[ Specification change ][ Pro ] Attend to I18N Improvements in 6.5.
[ Other ] Fixed useSetting deprecated
[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment.
= 1.72.0 =
[ Specification change ][ Child Page List ] Hide "Term's name on Image" and "Taxonomies (all)" display options.
[ Design Bug Fix ][ Balloon ] Harmonized icon image display in balloon blocks with frontend editing.
[ Design Bug fix ][ grid-column ] Fixed vk_gridColumn_item to be aligned to the beginning and to be the basic width size of the parent element.
[ Design Bug fix ][ group ] Fixed an issue where internal links were not working in group block style stitches.
[ Design Bug fix ][ Balloon ] Harmonized icon image display in balloon blocks with frontend editing.
[ Editor Design Bug fix ][ Slider ] Fixed an issue where slider item height disappears when editorMode is slide and alignfull.
= 1.71.0 =
[ Add function ][ Accordion(Pro) ] Add plain style to accordion block.
[ Add function ][ icon ] Add Font color option in solid type icon.
[ Bug fix ][ Button ] Fixed buttonColorCustom in the editor to display the correct color.
[ Bug fix ][ Table of Contents (Pro) ] Fixed visibility issue in 6.5.
[ Bug fix ][ Core Group ] Fix stitching styles for theme.json in Group blocks.
[ Bug fix ][ Flow ] Fixed margin-block-start being attached to flow block
[ Bug fix ][ Grid Column (Pro) ] Fixed right margin when using grid columns outside of Lightning.
[ Bug fix ][ Grid Column (Pro) ] Content does not span full width when using grid columns outside of Lightning in col-12.
[ Bug fix ][ New FAQ ] Fix a typo in the font-family specification.
= 1.70.0 =
[ Specification change ] core/social-link, core/site-logo, core/site-title and core/site-tagline correspond to margin-extension
[ Add function ][ Breadcrumb ] Add the ability to input breadcrumb separators.
= 1.69.1 =
[ Bug fix ][ Inline Font Size ] Applies only Font Size has a numeric value.
[ Bug fix ][ GridColCard (Pro) ] Fixed a bug where vertical alignment settings for card blocks did not apply in the editing screen.
[ Bug fix ][ Slider ] Corresponding Slider Mode to Site Editor / Widget Editor.
[ Bug fix ][ Slider ] Fixed a bug where placing heading blocks and similar elements directly in slides made them uneditable.
= 1.69.0 =
[ Add function ][ Slider ] Add Slider Mode on Editor.
[ Add function ][ Post List (Pro) ] Add paged lock setting.
[ Specification change ] Change the required PHP version to 7.4 or higher.
[ Bug fix ][ Image ]Fixed a bug in the photo frame with activated zoom in the image block styled 'photoFrame-tilt'
[ Bug fix ] Update CSS Optimizer 0.2.2
= 1.68.0 =
[ Add function ][ Dynamic Text (Pro) ] Add feature to display logged-in username.
[ Specification change ][ Hidden extension ] Add VK Icon
[ Specification change ][ Outer ( Pro ) ] Allowed decimal points in 'Container Inner Side Space Setting'.
[ Specification change ][ Headding ] Marked as Not Recommended
= 1.67.0 =
[ Add Block ][ Category Badge (Pro) ] Creates badges displaying linked categories or terms for posts, with flexible design customization.
= 1.66.2 =
[ Bug fix ][ Slider ] Fixed a bug in version 1.66.1 where the slider width did not match the content width in certain themes.
= 1.66.1 =
[ Bug fix ][ Slider ] Fixed a bug in version 1.66.0 where the slider width did not match the content width in certain themes.
= 1.66.0 =
[ Specification change ] Change VK Component Posts Horizontal col class ( Update VK Component 1.6.0 / Discontinued the use of Bootstrap's Grid system )
[ Bug fix ] Fix 1.65.0 translate
= 1.65.0 =
[ Add function ][ Grid Column Card (Pro) ] Enabled gradient specification for background colors.
[ Bug fix ][ Grid Column Card (Pro) ] Fixed that Grid Column Card Item Body block vertical align not work
= 1.64.2 =
[ Bug fix ][ Custom Format (Pro) ] Fixed Toolbar Icon Size Issue in WordPress 6.4
= 1.64.1 =
[ Specification change ] Update Swiper 11.0.1
[ Bug fix ][ Toolbar ] Fixed Toolbar Icon Size Issue in WordPress 6.4
[ Bug fix ][ Grid Column (Pro) ] Fixed inner list block style.
[ Bug fix ][ Outer (Pro) ] Fix padding in divider style
[ Bug fix ][ Grid Column Card ] Alignment issue of images placed within the body.
= 1.64.0 =
[ Add function ][ Dynamic Text Block (Pro) ] Added option to display parent page title.
[ Bug fix ][ Page list from ancestor ] Fixed XSS issue.
= 1.63.0 =
[ Add function ][ Blog Card (Pro) ] Add block variation function.
[ Add filter ][ Post List (Pro) ] Add vk_blocks_post_list_query_args filter hook.
[ Bug fix ][ Balloon ] Fixed word break position.
[ Bug fix ][ Table of Contents ] Fixed the issue with inner blocks not working correctly.
[ Bug fix ][ Outer (Pro) ] Fixed a bug in the initial setting of divider for each device.
= 1.62.0 =
[ Add Block ][ Blog Card (Pro) ] Add blog card block.
[ Add Block ][ New Badge Block (Pro) ] Add a block to display recent posts.
[ Add function ][ Outer (Pro) ] Add options to Divider for each PC, Tablet, and Mobile
[ Specification change ] Updated Font Awesome to 6.4.2.
[ Bug fix ][ Admin screen ] Fixed a bug where settings saved in an array were not imported.
[ Bug fix ][ Button ] Fix console warning
= 1.61.2 =
[ Bug fix ][ Outer ( Pro ) ] Fixed opacity with previous Outer version.
= 1.61.1 =
[ Bug fix ] Fix error WordPress 6.3 live previewing block themes.
[ Bug fix ] VK Term color update 0.6.6
= 1.61.0 =
[ Specification change ] Update the required WordPress version.
[ Specification change ] Changed to display Font Awesome version change button only when select is changed.
[ Specification change ][ Outer ( Pro ) ] Change opacity setting can be set in increments of 0.01.
[ Specification change ][ Animation(Pro) ] Fix WordPress 6.3 transforms settings.
[ Bug fix ][ Taxonomy (Pro) ] Fixed error when selected taxonomy dose not exists.
[ Bug fix ][ Taxonomy (Pro) ] Fixed individual CSS was loaded on all pages with classic theme.
= 1.60.0 =
[ Add function ] Add Font Awesome icon custom list function.
[ Add function ][ Dynamic Text Block (Pro) ] URL support for custom fields.
[ Add function ][ FAQ2 ] Add an accordion default option on a per-block.
[ Specification change ] Disable HTML editing for blocks with inner blocks, as the blocks are broken.
[ Bug fix ][ Dynamic Text (Pro) ] Fix php warning that brought by can't get post type name on search result page.
[ Bug fix ][ Dynamic Text (Pro) ] Fix php warning that brought by can't get ancestor page on search result page.
[ Bug fix ][ Icon Block ] Fix enable hidden extension.
= 1.59.0 =
[ Add Filter Hook ( Pro ) ] Add filter fook of display license key form or not
[ Specification change ] Change option value update via Redux Store.
[ Bug fix ][ Page Content ] Fix duplicate Additional CSS classes.
[ Bug fix ] Fix swiper file path ( // -> / )
= 1.58.1 =
[ Bug fix ][ Admin screen ] Fix block style manager changes other option values.
[ Bug fix ][ Admin screen ] Fix block manager changes other option values.
[ Other ] Delete inc/vk-helpers
[ Other ][ Dynamic Text (Pro) ] Translation update
= 1.58.0 =
[ Add function ][ Dynamic Text Block (Pro) ] Add custom fields to displayElement.
[ Add function ][ Admin screen ] Added import export tool.
[ Other ][ Heading style ] Cope with dark background color
[ Other ] Update VK Admin 0.4.0 ( Cope with English information )
[ Other ] Update VK Component 1.5.0 ( Remove dependency on VK_Helpers )
[ Bug fix ][ Spacer ] Allow 0 height.
[ Bug fix ] Update option value Modify API authority
[ Bug fix ][ Dynamic Text (Pro) ] show/hide option when displaying ancestor page is applied to post types other than "page".
= 1.57.1 =
[ Bug fix ] Update option value Modify API authority
[ Bug fix ][ GridColCard ] Delete non intentional link underline
= 1.57.0.5 =
[ Bug fix ][ Free Version ] Fix display non intentional Licencekey alert message and update become don't work. ( Please delete once VK Blocks 1.57.0.1 and reinstall 1.57.0.4 or higher )
= 1.57.0 =
[ Add function ] Allow alpha value in some blocks.
[ Add function ][ Dynamic Text (Pro) ] Added an option to show/hide the title when an ancestor page is selected and the ancestor page is display.
[ Add function ][ Animation (Pro) ] Added transforms settings to wrap and unwrap.
[ Bug fix ] Fix Textdomain( Translate ) for VK Blocks Pro
[ Bug fix ][ Child page list (Pro) ] "There are no page." is not displayed on the front page.
[ Bug fix ][ Breadcrumb (Pro) ] Delete non intentional margin on editor screen
[ Bug fix ][ Taxonomy (Pro) ] Fix the "Show hierarchy" option bug.
[ Bug fix ][ Slider ] Fixed file reference bug of slider under specific environment such as Windows ( Update Swiper 9.3.2 )
[ Bug fix ][ Dynamic Text Block (Pro) ] Fixed a bug that caused an error when setting the style.
[ Other ][ Slider ] Add loop alert
= 1.56.0 =
[ Add Block ][ Dynamic Text (Pro) ] Add Dynamic text block.
[ Add function ][ Admin screen ] Added block style manager function.
[ Specification change ][ Slider ] Update Swiper to 9.2.3.
[ Bug fix ][ Taxonomy block (Pro) ] Fix Dropdown Script.
[ Bug fix ][ Custom Format Setting (Pro) ] Custom Format Setting WordPress 6.2 UI adjustment.
[ Bug fix ][ Step (Pro) / Time Line(Pro) ] Fix item content overflow
= 1.55.0 =
[ Add Block ][ Archive list block (Pro) ] Displays a list of archives
[ Add Block ][ Taxonomy block (Pro) ] Displays a list of taxonomy terms
[ Specification change ][ List ] cope with custom color palette (WordPress 6.2 or higher)
[ Bug fix ][ Spacer ] Fix custom css variable
= 1.54.0 =
[ Add Setting ][ margin / spacer ] Add custom value to margin setting
[ Other ] Update the required WordPress version
[ Bug fix ][ Outer (Pro) ] Fix Outer Container CSS.
[ Bug fix ] Cope with XSS
= 1.53.0 =
[ Add setting ][ Slider ] Allow decimalon slider per view Setting & Add Setting of Centering Active Slide
[ Specification change ][ Custom Block Style Setting (Pro) ] Don't limit target blocks to VK Blocks.
[ Bug fix ] Fix inline css when css sepalate load mode.
= 1.52.0 =
[ Specification change ] Add multiple length units.
[ Specification change ][ Custom CSS (Pro) ] Changed specification to output CSS wrapped by .editor-styles-wrapper in block editor.
[ Specification change ][ Custom Block Style Setting (Pro) ] Changed the specification to save the CSS wrapped in .editor-styles-wrapper and output that CSS in the block editor.
[ Specification change ][ Outer (Pro) ] When the block is made full width, the class name of "alignfull" will be given.
[ Bug fix ][ Custom CSS (Pro) ] Fix PHP 8.1 warning
[ Bug fix ][ Slider ] Allow 0 to be entered in numeric form.
[ Bug fix ][ Slider ] Fix content width under case of use .is-layout-constrained and editor screen
[ other ] Removed unused display_vk_block_template option value.
= 1.51.0 =
[ Improvement ][ Balloon ] Improvement to allow any number of registrations in admin.
[ Bug fix ][ Step/timeline ] Fix title align center
= 1.50.1 =
[ Other ] CSS Optimize ( Tree Shaking ) Library update
= 1.50.0 =
[ Add function ][ Slider ] Add Slider per view Setting for Mobile, Tablet, PC.
= 1.49.0 =
[ Add function ][ Custom Block Style Setting (Pro) ] Add Custom Block Style Setting extension in admin.
[ Specification change ][ Post List (Pro) ] Lightweight data acquisition process
[ Bug fix ][ Step(Pro) / Time Line(Pro) ] Fix item content overflow hidden
= 1.48.1 =
[ Bug fix ][ Slider ] Set default value for unset time and speed.
[ Bug fix ][ table style ] Fix bug of under the active theme.json environment, If you use the table styles that, table border property become not reflection.
[ Other ] Update Plugin Update Checker to 5.0
[ Other ] Update VK Breadcrumb lib 0.2.5
= 1.48.0 =
[ Add function ][ Admin screen ] Added block manager function.
[ Add function ][ Custom Format Setting (Pro) ] Add Custom Format Setting extension in admin.
[ Bug fix ][ Custom CSS (Pro) ] Fixed bug in not replacing all selector strings.
[ Specification change ][ Animation(Pro) ] add setting option Animation only the first view.
= 1.47.1 =
[ Bug fix ][ Slider ] Stick out background image on setting panel of site editor
= 1.47.0 =
[ Other ][ Slider (Pro) ] Change Pro to Free.
[ Bug fix ][ Button ] Fixed a bug where the default color was not hit in all themes except Lightning.
= 1.46.0 =
[ Add function ][ Custom CSS (Pro) ] Add custom css extension in inspector controls.
[ Specification change ][ Grid Column (Pro) ] Changed margin setting from 1 to 0.1 separator.
[ Specification change ] Update the required WordPress version
[ Bug fix ][ Highlighter ] Fixed a bug that custom colors cannot be used.
[ Bug fix ][ Button ] Fixed a bug that the color palette does not change on the edit screen when there is no background.
[ Bug fix ][ List ] Fixed a bug that the color of the list icon was not reflected on the edit screen
[ Bug fix ][ Step (Pro) / Time line (Pro) ] Fix margin of theme.json
[ Bug fix ][ Grid Column (Pro) ] Fix bg color overflow bug on edit screen.
= 1.45.0 =
[ Other ] Cope with WordPress 6.1
[ Specification change ] Color palette manager use wp_theme_json_data_default filter.
[ Bug fix ][ Button ] Delete non intentional underline.
[ Other ] color palette manager added warning that --vk-color-custom-${number} is deprecated and replaced with --wp--preset--color--vk-color-custom-${number}.
= 1.44.0 =
[ Add function ][ Post List (Pro) ] Add post filter taxonomy relation
[ Add function ][ Button ] Add Button Effect option in Solid color button.
[ Specification change ][ Post List (Pro) ] Change to don't display unpublic posttype and terms list.
[ Bug fix ][ Grid Column Card(Pro) ] Fixed a bug that css for editor was displayed in front.
[ Bug fix ][ Select Post List Item (Pro) ] Fixed a bug where additional CSS classes were not attached.
= 1.43.0 =
[ Add function ][ Spacer ][ Common mergin ] Add size option xl/xs.
[ Improvement ][ Admin screen ] Display the SaveButton sticky.
[ Bug fix ] Fix PHP 8.X Error
= 1.42.1 =
[ Other ] Update VK Component Posts 1.3.1
= 1.42.0 =
[ Specification change ] Update VK Component Posts ( Can use input tag on filter )
[ Improvement ] Delete vk_blocks_get_options() function and change to VK_Blocks_Options::get_options().
= 1.41.2 =
[ Improvement ][ Page list from ancestor ] Fix behavior site editor.
[ Other ] Add PHPUnit test on Several PHP and WordPress versions
[ Bug fix ] Fatal error in WordPress 5.8
[ Bug fix ][ highlighter ] cope with color palette with alpha.
[ Bug fix ][ button ] buttonColorCustom clear convert to primary.
= 1.41.1 =
[ Bug fix ] Fix don't display Admin screen in case of spacific option value
= 1.41.0 =
[ Add function ][ Balloon ] Add width option.
[ Bug fix ][ Outer (Pro) ] Fixed the border color of the Outer block within the Outer block was not attached.
[ Specification change ][ Breadcrumb(Pro) ] Hidden front page breadcrumb.
= 1.40.1 =
[ Specification change ][Step(Pro)/Timeline(Pro)] Change lineStyle ui.
[ Bug fix ][ hidden extension ] fix hidden extension class when Screen size xl.
[ Bug fix ][ FAQ ] fix faq block js error when load separation mode.
= 1.40.0 =
[ Improvement ][ hidden extension ] Changed to add common hidden class names to additional CSS classes.
[ Add Block ][ Page list from ancestors ]
[ Add function ][ Button ] Enable inline font size and add icon size option.
[ Specification change ] Change the style of the options page to Gutenberg components.
[ Bug fix ] fix editor style in Inline font size and Highlighter.
[ Bug fix ] Fixed a bug that CSS for edit screen is not loaded in iframe.
[ Bug fix ][ Breadcrumb ] Fix duplicate Additional CSS classes.
= 1.39.2 =
[ Bug fix ][ Breadcrumb ] Fix in case of filter search result category & keyword
[ Bug fix ][ Table style ] Delete border left and right specified vk-table-border-top-bottom
[ Specification change ][ icon ] enable float value at icon size and margin
= 1.39.1 =
[ Bug fix ][ Grid Column Card ] fix bug when aspect retio is empty.
[ Other ] Change the script loaded on the options page to a script file.
= 1.39.0 =
[ Improvement ] License key remove space.
[ Bug fix ][ Common mergin ] cope with table margin bottom 0,margin top 0
[ Bug fix ][ GridColCard (Pro) ] cope with custom color palette
[ Other ] VK Compo ( mini-content ) Update ( Fix slider align )
= 1.38.0 =
[ Bug fix ][ Post List (Pro) ] cope with pagenation hook
= 1.37.0 =
[ Specification change ][ Step Item(Pro) / Timeline Item()Pro ] Change padding-bottom to inner-item last-child margin-bottom
[ Specification change ][ Timeline ] If no label, the outer html will not be displayed.
[ Specification change ][ Outer ] Move width control to block toolbar.
[ Specification change ] Change the style loaded on the options page to a css file.
[ Bug fix ][ Tree Shaking ] cope with not(***,***)
[ Bug fix ][ Heading design ] Fix text-align
= 1.36.2 =
[ Specification change ] allow iframe on post list filter
[ Bug fix ][ Slider (Pro) ] Add compatibility process.
[ Bug fix ][ Heading design ] Fix plain design text-align
= 1.36.1 =
[ Bug fix ] Fix active pro version
= 1.36.0 =
[ Add function ][ Button outer(Pro) ] Add gap option.
[ Bug fix ][ Accordion(Pro) ] Fix margin bottom on Accordion close.
= 1.35.0 =
[ Specification change ][ Animation(Pro) ] Corresponds reuse block & duplicate
[ Specification change ][ Grid Column Card(Pro) ] Corresponds reuse block & duplicate automatically
[ Specification change ][ Card(Pro) ] Corresponds reuse block & duplicate automatically
[ Specification change ][ Slider(Pro) ] Corresponds reuse block & duplicate automatically
[ Specification change ][ Slider(Pro) ] Changed slider breakpoints to match specified breakpoints in VK Blocks
[ Specification change ][ Slider(Pro) ] Change width class name
[ Bug fix ][ List ] cope with custom color palette
[ Bug fix ][ Slider(Pro) ] Fixed not to output empty CSS tags
[ Bug fix ][ Outer (Pro) ] Fix WordPress 6.0 border color class.
[ Bug fix ][ Spacer ][ Animation (Pro) ][ Slider (Pro) ] height and border style on Full Site Editor
= 1.34.1 =
[ Bug fix ] Fix term color library ( since 1.34.0 )
= 1.34.0 =
[ Improvement ][ Button ] Support for transformation of paragraph block to VK button block.
[ Other ] add term color composer library
[ Bug fix ][ Grid Col Card(Pro) ] Fix bocome narrow width in case of innner block on edit screen
= 1.33.2 =
[ Bug fix ][ Button ] Fix horizontal padding for X-T9
[ Bug fix ][ Common mergin ] cope with table bottom
[ Bug fix ][ Breadcrumb(Pro) ] Fix front page breadcrumb
[ Bug fix ][ Grid Column(Pro) ] fix row block layout in Grid Column Block
[ Improvement ][ Button ] Delete block id UI.
= 1.33.1 =
[ Bug fix ] Fix PHP notice ( Pro version only )
[ Fix ] Translation ( Pro version only )
= 1.33.0 =
[ Specification change ] Required license key entry.
[ Bug fix ][ Slider(Pro) ] Cope with auto height.
[ Bug fix ][ Heading ] Heading-Adjusted padding when there is a background.
= 1.32.0 =
[ Add function ][ GridColCard (Pro) ] add column min-width setting for tablet and pc.
[ Add function ][ Button outer(Pro) ] Add button width option for mobile or tablet.
[ Improvement ][ margin extension ] Enable margin settings in Grid column(Pro).
[ Bug fix ] Fix FAQ option array error for free.
[ Bug fix ] Fix load Font Awesome Files on WordPress.com
[ Bug fix ][ Button ] Fix icon inner classes.
= 1.31.0 =
[ Add function ][ GridColCard(Pro) ] Add link URL in toolbar and sidebar.
[ Add function ] [ Breadcrumb(Pro) ] Add support fontSize and spacing.
[ Improvement ][ margin extension ] Changed to add common margin class names to additional CSS classes.
[ Bug fix ][ Accordion(Pro) ] Fix do not intend margin bottom 0 added to p tag.
= 1.30.0 =
[ Add function ][ Border Box ] Add body align control in toolbar.
[ Add function ][ Button outer(Pro) ] Add button width option.
[ Update ][ Font Awesome ] Add version chenge setting on block-editor screen.
[ Specification change ][ Button ] Move url interface to block toolbar.
[ Specification change ] Change default --vk-margin-md size 2rem -> 2.4rem
[ Specification change ][ icon ] fix icon margin bottom
= 1.29.2 =
[ Bug fix ][ margin extension ] Exclude grid column blocks because they are covered by the setting values.
[ Bug fix ][ margin extension ] Optimize excludes core block list.
[ Bug fix ] fix editor style of button-outer & icon-outer in page-content
= 1.29.1 =
[ Bug fix ][ margin extension ] Optimize excludes block list.
= 1.29.0 =
[ Add function ] Add margin extension in toolbar.
[ Add Block ] GridColCard(Pro)
[ Fix ] [ Breadcrumb(Pro) ] Add inserter Pro label.
[ Other ] Update Font Awesome 6 -> 6.1
= 1.28.0 =
[ Add Block ] Breadcrumb(Pro)
[ Specification change ][ Spacer ] Change break point
[ Bug fix ][ Outer (Pro) ] Border radius range above 0.
[ Bug fix ][ Outer (Pro) ] background position fix
= 1.27.9 =
[ Bug fix ][ Slider(Pro) ] Fixed a bug that the background was not transparent when the transparency setting was set to 0.
= 1.27.8 =
[ Bug fix ][ Outer (Pro) ] Fixed a bug where css was hitting inner content
= 1.27.7 =
[ Bug fix ][ Post list an so on (Pro) ] Fixed number of days to display the new post mark was not saved.
[ Bug fix ][ Post list an so on (Pro) ] Fixed no post message php notice.
= 1.27.6 =
[ Other ] Fix deploy flow
= 1.27.5 =
[ Bug fix ][ Outer(Pro) ] Compatibility support
[ Bug fix ][ Post List(Pro) ] Fix no post message
= 1.27.1 - 1.27.4 =
[ Other ] Deploy Free Version.
= 1.27.0 =
[ Add function ][ Font Awesome ] Cope with Font Awesome 6
[ Add function ][ Post-List (Pro) ] Add no-post message filter hook
[ Bug fix ][ Outer(Pro) ] cope with custom color palette
= 1.26.2 =
[ Other ] Rerelease
[ Bug fix ][ Spacer ] fix spacer
= 1.26.0 =
[ fix ] fix plugin settings links.
[ Add function ][ Spacer ] Add margin-top mode
= 1.25.1 =
Change stable version
= 1.25.0 =
[ Improvement ] Change to always load bootstrap when the theme is not Lightning,Lightning Pro,Katawara.
[ fix ] Fix load FontAwesome when the theme is not Lightning,Lightning Pro,Katawara.
[ fix ] color palette manager support border color
= 1.24.5 =
[ fix ][ Button ] Fix button alignment
[ fix ][ Card(Pro) ] fix unify breakpoints.
= 1.24.4 =
[ Specification change ][ Heading Design ] Strengthen selector on editor screen
= 1.24.3 =
[ Bug fix ][ FAQ ] Fix list block last item can't edit.
[ Bug fix ][ Slider(Pro) ] Fix Slider in Image block caption can't edit.
[ Bug fix ] Bug fix Color palette not working in widget
= 1.24.2 =
[ Deploy ] Deploy Free Version 1.24.0
= 1.24.1 =
[ Specification change ][ Dev ] fix deploy free script
= 1.24.0 =
[ fix ][ Icon outer ] add orientation horizontal & fix appender
[ fix ][ Card(Pro) ] add orientation horizontal & fix appender
[ fix ][ selected post list(Pro) ] add orientation horizontal & fix appender
[ fix ][ Button outer(Pro) ] add orientation horizontal & fix appender
[ fix ][ Icon Card(Pro) ] add orientation horizontal & fix appender
[ fix ][ Grid column(Pro) ] add orientation horizontal & fix appender
[ Specification change ][ Dev ] change build script
= 1.23.0 =
[ Specification change ][ Flow ] Release Image float on xs screen
[ Specification change ] Change required WordPress version to 5.8
= 1.22.4 =
[ Other ] Update the required WordPress version
[ Bug fix ][ Heading ] Fix bug the color does not change when the style setting is no decoration.
[ Bug fix ][ Slider(Pro) ] cope with custom color palette
[ Bug fix ][ Icon Card(Pro) ] fix text align
[ Bug fix ][ TOC(Pro) ] fix css corruption of block load separation mode
= 1.22.3 =
[ Bug fix ][ core/heading ] fix width
= 1.22.2 =
[ Bug fix ][ selected post list(Pro) ] fix post id
= 1.22.1 =
Cope with WordPress 5.9
[ Add function ] load separate block setting from setting > vk blocks
[ fix ][ Heading ] Make text size not auto-include when changing heading level
[ fix ][ Grid Column ] fix translate
[ fix ][ Heading ] vertical heading levels for wp-5.9
[ fix ][ Border Box ] cope with custom color palette
[ Bug fix ] fix block style enqueue point
[ Bug fix ][ button ] fix block-block size
= 1.21.0 =
[ Add function ][ Post-List (Pro) ] add date filtering
[ Bug fix ][ Balloon ] Balloon icon background color when custom color is selected
[ Bug fix ][ Group ] fix alert style custom color
= 1.20.7 =
[ Bug fix ][ Heading ] cope with custom color palette
[ Bug fix ][ Heading ] Fix recovery
= 1.20.6 =
[ Bug fix ][ Heading ] Fix recovery
[ Bug fix ][ Heading ] cope with custom color palette
[ Bug fix ][ Button ] change option order in panel
[ Bug fix ][ Grid Column(Pro) ] cope with custom color palette
[ Bug fix ][ Balloon ] cope with custom color palette
= 1.20.5 =
[ Bug fix ] cope with Old PHP.
[ Bug fix ][ Timeline(Pro) ] cope with custom color palette
= 1.20.4 =
[ Other ] Only change stable version ( Deploy free version )
= 1.20.3 =
[ Bug fix ][ Post Media Layout ] Cope with not vektor theme
[ Bug fix ][ PR Blocks ] cope with custom color palette
[ Bug fix ][ Step(Pro) ] cope with custom color palette
[ Bug fix ][ Icon Card(Pro) ] cope with custom color palette
[ Other ] Change TGM & Plugin Update Checker load from composer
= 1.20.2 =
[ Bug fix ] Color palette manager in case of other theme
= 1.20.1 =
[ Bug fix ] Fix -wp5.7 error
= 1.20.0 =
[ Other ][ All ] Refactoring all blocks.
[ Bug fix ] Color palette manager in case of other theme
= 1.19.1 =
[ Bug fix ][ Button ] Fix bootstrap color crash
= 1.19.0 =
[ Add function ][ Button ] Set the text color with palette
[ Bug fix ][ Button ] Add primary color css variable in case of other theme
= 1.18.6 =
[ Bug fix ][ Button ] Custom color value don't refrect reopen
= 1.18.5 =
[ Other ] Change stable version only.
= 1.18.4 =
[ Bug fix ] 1.18.0 update ( Add color palette manager in plugin )
[ Bug fix ][ Button ] Fix bug in case of used button block for reusable block.
= 1.18.3 =
[ Bug fix ] Revert 1.17.0
= 1.18.2 =
[ Bug fix ] Revert 1.17.0
= 1.18.1 =
[ Bug fix ] Revert 1.17.0
= 1.18.0 =
[ Add function ] Add color palette manager in plugin
= 1.17.0 =
[ Add Block ][ Button Outer(Pro) ]
= 1.16.11 =
[ Bug fix ][ Button ] Fix color on katawara
= 1.16.10 =
[ Bug fix ][ border box ] Fix border box title confrict by title design function
= 1.16.9 =
[ Bug fix ][ icon ] Fix css bug from 1.16.0
= 1.16.8 =
[ Bug fix ][ Button ] cope with custom color palette
= 1.16.7 =
[ Bug fix ][ Button ] Fix primary bg color first aid
= 1.16.6 =
[ Bug fix ][ Button ] Fix primary bg color first aid
= 1.16.5 =
[ Bug fix ][ Button ] Fix wide size
= 1.16.4 =
[ Bug fix ][ Button ] Fix outline color
= 1.16.3 =
[ Bug fix ] Cope with excerpt br
= 1.16.2 =
[ Other ] Cope with old ssl error
= 1.16.1 =
[ Bug fix ][ Card ] Fix broke layout on edit screen
= 1.16.0 =
[ Add New Block ] Icon Outer
[ Bug fix ][ icon ] Fixed a bug the style was reset when the icon color clear
[ Bug fix ][ Ordered List ] Fixed a bug in standard style
= 1.15.1 =
[ Bug fix ][ Spacer ] Fix common margin setting in case of unspecified
= 1.15.0 =
[ Add function ][ Grid Column Item ] Add color and padding setting
= 1.14.1 =
[ Bug fix ][ Spacer ] Fix common setting input
= 1.14.0 =
[ Add function ][ Spacer ] Add common spacer type and common spacer responsive size
[ Bug fix ] Fix Lightning G3 Pro text size not work
= 1.13.2 =
[ Bug fix ][ Slider ]Fixed bug would break put a class in additional CSS class
= 1.13.1 =
[ Other ] version only
= 1.13.0 =
[ Specification change ][ Post list (Pro) ] Cope with ruby tag
= 1.12.0 =
[ Add New Block ] Icon Block
[ Improvement ][ Slider(Pro) ] add navigation position
[ Specification change ] VK Components Update ( can be customize title by hook )
[ Specification change ][ Slider(Pro) ] If set slide type fade that disable slide step number
[ Bug fix ][ Slider(Pro) ] Fix bug that to be same id under case of copy slide item
[ Bug fix ][ Social icon ] Fix css in grid block
= 1.11.4 =
[ Bug fix ][ Step(Pro) ] Fixed icon position
= 1.11.3 =
[ Bug fix ][ Step(Pro) ] Fixed icon position at G3
= 1.11.2 =
[ Improvement ] add block description
[ Bug fix ] Fixed widget screen warning
[ Bug fix ][ Slider(Pro) ] Change id when copy slider & slider-item.
= 1.11.1 =
[ Bug fix ][ Table style ] add botder top and bottom style
= 1.11.0 =
[ Specification change ][ Button ] Change margin getready to core button block.
= 1.10.0 =
[ Specification change ][ Slider(Pro) ] Add no height setting.
[ Bug fix ][ Slider(Pro) ]Fix bug where pagination design would change when tree shake was enabled.
= 1.9.2 =
[ Bug fix ] Fix for 5.8
[ Specification change ][ Slider(Pro) ] add Pagination Setting
[ Specification change ][ Heading ] Font size of title & sub text can set null.
= 1.9.1 =
[ Bug fix ] Fix AllowedBlocks of InnerBlocks.
= 1.9.0 =
[ Improvement ][ Inline Font Size ] setting font size in toolbar
[ Bug fix ][ Icon card ] Fix css bug
= 1.8.2 =
[ Bug fix ][ FAQ ] Fixed CSS of answer part when closing in the initial state
[ Bug fix ][ Responsive BR ] Fixed Console Warning
= 1.8.1 =
[ Bug fix ][ Flow ] Fixed to reflect alt of image
= 1.8.0 =
[ Improvement ][ Spacer ] Add common space size setting
[ Bug fix ] PR Content button after icon position
= 1.7.1 =
[ Bug fix ][ Heading ] Fix Color Palette default setting.
= 1.7.0 =