hasting-swatchcart-module 0.0.13 → 0.0.15
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/README.md +38 -73
- package/dist/assets/index-CIC-ELYe.js +209 -0
- package/dist/index.html +14 -0
- package/dist/vite.svg +1 -0
- package/package.json +1 -1
- package/dist/components/SwatchesModule.d.ts +0 -10
- package/dist/components/Test.d.ts +0 -1
- package/dist/main.cjs +0 -153
- package/dist/main.d.ts +0 -2
- package/dist/main.js +0 -36512
- package/dist/store/LibraryProvider.d.ts +0 -4
- package/dist/store/rootReducer.d.ts +0 -11
- package/dist/store/store.d.ts +0 -25
- package/dist/store/withStore.d.ts +0 -2
- /package/dist/assets/{main.css → index-BYDUMtWR.css} +0 -0
package/README.md
CHANGED
|
@@ -1,73 +1,38 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
},
|
|
40
|
-
// other options...
|
|
41
|
-
},
|
|
42
|
-
},
|
|
43
|
-
]);
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
|
47
|
-
|
|
48
|
-
```js
|
|
49
|
-
// eslint.config.js
|
|
50
|
-
import reactX from 'eslint-plugin-react-x';
|
|
51
|
-
import reactDom from 'eslint-plugin-react-dom';
|
|
52
|
-
|
|
53
|
-
export default defineConfig([
|
|
54
|
-
globalIgnores(['dist']),
|
|
55
|
-
{
|
|
56
|
-
files: ['**/*.{ts,tsx}'],
|
|
57
|
-
extends: [
|
|
58
|
-
// Other configs...
|
|
59
|
-
// Enable lint rules for React
|
|
60
|
-
reactX.configs['recommended-typescript'],
|
|
61
|
-
// Enable lint rules for React DOM
|
|
62
|
-
reactDom.configs.recommended,
|
|
63
|
-
],
|
|
64
|
-
languageOptions: {
|
|
65
|
-
parserOptions: {
|
|
66
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
67
|
-
tsconfigRootDir: import.meta.dirname,
|
|
68
|
-
},
|
|
69
|
-
// other options...
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
]);
|
|
73
|
-
```
|
|
1
|
+
# hasting-swatchcart-module
|
|
2
|
+
|
|
3
|
+
For running this module you need to provide the next props
|
|
4
|
+
|
|
5
|
+
## isOpen
|
|
6
|
+
|
|
7
|
+
Type - boolean
|
|
8
|
+
Required - true
|
|
9
|
+
|
|
10
|
+
Controls visibility of the module (module state). true → module is visible.
|
|
11
|
+
|
|
12
|
+
## uiDataType
|
|
13
|
+
|
|
14
|
+
Type - 'UI' | 'DATA_INPUT' | 'DATA_ALL_PRODUCT',
|
|
15
|
+
Required - true
|
|
16
|
+
|
|
17
|
+
Defines type data mode. Rendered data depends on this parameter
|
|
18
|
+
|
|
19
|
+
## data
|
|
20
|
+
|
|
21
|
+
Type - any[] (recommended: AttributeValue[])
|
|
22
|
+
Required - true
|
|
23
|
+
|
|
24
|
+
Array of material/swatches data. Passed to the module to render swatch cards.
|
|
25
|
+
|
|
26
|
+
## onToggleSidebar
|
|
27
|
+
|
|
28
|
+
Type - () => void
|
|
29
|
+
Required - true
|
|
30
|
+
|
|
31
|
+
This method uses for open/close this module.
|
|
32
|
+
|
|
33
|
+
## onSendData
|
|
34
|
+
|
|
35
|
+
Type - (selected: any[]) => void
|
|
36
|
+
Required - true
|
|
37
|
+
|
|
38
|
+
Callback that returns selected materials from the cart back to the parent application.
|