@startupjs-ui/docs 0.1.23 → 0.2.0-alpha.0

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/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [0.1.23](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.1.23) (2026-03-27)
6
+ # [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
7
7
 
8
8
  **Note:** Version bump only for package @startupjs-ui/docs
9
9
 
@@ -3,11 +3,6 @@ import { pug, observer, $, useId } from 'startupjs'
3
3
  import Span from '@startupjs-ui/span'
4
4
  import Alert from '@startupjs-ui/alert'
5
5
  import Props from '../Props'
6
- import {
7
- useShowGrid,
8
- useShowSizes,
9
- useValidateWidth
10
- } from '../../clientHelpers'
11
6
  import './index.styl'
12
7
 
13
8
  const MODELS = new WeakMap()
@@ -18,9 +13,6 @@ export default observer(function Sandbox ({
18
13
  $props,
19
14
  ...otherProps
20
15
  }) {
21
- const [showGrid] = useShowGrid()
22
- const [showSizes] = useShowSizes()
23
- const [validateWidth] = useValidateWidth()
24
16
  const uniqId = useId()
25
17
 
26
18
  if (!Component) {
@@ -48,9 +40,9 @@ export default observer(function Sandbox ({
48
40
  Component=Component
49
41
  propsJsonSchema=propsJsonSchema
50
42
  $props=$props || getUniqModel(Component, uniqId)
51
- showSizes=showSizes
52
- showGrid=showGrid
53
- validateWidth=validateWidth
43
+ showSizes
44
+ showGrid=false
45
+ validateWidth=false
54
46
  ...otherProps
55
47
  )
56
48
  `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@startupjs-ui/docs",
3
3
  "description": "MDX documentation generator",
4
- "version": "0.1.23",
4
+ "version": "0.2.0-alpha.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -9,15 +9,15 @@
9
9
  "main": "index.js",
10
10
  "dependencies": {
11
11
  "@fortawesome/free-solid-svg-icons": "^7.1.0",
12
- "@startupjs-ui/alert": "^0.1.22",
13
- "@startupjs-ui/br": "^0.1.22",
14
- "@startupjs-ui/button": "^0.1.22",
15
- "@startupjs-ui/core": "^0.1.22",
16
- "@startupjs-ui/div": "^0.1.22",
17
- "@startupjs-ui/input": "^0.1.23",
18
- "@startupjs-ui/scroll-view": "^0.1.22",
19
- "@startupjs-ui/span": "^0.1.22",
20
- "@startupjs-ui/tag": "^0.1.22",
12
+ "@startupjs-ui/alert": "^0.2.0-alpha.0",
13
+ "@startupjs-ui/br": "^0.2.0-alpha.0",
14
+ "@startupjs-ui/button": "^0.2.0-alpha.0",
15
+ "@startupjs-ui/core": "^0.2.0-alpha.0",
16
+ "@startupjs-ui/div": "^0.2.0-alpha.0",
17
+ "@startupjs-ui/input": "^0.2.0-alpha.0",
18
+ "@startupjs-ui/scroll-view": "^0.2.0-alpha.0",
19
+ "@startupjs-ui/span": "^0.2.0-alpha.0",
20
+ "@startupjs-ui/tag": "^0.2.0-alpha.0",
21
21
  "lodash": "^4.17.20"
22
22
  },
23
23
  "peerDependencies": {
@@ -25,5 +25,5 @@
25
25
  "react-native": "*",
26
26
  "startupjs": "*"
27
27
  },
28
- "gitHead": "37e37c298a2467d18d1de1931f9e7942f06e7665"
28
+ "gitHead": "a428246a18d0e7f77809043c8240253240d11d66"
29
29
  }