unifyedx-storybook-new 0.1.20 → 0.1.22
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
CHANGED
|
@@ -47,3 +47,9 @@ yarn add unifyedx-storybook-new@latest
|
|
|
47
47
|
# install peers your lib expects (react, router, headlessui, etc.)
|
|
48
48
|
npm i react react-dom react-router-dom @headlessui/react framer-motion @floating-ui/react
|
|
49
49
|
```
|
|
50
|
+
|
|
51
|
+
### css usage
|
|
52
|
+
|
|
53
|
+
```js
|
|
54
|
+
import "unifyedx-storybook-new/style.css";
|
|
55
|
+
```
|
|
@@ -47920,6 +47920,22 @@ function filePermissionsApi() {
|
|
|
47920
47920
|
return `${myDriveGatewayBaseV2()}/file/permissions`;
|
|
47921
47921
|
}
|
|
47922
47922
|
|
|
47923
|
+
/** If you still want a snapshot, make it LAZY so it doesn't run at import time */
|
|
47924
|
+
function getSnapshot() {
|
|
47925
|
+
return Object.freeze({
|
|
47926
|
+
REACT_APP_BASE_URL: getBaseUrl(),
|
|
47927
|
+
GATEWAY_BASE: gatewayBase(),
|
|
47928
|
+
USER_SEARCH_BASE: userSearchBase(),
|
|
47929
|
+
AD_GROUPS_LIST_SEARCH_API: adGroupsListSearchApi(),
|
|
47930
|
+
PROVISIONING_BASE: provisioningBase(),
|
|
47931
|
+
RBAC_BASE: rbacBase(),
|
|
47932
|
+
SEARCH_ROLES_API: searchRolesApi(),
|
|
47933
|
+
MY_DRIVE_GATEWAY_BASE_v2: myDriveGatewayBaseV2(),
|
|
47934
|
+
DIRECTORY_PERMISSIONS_API: directoryPermissionsApi(),
|
|
47935
|
+
FILE_PERMISSIONS_API: filePermissionsApi(),
|
|
47936
|
+
});
|
|
47937
|
+
}
|
|
47938
|
+
|
|
47923
47939
|
function bind(fn, thisArg) {
|
|
47924
47940
|
return function wrap() {
|
|
47925
47941
|
return fn.apply(thisArg, arguments);
|
|
@@ -70320,5 +70336,5 @@ const AddUserGroupsRolesModal = ({
|
|
|
70320
70336
|
] }) });
|
|
70321
70337
|
};
|
|
70322
70338
|
|
|
70323
|
-
export { AddUserGroupsRolesModal, Avatar, AvatarGroup, Badge, Breadcrumbs, Button$1 as Button, Checkbox, DatePicker, DateRangePicker$1 as DateRangePicker, FileUploadModal, FullScreenLoader, GenericFilter, Input, Modal, OptionsMenu, PageHeader, PageLayout, Pagination, RadioGroup, SearchBar, Select, Sidebar, Spinner, Textarea, ToggleSwitch, Tooltip, UnifyedCoreButton, WizardModal, axiosDelete, axiosGet, axiosPatch, axiosPost, axiosPut, cookies$1 as cookies, createHttpClient, http, localStore, sessionStore };
|
|
70339
|
+
export { AddUserGroupsRolesModal, Avatar, AvatarGroup, Badge, Breadcrumbs, Button$1 as Button, Checkbox, DatePicker, DateRangePicker$1 as DateRangePicker, FileUploadModal, FullScreenLoader, GenericFilter, Input, Modal, OptionsMenu, PageHeader, PageLayout, Pagination, RadioGroup, SearchBar, Select, Sidebar, Spinner, Textarea, ToggleSwitch, Tooltip, UnifyedCoreButton, WizardModal, adGroupsListSearchApi, axiosDelete, axiosGet, axiosPatch, axiosPost, axiosPut, cookies$1 as cookies, createHttpClient, directoryPermissionsApi, filePermissionsApi, gateWayUrl, gatewayBase, getBaseUrl, getSnapshot, http, localStore, myDriveGatewayBaseV2, provisioningBase, rbacBase, searchRolesApi, sessionStore, userSearchBase };
|
|
70324
70340
|
//# sourceMappingURL=unifyedx-storybook-new.es.js.map
|