@instructure/ui-grid 11.7.4-snapshot-11 → 11.7.4-snapshot-49
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 +1 -1
- package/LICENSE.md +1 -0
- package/es/Grid/v1/index.js +6 -6
- package/es/Grid/v2/index.js +5 -5
- package/es/GridCol/v1/index.js +4 -4
- package/es/GridCol/v2/index.js +3 -3
- package/es/GridRow/v1/index.js +5 -5
- package/es/GridRow/v2/index.js +4 -4
- package/es/exports/a.js +1 -1
- package/es/exports/b.js +1 -1
- package/lib/Grid/v1/index.js +11 -11
- package/lib/Grid/v2/index.js +10 -10
- package/lib/GridCol/v1/index.js +4 -4
- package/lib/GridCol/v2/index.js +3 -3
- package/lib/GridRow/v1/index.js +6 -6
- package/lib/GridRow/v2/index.js +5 -5
- package/lib/exports/a.js +4 -4
- package/lib/exports/b.js +4 -4
- package/package.json +10 -10
- package/src/Grid/v1/index.tsx +6 -5
- package/src/Grid/v2/index.tsx +5 -4
- package/src/GridCol/v1/index.tsx +4 -3
- package/src/GridCol/v2/index.tsx +3 -2
- package/src/GridRow/v1/index.tsx +5 -4
- package/src/GridRow/v2/index.tsx +4 -3
- package/src/exports/a.ts +1 -1
- package/src/exports/b.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Grid/v1/index.d.ts +4 -3
- package/types/Grid/v1/index.d.ts.map +1 -1
- package/types/Grid/v2/index.d.ts +4 -3
- package/types/Grid/v2/index.d.ts.map +1 -1
- package/types/GridCol/v1/index.d.ts +2 -1
- package/types/GridCol/v1/index.d.ts.map +1 -1
- package/types/GridCol/v2/index.d.ts +2 -1
- package/types/GridCol/v2/index.d.ts.map +1 -1
- package/types/GridRow/v1/index.d.ts +3 -2
- package/types/GridRow/v1/index.d.ts.map +1 -1
- package/types/GridRow/v2/index.d.ts +3 -2
- package/types/GridRow/v2/index.d.ts.map +1 -1
- package/types/exports/a.d.ts +1 -1
- package/types/exports/a.d.ts.map +1 -1
- package/types/exports/b.d.ts +1 -1
- package/types/exports/b.d.ts.map +1 -1
package/src/GridRow/v2/index.tsx
CHANGED
|
@@ -31,14 +31,14 @@ import {
|
|
|
31
31
|
pickProps
|
|
32
32
|
} from '@instructure/ui-react-utils'
|
|
33
33
|
|
|
34
|
-
import { GridCol } from '../../GridCol/v2/'
|
|
34
|
+
import { GridCol } from '../../GridCol/v2/index.js'
|
|
35
35
|
import type { GridColProps } from '../../GridCol/v2/props'
|
|
36
36
|
|
|
37
37
|
import { withStyleNew } from '@instructure/emotion'
|
|
38
38
|
|
|
39
|
-
import generateStyle from './styles'
|
|
39
|
+
import generateStyle from './styles.js'
|
|
40
40
|
|
|
41
|
-
import { allowedProps } from './props'
|
|
41
|
+
import { allowedProps } from './props.js'
|
|
42
42
|
import type { GridRowProps } from './props'
|
|
43
43
|
|
|
44
44
|
/**
|
|
@@ -49,6 +49,7 @@ id: Grid.Row
|
|
|
49
49
|
**/
|
|
50
50
|
@withStyleNew(generateStyle)
|
|
51
51
|
class GridRow extends Component<GridRowProps> {
|
|
52
|
+
static displayName = 'GridRow'
|
|
52
53
|
static readonly componentId = 'Grid.Row'
|
|
53
54
|
|
|
54
55
|
static allowedProps = allowedProps
|
package/src/exports/a.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
|
-
export { Grid, GridRow, GridCol } from '../Grid/v1'
|
|
24
|
+
export { Grid, GridRow, GridCol } from '../Grid/v1/index.js'
|
|
25
25
|
|
|
26
26
|
export type { GridBreakpoints } from '../utils/v1/GridTypes'
|
|
27
27
|
|
package/src/exports/b.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
|
-
export { Grid, GridRow, GridCol } from '../Grid/v2'
|
|
24
|
+
export { Grid, GridRow, GridCol } from '../Grid/v2/index.js'
|
|
25
25
|
|
|
26
26
|
export type { GridBreakpoints } from '../utils/v1/GridTypes'
|
|
27
27
|
|