react-gldn-kit 0.1.5 → 0.1.7
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/dist/{4c94314336076d6fec16041ab32c7af5.svg → 0b18d6095e5a5e01b27e1c47bf1ebeb4.svg} +1 -1
- package/dist/{7ec6f5f3bcbce4cd53ca73cb7e054566.svg → 44e37556cab6e2a7ab8cf131dca24fac.svg} +7 -7
- package/dist/{19a58eb7c3630d4b07306a6c3220d970.svg → 7cfac371763ab4ec53896d1456cadc29.svg} +2 -2
- package/dist/{319df1f071ee5d8a40e6abfdc5033808.svg → 807840745cf8259a5f25933495817c5f.svg} +2 -2
- package/dist/{a9758afe3827a85948f984caf2428242.svg → bbfcfc059e66f21a8905fad4ff7d8c47.svg} +2 -2
- package/dist/{495b0365b1bec48e3ed4d6b5050ab787.svg → c44d590ff930f630d3c46b918f89a235.svg} +2 -2
- package/dist/index.js +1 -1
- package/dist/lib/components/Banners/components/PromotionMobileApp/components/ElonAppBanner/index.js +1 -1
- package/dist/lib/components/Banners/components/PromotionMobileApp/components/JabiAppBanner/index.js +1 -1
- package/dist/lib/components/Banners/components/PromotionMobileApp/index.js +1 -1
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/index.d.ts +2 -10
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/index.js +5 -4
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/types.d.ts +8 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/types.js +2 -0
- package/dist/lib/components/Modals/Alert/index.js +48 -1
- package/dist/lib/components/ui/Icons/Base/BonusGiftSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/BurgerSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/CashSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/CoinSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/DownloadSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/LotterySvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/ProfileSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Base/ProvidersBlocksSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Bonuses/VipClub/GreenSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Casino/DefaultImgSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Casino/ProvidersSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Casino/RecommendedSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Casino/TournamentWagerSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Categories/Icons/WagerSvg.js +1 -1
- package/dist/lib/components/ui/Icons/InHouse/ElonHouseSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavBettingLiveSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavBettingSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavBonusesSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavCasinoSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavMyBetsSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavReferralSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Navigation/NavTournamentSvg.js +1 -1
- package/dist/lib/components/ui/Icons/Notifications/SuccessSvg.js +1 -1
- package/dist/lib/components/ui/Tabs/index.js +2 -2
- package/dist/lib/index.d.ts +6 -1
- package/dist/lib/index.js +12 -4
- package/dist/main.css +827 -708
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-gldn-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"keywords": [],
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
"publish": "npm i && npm run build && npm publish",
|
|
14
14
|
"clear": "sudo rm -rf node_modules && npm i",
|
|
15
15
|
"add:react": " npm link ../web-spa/node_modules/react ../web-spa/node_modules/@types/react ../web-spa/node_modules/classnames ../web-spa/node_modules/react-dom ../web-spa/node_modules/@types/react-dom ../web-spa/node_modules/react-responsive-carousel ../web-spa/node_modules/react-easy-swipe ../web-spa/node_modules/react-memory-optimization",
|
|
16
|
+
"add:react-l-b": " npm link ../../../../landing-builder/node_modules/react ../../../../landing-builder/node_modules/@types/react ../../../../landing-builder/node_modules/classnames ../../../../landing-builder/node_modules/react-dom ../../../../landing-builder/node_modules/@types/react-dom ../../../../landing-builder/node_modules/react-memory-optimization",
|
|
16
17
|
"dev:kit": "sudo npm run add:react && npm run dev",
|
|
18
|
+
"dev:kit-lb": "sudo npm run add:react-l-b && npm run dev",
|
|
17
19
|
"dev:kit-win": "npm run add:react && rimraf ./dist/lib && tsc --build tsconfig.json && webpack --watch"
|
|
18
20
|
},
|
|
19
21
|
"devDependencies": {
|