@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.
Files changed (44) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/LICENSE.md +1 -0
  3. package/es/Grid/v1/index.js +6 -6
  4. package/es/Grid/v2/index.js +5 -5
  5. package/es/GridCol/v1/index.js +4 -4
  6. package/es/GridCol/v2/index.js +3 -3
  7. package/es/GridRow/v1/index.js +5 -5
  8. package/es/GridRow/v2/index.js +4 -4
  9. package/es/exports/a.js +1 -1
  10. package/es/exports/b.js +1 -1
  11. package/lib/Grid/v1/index.js +11 -11
  12. package/lib/Grid/v2/index.js +10 -10
  13. package/lib/GridCol/v1/index.js +4 -4
  14. package/lib/GridCol/v2/index.js +3 -3
  15. package/lib/GridRow/v1/index.js +6 -6
  16. package/lib/GridRow/v2/index.js +5 -5
  17. package/lib/exports/a.js +4 -4
  18. package/lib/exports/b.js +4 -4
  19. package/package.json +10 -10
  20. package/src/Grid/v1/index.tsx +6 -5
  21. package/src/Grid/v2/index.tsx +5 -4
  22. package/src/GridCol/v1/index.tsx +4 -3
  23. package/src/GridCol/v2/index.tsx +3 -2
  24. package/src/GridRow/v1/index.tsx +5 -4
  25. package/src/GridRow/v2/index.tsx +4 -3
  26. package/src/exports/a.ts +1 -1
  27. package/src/exports/b.ts +1 -1
  28. package/tsconfig.build.tsbuildinfo +1 -1
  29. package/types/Grid/v1/index.d.ts +4 -3
  30. package/types/Grid/v1/index.d.ts.map +1 -1
  31. package/types/Grid/v2/index.d.ts +4 -3
  32. package/types/Grid/v2/index.d.ts.map +1 -1
  33. package/types/GridCol/v1/index.d.ts +2 -1
  34. package/types/GridCol/v1/index.d.ts.map +1 -1
  35. package/types/GridCol/v2/index.d.ts +2 -1
  36. package/types/GridCol/v2/index.d.ts.map +1 -1
  37. package/types/GridRow/v1/index.d.ts +3 -2
  38. package/types/GridRow/v1/index.d.ts.map +1 -1
  39. package/types/GridRow/v2/index.d.ts +3 -2
  40. package/types/GridRow/v2/index.d.ts.map +1 -1
  41. package/types/exports/a.d.ts +1 -1
  42. package/types/exports/a.d.ts.map +1 -1
  43. package/types/exports/b.d.ts +1 -1
  44. package/types/exports/b.d.ts.map +1 -1
@@ -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