@loja-integrada/admin-components 0.13.1 → 0.14.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loja-integrada/admin-components",
3
- "version": "0.13.1",
3
+ "version": "0.14.0",
4
4
  "author": "Loja Integrada Front-End Team",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -86,7 +86,7 @@
86
86
  "@types/react-table": "^7.7.1",
87
87
  "@types/react-text-mask": "^5.4.8",
88
88
  "@types/styled-components": "^5.1.14",
89
- "autoprefixer": "^9",
89
+ "autoprefixer": "^10.4.4",
90
90
  "babel-loader": "^8.2.2",
91
91
  "babel-plugin-module-name-mapper": "^1.2.0",
92
92
  "chromatic": "^5.9.2",
@@ -95,26 +95,30 @@
95
95
  "husky": "^5.1.3",
96
96
  "identity-obj-proxy": "^3.0.0",
97
97
  "list-selectors": "^2.0.0",
98
- "postcss": "^8",
98
+ "postcss": "^8.4.12",
99
99
  "postcss-loader": "^4.2.0",
100
100
  "react-is": "^17.0.1",
101
101
  "rollup-plugin-postcss": "^4.0.0",
102
102
  "size-limit": "^4.11.0",
103
103
  "storybook-addon-designs": "^6.2.1",
104
- "tailwindcss": "^2.2.4",
104
+ "tailwindcss": "^3.0.23",
105
105
  "tsdx": "^0.14.1",
106
106
  "tslib": "^2.1.0",
107
107
  "typescript": "^4.2.3",
108
108
  "webpack-dev-server": "^3.11.2"
109
109
  },
110
110
  "peerDependency": {
111
+ "@loja-integrada/tailwindcss-config": ">=1.5.0",
111
112
  "react": ">=17.0.1",
112
- "react-dom": ">=17.0.1"
113
+ "react-dom": ">=17.0.1",
114
+ "tailwindcss": ">=3.0.0"
113
115
  },
114
116
  "dependencies": {
115
- "@loja-integrada/tailwindcss-config": "^1.4.1",
117
+ "@loja-integrada/tailwindcss-config": "^1.5.0",
116
118
  "@tippyjs/react": "^4.2.5",
117
119
  "@types/react-select": "^4.0.17",
120
+ "react": "^17.0.2",
121
+ "react-dom": "^17.0.2",
118
122
  "react-modal": "^3.14.3",
119
123
  "react-select": "^4.3.1",
120
124
  "react-table": "^7.7.0",
@@ -9,6 +9,6 @@ export default {
9
9
  args: {},
10
10
  } as Meta
11
11
 
12
- const Template: Story<LoadingPlaceholderProps> = args => <LoadingPlaceholder {...args} />
12
+ const Template: Story<LoadingPlaceholderProps> = args => <div className="w-40"><LoadingPlaceholder {...args} /></div>
13
13
 
14
14
  export const Default = Template.bind({})