stone-kit 0.0.1045 → 0.0.1049

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 (58) hide show
  1. package/README.md +88 -88
  2. package/dist/FilterWithSave-BxUAZs3U.js +2683 -0
  3. package/dist/components/CheckBoxNew/CheckBoxNew.js +5 -5
  4. package/dist/components/CommercialLotCard/CommercialLotCard.d.ts +1 -1
  5. package/dist/components/CommercialLotCard/CommercialLotCard.js +10 -79
  6. package/dist/components/CommercialLotCard/components/PaymentLink/PaymentLink.d.ts +2 -1
  7. package/dist/components/CommercialLotCard/components/PaymentLink/PaymentLink.js +9 -9
  8. package/dist/components/CommercialLotCard/components/Snippets/Snippets.js +27 -98
  9. package/dist/components/CommercialLotCard/components/Tags/Tags.js +1 -1
  10. package/dist/components/CommercialLotCard/types/CommercialLotCard.types.d.ts +1 -0
  11. package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +26 -54
  12. package/dist/components/FilterWithSave/ui/FilterWithSave.js +7 -323
  13. package/dist/components/FormModal/ui/ModalForm.js +29 -1516
  14. package/dist/components/Logo/ui/Logo.js +6 -6
  15. package/dist/components/LotCard/hooks/useLotCard.js +24 -6
  16. package/dist/components/LotCard/index.js +2 -2
  17. package/dist/components/LotCard/ui/LotCard.js +11 -221
  18. package/dist/components/ModalSuccess/ModalSuccess.js +1 -1
  19. package/dist/components/RoundButton/ui/RoundButton.js +1 -1
  20. package/dist/components/Select/ui/Category.js +2 -2
  21. package/dist/components/Select/ui/Option.js +2 -2
  22. package/dist/components/Select/ui/Select.js +2 -2
  23. package/dist/components/SliderNavigation/ui/SliderNavigation.js +6 -6
  24. package/dist/components/SortSelect/index.js +1 -1
  25. package/dist/components/SortSelect/ui/SortSelect.js +26 -108
  26. package/dist/components/SummarySelect/ui/SummarySelect.js +1 -1
  27. package/dist/components/TabSelect/ui/TabSelect.js +4 -4
  28. package/dist/components/TabSwitcher/index.js +2 -2
  29. package/dist/components/TabSwitcher/ui/TabSwitcher.js +26 -121
  30. package/dist/components/Tag/ui/Tag.js +97 -96
  31. package/dist/components/Tag/ui/Tag.types.d.ts +1 -0
  32. package/dist/components/Tag/ui/Tag.types.js +2 -1
  33. package/dist/layout/components/Header/Header.js +65 -44
  34. package/dist/layout/components/Menu.js +37 -15
  35. package/dist/main.js +65 -70
  36. package/dist/pages/ButtonsPage/Buttons.js +61 -44
  37. package/dist/pages/FormsPage/FormsPage.js +42 -22
  38. package/dist/pages/IconsPage/IconsPage.js +31 -9
  39. package/dist/pages/InputPage/InputPage.js +32 -10
  40. package/dist/pages/LogoPage/LogoPage.js +36 -13
  41. package/dist/pages/LotsPage/LotsPage.js +38 -30
  42. package/dist/pages/LotsPage/const.d.ts +4 -1
  43. package/dist/pages/LotsPage/const.js +30 -4
  44. package/dist/pages/ModalsPage/ModalPage.js +66 -46
  45. package/dist/pages/SelectPage/SelectPage.js +40 -41
  46. package/dist/pages/TabsPage/TabsPage.js +1 -1
  47. package/dist/pages/TagsPage/TagsPage.js +44 -23
  48. package/dist/stone-kit.css +1 -1
  49. package/dist/stories/entities/CommercialLotCard/CommercialLotCard.stories.js +1 -1
  50. package/dist/stories/shared/ui/Button/Button.stories.js +4 -4
  51. package/dist/stories/shared/ui/FilterWithSave/FilterWithSave.stories.js +1 -1
  52. package/dist/stories/shared/ui/FormModal/FormModal.stories.js +7 -7
  53. package/dist/stories/shared/ui/SortSelect/SortSelect.stories.js +1 -1
  54. package/dist/stories/shared/ui/TabSwitcher/TabSwitcher.stories.js +1 -1
  55. package/dist/stories/shared/ui/Tag/Tag.stories.js +4 -4
  56. package/package.json +1 -1
  57. package/dist/useLotCard-D-gK4J_o.js +0 -186
  58. package/dist/{Option-DmDx_xOt.js → Option-DdjBe9yb.js} +1 -1
