@dereekb/dbx-web 13.10.6 → 13.10.8

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/docs/README.md +10 -0
  2. package/eslint/index.cjs.default.js +1 -0
  3. package/eslint/index.cjs.js +1096 -0
  4. package/eslint/index.cjs.mjs +2 -0
  5. package/eslint/index.d.ts +1 -0
  6. package/eslint/index.esm.js +1091 -0
  7. package/eslint/src/index.d.ts +1 -0
  8. package/eslint/src/lib/index.d.ts +4 -0
  9. package/eslint/src/lib/no-redundant-on-destroy.rule.d.ts +40 -0
  10. package/eslint/src/lib/plugin.d.ts +20 -0
  11. package/eslint/src/lib/require-clean-subscription.rule.d.ts +79 -0
  12. package/eslint/src/lib/require-complete-on-destroy.rule.d.ts +33 -0
  13. package/eslint/src/lib/util.d.ts +256 -0
  14. package/fesm2022/dereekb-dbx-web-calendar.mjs +9 -9
  15. package/fesm2022/dereekb-dbx-web-docs.mjs +146 -0
  16. package/fesm2022/dereekb-dbx-web-docs.mjs.map +1 -0
  17. package/fesm2022/dereekb-dbx-web-mapbox.mjs +58 -64
  18. package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
  19. package/fesm2022/dereekb-dbx-web-table.mjs +80 -80
  20. package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
  21. package/fesm2022/dereekb-dbx-web.mjs +1705 -944
  22. package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
  23. package/lib/action/snackbar/_snackbar.scss +5 -0
  24. package/lib/button/_button.scss +27 -0
  25. package/lib/error/_error.scss +5 -0
  26. package/lib/extension/pdf/_pdf.scss +19 -59
  27. package/lib/interaction/dialog/_dialog.scss +5 -0
  28. package/lib/interaction/popover/_popover.scss +5 -0
  29. package/lib/interaction/popup/_popup.scss +5 -0
  30. package/lib/interaction/prompt/_prompt.scss +4 -0
  31. package/lib/interaction/upload/_upload.scss +15 -2
  32. package/lib/layout/avatar/_avatar.scss +26 -0
  33. package/lib/layout/bar/_bar.scss +27 -0
  34. package/lib/layout/block/_block.scss +4 -0
  35. package/lib/layout/column/_column.scss +3 -0
  36. package/lib/layout/content/_content.scss +29 -0
  37. package/lib/layout/flex/_flex.scss +37 -0
  38. package/lib/layout/list/_list.scss +99 -0
  39. package/lib/layout/section/_section.scss +7 -0
  40. package/lib/layout/style/_style.scss +49 -0
  41. package/lib/layout/text/_text.scss +298 -14
  42. package/lib/loading/_loading.scss +6 -0
  43. package/lib/style/_variables.scss +167 -0
  44. package/package.json +27 -14
  45. package/types/dereekb-dbx-web-docs.d.ts +73 -0
  46. package/types/dereekb-dbx-web-mapbox.d.ts +4 -4
  47. package/types/dereekb-dbx-web.d.ts +827 -179
package/docs/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @dereekb/dbx-web/docs
2
+
3
+ Documentation primitives for dbx-components apps. Provides the `<dbx-docs-ui-example>` component family that wraps a single self-contained UI example with a header, descriptive prose slot, runnable content slot, and optional imports/notes slots.
4
+
5
+ These components serve a dual purpose:
6
+
7
+ - **Runtime**: render documentation example pages in a downstream app (e.g. `apps/demo`).
8
+ - **MCP catalog source**: the `dbx-components-mcp` UI tools scan example components decorated with `@dbxDocsUiExample` JSDoc tags and use the stable `dbx-docs-ui-example*` selectors as deterministic anchors when extracting body, info, and content into the catalog manifest.
9
+
10
+ See `@dereekb/dbx-components-mcp` for the matching scanner and tag conventions.
@@ -0,0 +1 @@
1
+ exports._default = require('./index.cjs.js').default;