@soppiya/app-bridge 1.0.9 → 1.1.2

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 (47) hide show
  1. package/dist/components/articles-picker/index.d.ts +1 -0
  2. package/dist/components/articles-picker/index.js +2 -0
  3. package/dist/components/articles-picker/ui/ArticlesPicker.js +1 -1
  4. package/dist/components/blogs-picker/index.d.ts +1 -0
  5. package/dist/components/blogs-picker/index.js +2 -0
  6. package/dist/components/blogs-picker/ui/BlogsPicker.js +0 -1
  7. package/dist/components/collections-pciker/index.d.ts +1 -0
  8. package/dist/components/collections-pciker/index.js +2 -0
  9. package/dist/components/index.d.ts +6 -0
  10. package/dist/components/index.js +6 -0
  11. package/dist/components/link-list-picker/api/query.d.ts +8 -0
  12. package/dist/components/link-list-picker/api/query.js +22 -0
  13. package/dist/components/link-list-picker/index.d.ts +1 -0
  14. package/dist/components/link-list-picker/index.js +2 -0
  15. package/dist/components/link-list-picker/model/useLinkList.d.ts +30 -0
  16. package/dist/components/link-list-picker/model/useLinkList.js +46 -0
  17. package/dist/components/link-list-picker/ui/LinkListPicker.d.ts +9 -0
  18. package/dist/components/link-list-picker/ui/LinkListPicker.js +98 -0
  19. package/dist/components/link-list-picker/ui/LinkListPicker.stories.d.ts +14 -0
  20. package/dist/components/link-list-picker/ui/LinkListPicker.stories.js +10 -0
  21. package/dist/components/meta-data/index.d.ts +1 -0
  22. package/dist/components/meta-data/index.js +2 -0
  23. package/dist/components/meta-data/ui/ArticleRefMetaField.js +1 -1
  24. package/dist/components/meta-data/ui/BlogRefMetaField.js +1 -1
  25. package/dist/components/meta-data/ui/CollectionRefMetaField.js +1 -1
  26. package/dist/components/meta-data/ui/ColorMetaField.js +8 -8
  27. package/dist/components/meta-data/ui/MetaData.js +23 -2
  28. package/dist/components/meta-data/ui/MetaDataItem.js +14 -5
  29. package/dist/components/meta-data/ui/MetaDataTypePopup.js +17 -9
  30. package/dist/components/meta-data/ui/PageRefMetaField.d.ts +1 -1
  31. package/dist/components/meta-data/ui/PageRefMetaField.js +36 -5
  32. package/dist/components/pages-picker/api/query.d.ts +8 -0
  33. package/dist/components/pages-picker/api/query.js +22 -0
  34. package/dist/components/pages-picker/index.d.ts +1 -0
  35. package/dist/components/pages-picker/index.js +2 -0
  36. package/dist/components/pages-picker/model/usePages.d.ts +30 -0
  37. package/dist/components/pages-picker/model/usePages.js +46 -0
  38. package/dist/components/pages-picker/ui/PagesPicker.d.ts +9 -0
  39. package/dist/components/pages-picker/ui/PagesPicker.js +104 -0
  40. package/dist/components/pages-picker/ui/PagesPicker.stories.d.ts +17 -0
  41. package/dist/components/pages-picker/ui/PagesPicker.stories.js +13 -0
  42. package/dist/shared/graphql/gql.d.ts +10 -0
  43. package/dist/shared/graphql/gql.js +3 -1
  44. package/dist/shared/graphql/graphql.d.ts +69 -0
  45. package/dist/shared/graphql/graphql.js +872 -224
  46. package/dist/styles.css +35 -2
  47. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -375,6 +375,10 @@
375
375
  margin-inline: auto;
376
376
  }
377
377
 
378
+ .mt-4 {
379
+ margin-top: calc(var(--spacing) * 4);
380
+ }
381
+
378
382
  .mt-\[10px\] {
379
383
  margin-top: 10px;
380
384
  }
@@ -631,8 +635,8 @@
631
635
  padding-block: calc(var(--spacing) * 1.5);
632
636
  }
633
637
 
634
- .pb-2 {
635
- padding-bottom: calc(var(--spacing) * 2);
638
+ .pb-4 {
639
+ padding-bottom: calc(var(--spacing) * 4);
636
640
  }
637
641
 
638
642
  .underline {
@@ -707,6 +711,10 @@
707
711
  left: calc(var(--spacing) * -5);
708
712
  }
709
713
 
714
+ .md\:mt-0 {
715
+ margin-top: calc(var(--spacing) * 0);
716
+ }
717
+
710
718
  .md\:h-\[100px\] {
711
719
  height: 100px;
712
720
  }
@@ -758,6 +766,31 @@
758
766
  .md\:grid-cols-\[repeat\(auto-fill\,minmax\(117px\,1fr\)\)\] {
759
767
  grid-template-columns: repeat(auto-fill, minmax(117px, 1fr));
760
768
  }
769
+
770
+ .md\:flex-col-reverse\! {
771
+ flex-direction: column-reverse !important;
772
+ }
773
+
774
+ .md\:border-b {
775
+ border-bottom-style: var(--tw-border-style);
776
+ border-bottom-width: 1px;
777
+ }
778
+
779
+ .md\:border-b-\[\#ebebeb\] {
780
+ border-bottom-color: #ebebeb;
781
+ }
782
+
783
+ .md\:border-b-transparent {
784
+ border-bottom-color: #0000;
785
+ }
786
+
787
+ .md\:pb-0 {
788
+ padding-bottom: calc(var(--spacing) * 0);
789
+ }
790
+
791
+ .md\:pb-3 {
792
+ padding-bottom: calc(var(--spacing) * 3);
793
+ }
761
794
  }
762
795
 
763
796
  @media (width >= 64rem) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soppiya/app-bridge",
3
- "version": "1.0.9",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {