@soppiya/app-bridge 1.1.7 → 1.1.8
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/components/collections-pciker/api/query.d.ts +5 -2
- package/dist/components/collections-pciker/api/query.js +8 -8
- package/dist/components/collections-pciker/model/useCollections.d.ts +1 -1
- package/dist/components/collections-pciker/model/useCollections.js +3 -4
- package/dist/components/country-picker/api/query.d.ts +8 -0
- package/dist/components/country-picker/api/query.js +19 -0
- package/dist/components/country-picker/index.d.ts +1 -0
- package/dist/components/country-picker/index.js +2 -0
- package/dist/components/country-picker/model/useContry.d.ts +26 -0
- package/dist/components/country-picker/model/useContry.js +48 -0
- package/dist/components/country-picker/ui/CountryPicker.d.ts +9 -0
- package/dist/components/country-picker/ui/CountryPicker.js +114 -0
- package/dist/components/country-picker/ui/CountryPicker.stories.d.ts +12 -0
- package/dist/components/country-picker/ui/CountryPicker.stories.js +11 -0
- package/dist/components/customers-picker/api/query.d.ts +8 -0
- package/dist/components/customers-picker/api/query.js +22 -0
- package/dist/components/customers-picker/index.d.ts +1 -0
- package/dist/components/customers-picker/index.js +2 -0
- package/dist/components/customers-picker/model/useCustomers.d.ts +30 -0
- package/dist/components/customers-picker/model/useCustomers.js +48 -0
- package/dist/components/customers-picker/ui/CustomersPicker.d.ts +9 -0
- package/dist/components/customers-picker/ui/CustomersPicker.js +113 -0
- package/dist/components/customers-picker/ui/CustomersPicker.stories.d.ts +12 -0
- package/dist/components/customers-picker/ui/CustomersPicker.stories.js +11 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +3 -0
- package/dist/components/segments-picker/api/query.d.ts +8 -0
- package/dist/components/segments-picker/api/query.js +18 -0
- package/dist/components/segments-picker/index.d.ts +1 -0
- package/dist/components/segments-picker/index.js +2 -0
- package/dist/components/segments-picker/model/useSegments.d.ts +25 -0
- package/dist/components/segments-picker/model/useSegments.js +48 -0
- package/dist/components/segments-picker/ui/SegmentsPicker.d.ts +9 -0
- package/dist/components/segments-picker/ui/SegmentsPicker.js +105 -0
- package/dist/components/segments-picker/ui/SegmentsPicker.stories.d.ts +12 -0
- package/dist/components/segments-picker/ui/SegmentsPicker.stories.js +11 -0
- package/dist/shared/graphql/gql.d.ts +17 -2
- package/dist/shared/graphql/gql.js +5 -2
- package/dist/shared/graphql/graphql.d.ts +150 -38
- package/dist/shared/graphql/graphql.js +1303 -284
- package/dist/styles.css +12 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -400,6 +400,10 @@
|
|
|
400
400
|
height: 100% !important;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.h-5\! {
|
|
404
|
+
height: calc(var(--spacing) * 5) !important;
|
|
405
|
+
}
|
|
406
|
+
|
|
403
407
|
.h-\[50px\] {
|
|
404
408
|
height: 50px;
|
|
405
409
|
}
|
|
@@ -440,6 +444,10 @@
|
|
|
440
444
|
width: 100% !important;
|
|
441
445
|
}
|
|
442
446
|
|
|
447
|
+
.w-\[30px\]\! {
|
|
448
|
+
width: 30px !important;
|
|
449
|
+
}
|
|
450
|
+
|
|
443
451
|
.w-\[50px\] {
|
|
444
452
|
width: 50px;
|
|
445
453
|
}
|
|
@@ -652,6 +660,10 @@
|
|
|
652
660
|
padding-bottom: calc(var(--spacing) * 4);
|
|
653
661
|
}
|
|
654
662
|
|
|
663
|
+
.capitalize\! {
|
|
664
|
+
text-transform: capitalize !important;
|
|
665
|
+
}
|
|
666
|
+
|
|
655
667
|
.underline {
|
|
656
668
|
text-decoration-line: underline;
|
|
657
669
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soppiya/app-bridge",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@apollo/client": "^4.0.7",
|
|
63
|
-
"@soppiya/elementus": "^1.
|
|
63
|
+
"@soppiya/elementus": "^1.2.4",
|
|
64
64
|
"@uidotdev/usehooks": "^2.4.1",
|
|
65
65
|
"classnames": "^2.5.1",
|
|
66
66
|
"lodash": "^4.17.21",
|