@hero-design/rn 8.22.0 → 8.23.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.
Files changed (32) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/es/index.js +235 -65
  3. package/lib/index.js +235 -64
  4. package/package.json +5 -5
  5. package/src/components/Alert/index.tsx +6 -0
  6. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  7. package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +5 -5
  8. package/src/components/List/ListItem.tsx +12 -8
  9. package/src/components/Success/StyledSuccess.tsx +87 -0
  10. package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +497 -0
  11. package/src/components/Success/__tests__/index.spec.tsx +78 -0
  12. package/src/components/Success/index.tsx +129 -0
  13. package/src/components/Tag/StyledTag.tsx +1 -1
  14. package/src/components/Tag/__tests__/Tag.spec.tsx +22 -71
  15. package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +106 -53
  16. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +265 -0
  17. package/src/components/TextInput/__tests__/index.spec.tsx +29 -0
  18. package/src/components/TextInput/index.tsx +6 -1
  19. package/src/index.ts +2 -0
  20. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +33 -3
  21. package/src/theme/components/empty.ts +1 -1
  22. package/src/theme/components/error.ts +1 -1
  23. package/src/theme/components/success.ts +40 -0
  24. package/src/theme/components/tag.ts +1 -1
  25. package/src/theme/getTheme.ts +3 -0
  26. package/src/utils/hooks.ts +1 -1
  27. package/types/components/Success/StyledSuccess.d.ts +54 -0
  28. package/types/components/Success/index.d.ts +42 -0
  29. package/types/components/TextInput/index.d.ts +5 -1
  30. package/types/index.d.ts +2 -1
  31. package/types/theme/components/success.d.ts +32 -0
  32. package/types/theme/getTheme.d.ts +2 -0
@@ -1,9 +1,9 @@
1
- @hero-design/rn:build: cache hit, replaying output ebe8623fbd3e3933
2
- @hero-design/rn:build: $ yarn build:js && yarn build:types
3
- @hero-design/rn:build: $ rollup -c
4
- @hero-design/rn:build: 
5
- @hero-design/rn:build: src/index.ts → lib/index.js, es/index.js...
6
- @hero-design/rn:build: (!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
7
- @hero-design/rn:build: (!) Plugin node-resolve: preferring built-in module 'events' over local alternative at '/root/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning
8
- @hero-design/rn:build: created lib/index.js, es/index.js in 26.8s
9
- @hero-design/rn:build: $ tsc --noEmit false --emitDeclarationOnly --project tsconfig.prod.json
1
+ @hero-design/rn:build: cache hit, replaying output 0a8ceb6db81a9e6a
2
+ @hero-design/rn:build: $ yarn build:js && yarn build:types
3
+ @hero-design/rn:build: $ rollup -c
4
+ @hero-design/rn:build: 
5
+ @hero-design/rn:build: src/index.ts → lib/index.js, es/index.js...
6
+ @hero-design/rn:build: (!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
7
+ @hero-design/rn:build: (!) Plugin node-resolve: preferring built-in module 'events' over local alternative at '/root/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning
8
+ @hero-design/rn:build: created lib/index.js, es/index.js in 26.5s
9
+ @hero-design/rn:build: $ tsc --noEmit false --emitDeclarationOnly --project tsconfig.prod.json