package/README.md CHANGED
@@ -1,89 +1,89 @@
1
- # Stone-kit
2
-
3
- Uikit for stone redesign 2.0
4
-
5
- ## Installation
6
-
7
- Package installation:
8
-
9
- ```bash
10
- npm i stone-kit@latest
11
- ```
12
-
13
- ## Usage
14
-
15
- For Next.js page router in App.tsx:
16
-
17
- ```bash
18
- import 'stone-kit/dist/style.css'
19
- ```
20
-
21
- and then:
22
-
23
- ```bash
24
- import {Button} from 'stone-kit'
25
- ```
26
-
27
- For other projects u can immediately:
28
-
29
- ```bash
30
- import {Button} from 'stone-kit'
31
- ```
32
-
33
- ## Docs
34
-
35
- ### ButtonProps
36
-
37
- size: optional, size of button. types : 'large' | 'medium' | 'small' | 'tiny'
38
-
39
- pre: optional, insert icon/text before button text. type: ReactNode
40
-
41
- post: optional, insert icon/text after button text. type: ReactNode
42
-
43
- variant: optional, color variants of button. type:
44
- 'blue',
45
- 'gray',
46
- 'whiteStroke',
47
- 'sokolniki',
48
- 'black',
49
- 'whiteFilled'
50
-
51
- width: optional, width of button. type: 'auto' | 'full'
52
-
53
- additionalClass: optional, add your custom class to button. type: 'string'
54
-
55
- as: optional, u can convert button to link. type: 'button' | 'link'. 'button' by default.
56
-
57
- ### MobileButtonProps
58
-
59
- ### Tag
60
-
61
- ## Storybook в Docker
62
-
63
- ### Запуск production-сборки
64
-
65
- Чтобы запустить готовую статическую сборку Storybook с помощью Docker и Nginx:
66
-
67
- 1. Убедитесь, что в корне проекта есть файлы `Dockerfile.prod` и `docker-compose.prod.yml`.
68
- 2. Выполните команду:docker system prune
69
- ```sh
70
- docker compose -f docker-compose.prod.yml up -d --force-recreate
71
- ```
72
- 3. После завершения сборки и запуска, Storybook будет доступен по адресу `http://localhost:8080`.
73
-
74
-
75
- ```
76
- openssl req -x509 -nodes -days 365 \
77
- -newkey rsa:2048 \
78
- -keyout certs/privkey.key \
79
- -out certs/fullchain.crt \
80
- -subj "/CN=storybook.stone.ru"
81
-
82
-
83
-
84
- openssl req -x509 -nodes -newkey rsa:2048 \
85
- -days 365 -subj "/CN=storybook.stone.ru" \
86
- -keyout certs/privkey.key \
87
- -out certs/fullchain.crt
88
-
1
+ # Stone-kit
2
+
3
+ Uikit for stone redesign 2.0
4
+
5
+ ## Installation
6
+
7
+ Package installation:
8
+
9
+ ```bash
10
+ npm i stone-kit@latest
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ For Next.js page router in App.tsx:
16
+
17
+ ```bash
18
+ import 'stone-kit/dist/style.css'
19
+ ```
20
+
21
+ and then:
22
+
23
+ ```bash
24
+ import {Button} from 'stone-kit'
25
+ ```
26
+
27
+ For other projects u can immediately:
28
+
29
+ ```bash
30
+ import {Button} from 'stone-kit'
31
+ ```
32
+
33
+ ## Docs
34
+
35
+ ### ButtonProps
36
+
37
+ size: optional, size of button. types : 'large' | 'medium' | 'small' | 'tiny'
38
+
39
+ pre: optional, insert icon/text before button text. type: ReactNode
40
+
41
+ post: optional, insert icon/text after button text. type: ReactNode
42
+
43
+ variant: optional, color variants of button. type:
44
+ 'blue',
45
+ 'gray',
46
+ 'whiteStroke',
47
+ 'sokolniki',
48
+ 'black',
49
+ 'whiteFilled'
50
+
51
+ width: optional, width of button. type: 'auto' | 'full'
52
+
53
+ additionalClass: optional, add your custom class to button. type: 'string'
54
+
55
+ as: optional, u can convert button to link. type: 'button' | 'link'. 'button' by default.
56
+
57
+ ### MobileButtonProps
58
+
59
+ ### Tag
60
+
61
+ ## Storybook в Docker
62
+
63
+ ### Запуск production-сборки
64
+
65
+ Чтобы запустить готовую статическую сборку Storybook с помощью Docker и Nginx:
66
+
67
+ 1. Убедитесь, что в корне проекта есть файлы `Dockerfile.prod` и `docker-compose.prod.yml`.
68
+ 2. Выполните команду:docker system prune
69
+ ```sh
70
+ docker compose -f docker-compose.prod.yml up -d --force-recreate
71
+ ```
72
+ 3. После завершения сборки и запуска, Storybook будет доступен по адресу `http://localhost:8080`.
73
+
74
+
75
+ ```
76
+ openssl req -x509 -nodes -days 365 \
77
+ -newkey rsa:2048 \
78
+ -keyout certs/privkey.key \
79
+ -out certs/fullchain.crt \
80
+ -subj "/CN=storybook.stone.ru"
81
+
82
+
83
+
84
+ openssl req -x509 -nodes -newkey rsa:2048 \
85
+ -days 365 -subj "/CN=storybook.stone.ru" \
86
+ -keyout certs/privkey.key \
87
+ -out certs/fullchain.crt
88
+
89
89
  ```