@astryxdesign/cli 0.4.3 → 0.4.4-canary.0f4d45f

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 (54) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/README.md +45 -43
  3. package/api/discover/_adapter.d.mts +5 -3
  4. package/api/discover/_adapter.mjs +6 -4
  5. package/api/template/cdn/cdn.d.mts +23 -0
  6. package/api/template/cdn/cdn.mjs +86 -0
  7. package/api/template/cdn/cdn.test.mjs +108 -0
  8. package/api/template/template.d.mts +2 -0
  9. package/api/template/template.doc.mjs +21 -3
  10. package/api/template/template.mjs +16 -2
  11. package/api/template/template.type.d.mts +19 -0
  12. package/api/template/template.type.mjs +12 -0
  13. package/api/theme/theme.type.d.mts +16 -0
  14. package/api/theme/theme.type.mjs +11 -0
  15. package/assets/cdn.template.html +124 -0
  16. package/assets/docs/theme.doc.dense.mjs +1 -1
  17. package/assets/docs/theme.doc.mjs +5 -4
  18. package/assets/docs/theme.doc.zh.mjs +1 -1
  19. package/assets/templates/blocks/components/BottomSheet/BottomSheetHeights.doc.mjs +21 -0
  20. package/assets/templates/blocks/components/BottomSheet/BottomSheetHeights.tsx +46 -0
  21. package/assets/templates/blocks/components/BottomSheet/BottomSheetMobileKeyboard.doc.mjs +23 -0
  22. package/assets/templates/blocks/components/BottomSheet/BottomSheetMobileKeyboard.tsx +100 -0
  23. package/assets/templates/blocks/components/BottomSheet/BottomSheetNoScrim.doc.mjs +22 -0
  24. package/assets/templates/blocks/components/BottomSheet/BottomSheetNoScrim.tsx +47 -0
  25. package/assets/templates/blocks/components/BottomSheet/BottomSheetShowcase.doc.mjs +22 -0
  26. package/assets/templates/blocks/components/BottomSheet/BottomSheetShowcase.tsx +51 -0
  27. package/assets/templates/blocks/components/BottomSheet/BottomSheetSwitcherShowcase.doc.mjs +26 -0
  28. package/assets/templates/blocks/components/BottomSheet/BottomSheetSwitcherShowcase.tsx +221 -0
  29. package/assets/theme.template.ts +4 -3
  30. package/authoring/doctypes/base/type.ts +9 -0
  31. package/clients/cli/commands/build-theme.mjs +154 -65
  32. package/clients/cli/commands/build-theme.multi.test.mjs +148 -0
  33. package/clients/cli/commands/build-theme.watch.test.mjs +67 -0
  34. package/clients/cli/commands/discover.broken-integration.test.mjs +112 -0
  35. package/clients/cli/commands/discover.mjs +12 -0
  36. package/clients/cli/commands/search.mjs +9 -0
  37. package/clients/cli/commands/template-cdn.behavior.test.mjs +113 -0
  38. package/clients/cli/commands/template.doc.mjs +12 -2
  39. package/clients/cli/commands/template.mjs +24 -3
  40. package/clients/cli/commands/theme-build.doc.mjs +11 -5
  41. package/clients/cli/lib/json-shim.test.mjs +1 -1
  42. package/clients/cli/lib/manifest.mjs +3 -2
  43. package/clients/cli/lib/manifest.test.mjs +4 -2
  44. package/foundation/integrations/integration-warnings.test.mjs +17 -0
  45. package/foundation/integrations/validate-contributions.mjs +7 -0
  46. package/foundation/response/response-types.doc.mjs +11 -0
  47. package/foundation/text/copyright-header.mjs +11 -4
  48. package/package.json +12 -9
  49. package/assets/templates/pages/table-page-chart/page.tsx +0 -577
  50. package/assets/templates/pages/table-page-chart/template.doc.mjs +0 -13
  51. package/assets/templates/pages/table-page-heatmap-status/page.tsx +0 -467
  52. package/assets/templates/pages/table-page-heatmap-status/template.doc.mjs +0 -13
  53. package/assets/templates/pages/table-page-shoe-store-heatmap/page.tsx +0 -931
  54. package/assets/templates/pages/table-page-shoe-store-heatmap/template.doc.mjs +0 -13
@@ -1,13 +0,0 @@
1
- // Copyright (c) Meta Platforms, Inc. and affiliates.
2
-
3
- /** @type {import('@astryxdesign/cli/authoring').TemplateDoc} */
4
- export const doc = {
5
- type: 'page',
6
- name: 'Shoe Sales Table',
7
- displayName: 'Shoe Sales Table',
8
- description:
9
- 'Shoe store sales data table with a revenue area chart and product thumbnails.',
10
- isReady: true,
11
- category: 'Table - Chart',
12
- isHiddenFromOverview: true,
13
- };