sharedui2 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +25 -0
- package/build/robots.txt +3 -0
- package/package.json +2 -2
- package/craco.config.js +0 -52
- package/dist/shared.js +0 -3
- package/dist/shared.js.LICENSE.txt +0 -9
- package/dist/shared.js.map +0 -1
- package/src/App.js +0 -20
- package/src/App.less +0 -38
- package/src/App.test.js +0 -23
- package/src/assets/citrix-animation.gif +0 -0
- package/src/assets/citrix.svg +0 -30
- package/src/assets/close-btn.svg +0 -9
- package/src/assets/error.svg +0 -10
- package/src/assets/fonts/PublicSans-ExtraLight.woff +0 -0
- package/src/assets/fonts/PublicSans-ExtraLight.woff2 +0 -0
- package/src/assets/fonts/PublicSans-ExtraLightItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-ExtraLightItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Italic.woff +0 -0
- package/src/assets/fonts/PublicSans-Italic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Light.woff +0 -0
- package/src/assets/fonts/PublicSans-Light.woff2 +0 -0
- package/src/assets/fonts/PublicSans-LightItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-LightItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Medium.woff +0 -0
- package/src/assets/fonts/PublicSans-Medium.woff2 +0 -0
- package/src/assets/fonts/PublicSans-MediumItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-MediumItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Regular.woff +0 -0
- package/src/assets/fonts/PublicSans-Regular.woff2 +0 -0
- package/src/assets/fonts/PublicSans-SemiBold.woff +0 -0
- package/src/assets/fonts/PublicSans-SemiBold.woff2 +0 -0
- package/src/assets/fonts/PublicSans-SemiBoldItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
- package/src/assets/globe.svg +0 -44
- package/src/assets/rebranded/close-btn.svg +0 -11
- package/src/assets/rebranded/error.svg +0 -13
- package/src/assets/rebranded/globe.svg +0 -21
- package/src/assets/rebranded/success.svg +0 -12
- package/src/assets/rebranded/workspaceVertical.svg +0 -12
- package/src/assets/spinner-dark.svg +0 -6
- package/src/assets/spinner-light.svg +0 -6
- package/src/assets/success.svg +0 -10
- package/src/assets/workspaceHorizontal.svg +0 -44
- package/src/assets/workspaceVertical.svg +0 -42
- package/src/components/ws-button/index.js +0 -4
- package/src/components/ws-button/ws-button.component.jsx +0 -48
- package/src/components/ws-button/ws-button.component.less +0 -100
- package/src/components/ws-button/ws-button.component.test.js +0 -11
- package/src/components/ws-button/ws-buttons.component.jsx +0 -60
- package/src/components/ws-button/ws-buttons.component.test.js +0 -18
- package/src/index.js +0 -18
- package/src/index.less +0 -13
- package/src/logo.svg +0 -1
- package/src/main.js +0 -1
- package/src/reportWebVitals.js +0 -13
- package/src/setupTests.js +0 -5
- package/webpack.config.js +0 -15
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"short_name": "React App",
|
3
|
+
"name": "Create React App Sample",
|
4
|
+
"icons": [
|
5
|
+
{
|
6
|
+
"src": "favicon.ico",
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
8
|
+
"type": "image/x-icon"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "logo192.png",
|
12
|
+
"type": "image/png",
|
13
|
+
"sizes": "192x192"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"src": "logo512.png",
|
17
|
+
"type": "image/png",
|
18
|
+
"sizes": "512x512"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"start_url": ".",
|
22
|
+
"display": "standalone",
|
23
|
+
"theme_color": "#000000",
|
24
|
+
"background_color": "#ffffff"
|
25
|
+
}
|
package/build/robots.txt
ADDED
package/package.json
CHANGED
package/craco.config.js
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
const path = require("path");
|
2
|
-
|
3
|
-
module.exports = {
|
4
|
-
webpack: {
|
5
|
-
configure: (webpackConfig) => {
|
6
|
-
// Set the entry point to the specific component
|
7
|
-
webpackConfig.entry = path.resolve(__dirname, "src/components/ws-button/ws-button.component.jsx");
|
8
|
-
|
9
|
-
|
10
|
-
// Set the output to a library format (e.g., UMD or ES Modules)
|
11
|
-
webpackConfig.output = {
|
12
|
-
path: path.resolve(__dirname, "dist"), // Output directory
|
13
|
-
filename: "ws-button.component.jsx", // Output file
|
14
|
-
library: "SharedLibrary", // Library name
|
15
|
-
libraryTarget: "umd", // Export as UMD module
|
16
|
-
globalObject: "this", // Ensure compatibility with Node.js
|
17
|
-
};
|
18
|
-
|
19
|
-
// Ensure React is treated as an external dependency (if required)
|
20
|
-
webpackConfig.externals = {
|
21
|
-
react: "React",
|
22
|
-
"react-dom": "ReactDOM",
|
23
|
-
};
|
24
|
-
|
25
|
-
// Add Less support
|
26
|
-
const rules = webpackConfig.module.rules.find(rule => Array.isArray(rule.oneOf)).oneOf;
|
27
|
-
|
28
|
-
rules.unshift({
|
29
|
-
test: /\.less$/,
|
30
|
-
use: [
|
31
|
-
{
|
32
|
-
loader: require.resolve('style-loader')
|
33
|
-
},
|
34
|
-
{
|
35
|
-
loader: require.resolve('css-loader')
|
36
|
-
},
|
37
|
-
{
|
38
|
-
loader: require.resolve('less-loader'),
|
39
|
-
options: {
|
40
|
-
lessOptions: {
|
41
|
-
javascriptEnabled: true, // Allows JS inside Less
|
42
|
-
},
|
43
|
-
},
|
44
|
-
},
|
45
|
-
],
|
46
|
-
});
|
47
|
-
|
48
|
-
return webpackConfig;
|
49
|
-
},
|
50
|
-
},
|
51
|
-
};
|
52
|
-
|
package/dist/shared.js
DELETED
@@ -1,3 +0,0 @@
|
|
1
|
-
/*! For license information please see shared.js.LICENSE.txt */
|
2
|
-
!function(n,e){"object"===typeof exports&&"object"===typeof module?module.exports=e(require("React")):"function"===typeof define&&define.amd?define(["React"],e):"object"===typeof exports?exports.SharedLibrary=e(require("React")):n.SharedLibrary=e(n.React)}(this,(n=>(()=>{"use strict";var e={424:n=>{n.exports=function(n){var e=[];return e.toString=function(){return this.map((function(e){var o="",r="undefined"!==typeof e[5];return e[4]&&(o+="@supports (".concat(e[4],") {")),e[2]&&(o+="@media ".concat(e[2]," {")),r&&(o+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),o+=n(e),r&&(o+="}"),e[2]&&(o+="}"),e[4]&&(o+="}"),o})).join("")},e.i=function(n,o,r,t,a){"string"===typeof n&&(n=[[null,n,void 0]]);var s={};if(r)for(var c=0;c<this.length;c++){var i=this[c][0];null!=i&&(s[i]=!0)}for(var A=0;A<n.length;A++){var u=[].concat(n[A]);r&&s[u[0]]||("undefined"!==typeof a&&("undefined"===typeof u[5]||(u[1]="@layer".concat(u[5].length>0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),o&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=o):u[2]=o),t&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=t):u[4]="".concat(t)),e.push(u))}},e}},963:n=>{n.exports=function(n,e){return e||(e={}),n?(n=String(n.__esModule?n.default:n),/^['"].*['"]$/.test(n)&&(n=n.slice(1,-1)),e.hash&&(n+=e.hash),/["'() \t\n]|(%20)/.test(n)||e.needQuotes?'"'.concat(n.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):n):n}},136:n=>{n.exports=function(n){var e=n[1],o=n[3];if(!o)return e;if("function"===typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),t="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),a="/*# ".concat(t," */");return[e].concat([a]).join("\n")}return[e].join("\n")}},998:(n,e,o)=>{var r=o(883),t=Symbol.for("react.element"),a=Symbol.for("react.fragment"),s=Object.prototype.hasOwnProperty,c=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,i={key:!0,ref:!0,__self:!0,__source:!0};function A(n,e,o){var r,a={},A=null,u=null;for(r in void 0!==o&&(A=""+o),void 0!==e.key&&(A=""+e.key),void 0!==e.ref&&(u=e.ref),e)s.call(e,r)&&!i.hasOwnProperty(r)&&(a[r]=e[r]);if(n&&n.defaultProps)for(r in e=n.defaultProps)void 0===a[r]&&(a[r]=e[r]);return{$$typeof:t,type:n,key:A,ref:u,props:a,_owner:c.current}}e.jsx=A},446:(n,e,o)=>{n.exports=o(998)},994:(n,e,o)=>{o.d(e,{A:()=>b});var r=o(136),t=o.n(r),a=o(424),s=o.n(a),c=o(963),i=o.n(c),A=new URL(o(226),o.b),u=new URL(o(714),o.b),d=s()(t()),l=i()(A),p=i()(u);d.push([n.id,`.ws-button {\n cursor: pointer;\n display: inline-block;\n font-size: 16px;\n font-weight: 600;\n text-align: center;\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\n user-select: none;\n width: 100%;\n}\n.ws-button-default {\n border-radius: 20px;\n height: 40px;\n}\n.ws-button-baby {\n border-radius: 12px;\n height: 24px;\n}\n.ws-button-loading {\n background-color: #05758a;\n border: none;\n}\n.ws-button-loading-content-light {\n background-image: url(${l});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button-loading-content-dark {\n background-image: url(${p});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button:focus {\n outline: none;\n}\n.ws-button-primary,\n.ws-button-primary-loading {\n background-color: #05758a;\n border: none;\n color: #ffffff;\n}\n.ws-button-primary-loading {\n cursor: none;\n}\n.ws-button-primary:hover {\n background-color: #005463;\n}\n.ws-button-primary.disabled,\n.ws-button-primary[disabled] {\n background-color: #82bac4;\n border: none;\n cursor: none;\n}\n.ws-button-secondary,\n.ws-button-secondary-loading {\n background-color: #ffffff;\n border: 2px solid #05758a;\n color: #05758a;\n}\n.ws-button-secondary-loading {\n cursor: none;\n}\n.ws-button-secondary:hover {\n border: 2px solid #005463;\n color: #005463;\n}\n.ws-button-secondary.disabled,\n.ws-button-secondary[disabled] {\n background-color: #ffffff;\n border: 2px solid #82bac4;\n color: #82bac4;\n cursor: none;\n}\n`,"",{version:3,sources:["webpack://./src/components/ws-button/ws-button.component.less"],names:[],mappings:"AAIA;EACI,eAAA;EACA,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;EACA,yEAAA;EACA,iBAAA;EACA,WAAA;AAHJ;AAKI;EACI,mBAAA;EACA,YAAA;AAHR;AAMI;EACI,mBAAA;EACA,YAAA;AAJR;AAOI;EACI,yBAAA;EACA,YAAA;AALR;AAQI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AANR;AAUI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AARR;AAYA;EACI,aAAA;AAVJ;AAcA;;EAEI,yBAAA;EACA,YAAA;EACA,cAAA;AAZJ;AAeA;EACI,YAAA;AAbJ;AAgBA;EACI,yBAAA;AAdJ;AAiBA;;EAEI,yBAAA;EACA,YAAA;EACA,YAAA;AAfJ;AAmBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;AAjBJ;AAoBA;EACI,YAAA;AAlBJ;AAqBA;EACI,yBAAA;EACA,cAAA;AAnBJ;AAsBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;EACA,YAAA;AApBJ",sourcesContent:["// Copyright \xa9 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.\n\n@import (reference) '../../../theme.less';\n\n.ws-button {\n cursor: pointer;\n display: inline-block;\n font-size: 16px;\n font-weight: 600;\n text-align: center;\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\n user-select: none;\n width: 100%;\n\n &-default {\n border-radius: 20px;\n height: 40px;\n }\n\n &-baby {\n border-radius: 12px;\n height: 24px;\n }\n\n &-loading {\n background-color: @ws-button-primary-background-color;\n border: none;\n }\n\n &-loading-content-light {\n background-image: url('../../assets/spinner-light.svg');\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n \n }\n\n &-loading-content-dark {\n background-image: url('../../assets/spinner-dark.svg');\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n }\n}\n\n.ws-button:focus {\n outline: none;\n}\n\n// primary button\n.ws-button-primary, \n.ws-button-primary-loading {\n background-color: @ws-button-primary-background-color;\n border: none;\n color: @ws-button-primary-text-color;\n}\n\n.ws-button-primary-loading {\n cursor: none;\n}\n\n.ws-button-primary:hover {\n background-color: @ws-button-primary-background-color-hover;\n}\n\n.ws-button-primary.disabled, \n.ws-button-primary[disabled] {\n background-color: @ws-button-primary-background-color-disabled;\n border: none;\n cursor: none;\n}\n\n// secondary button\n.ws-button-secondary,\n.ws-button-secondary-loading {\n background-color: @ws-button-secondary-background-color;\n border: 2px solid @ws-button-secondary-border-color;\n color: @ws-button-secondary-text-color;\n}\n\n.ws-button-secondary-loading {\n cursor: none;\n}\n\n.ws-button-secondary:hover {\n border: 2px solid @ws-button-secondary-border-hover;\n color: @ws-button-secondary-text-color-hover;\n}\n\n.ws-button-secondary.disabled, \n.ws-button-secondary[disabled] {\n background-color: @ws-button-secondary-background-color-disabled;\n border: 2px solid @ws-button-secondary-border-hover-disabled;\n color: @ws-button-secondary-text-color-disabled;\n cursor: none;\n}\n"],sourceRoot:""}]);const b=d},186:n=>{var e=[];function o(n){for(var o=-1,r=0;r<e.length;r++)if(e[r].identifier===n){o=r;break}return o}function r(n,r){for(var a={},s=[],c=0;c<n.length;c++){var i=n[c],A=r.base?i[0]+r.base:i[0],u=a[A]||0,d="".concat(A," ").concat(u);a[A]=u+1;var l=o(d),p={css:i[1],media:i[2],sourceMap:i[3],supports:i[4],layer:i[5]};if(-1!==l)e[l].references++,e[l].updater(p);else{var b=t(p,r);r.byIndex=c,e.splice(c,0,{identifier:d,updater:b,references:1})}s.push(d)}return s}function t(n,e){var o=e.domAPI(e);o.update(n);return function(e){if(e){if(e.css===n.css&&e.media===n.media&&e.sourceMap===n.sourceMap&&e.supports===n.supports&&e.layer===n.layer)return;o.update(n=e)}else o.remove()}}n.exports=function(n,t){var a=r(n=n||[],t=t||{});return function(n){n=n||[];for(var s=0;s<a.length;s++){var c=o(a[s]);e[c].references--}for(var i=r(n,t),A=0;A<a.length;A++){var u=o(a[A]);0===e[u].references&&(e[u].updater(),e.splice(u,1))}a=i}}},433:n=>{var e={};n.exports=function(n,o){var r=function(n){if("undefined"===typeof e[n]){var o=document.querySelector(n);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(r){o=null}e[n]=o}return e[n]}(n);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(o)}},990:n=>{n.exports=function(n){var e=document.createElement("style");return n.setAttributes(e,n.attributes),n.insert(e,n.options),e}},626:(n,e,o)=>{n.exports=function(n){var e=o.nc;e&&n.setAttribute("nonce",e)}},155:n=>{n.exports=function(n){if("undefined"===typeof document)return{update:function(){},remove:function(){}};var e=n.insertStyleElement(n);return{update:function(o){!function(n,e,o){var r="";o.supports&&(r+="@supports (".concat(o.supports,") {")),o.media&&(r+="@media ".concat(o.media," {"));var t="undefined"!==typeof o.layer;t&&(r+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),r+=o.css,t&&(r+="}"),o.media&&(r+="}"),o.supports&&(r+="}");var a=o.sourceMap;a&&"undefined"!==typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),e.styleTagTransform(r,n,e.options)}(e,n,o)},remove:function(){!function(n){if(null===n.parentNode)return!1;n.parentNode.removeChild(n)}(e)}}}},827:n=>{n.exports=function(n,e){if(e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}},714:(n,e,o)=>{n.exports=o.p+"65512c09253771cf0875.svg"},226:(n,e,o)=>{n.exports=o.p+"b0f8f368da08f13ab31d.svg"},883:e=>{e.exports=n}},o={};function r(n){var t=o[n];if(void 0!==t)return t.exports;var a=o[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.m=e,r.n=n=>{var e=n&&n.__esModule?()=>n.default:()=>n;return r.d(e,{a:e}),e},r.d=(n,e)=>{for(var o in e)r.o(e,o)&&!r.o(n,o)&&Object.defineProperty(n,o,{enumerable:!0,get:e[o]})},r.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(n){if("object"===typeof window)return window}}(),r.o=(n,e)=>Object.prototype.hasOwnProperty.call(n,e),r.r=n=>{"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},(()=>{var n;r.g.importScripts&&(n=r.g.location+"");var e=r.g.document;if(!n&&e&&(e.currentScript&&"SCRIPT"===e.currentScript.tagName.toUpperCase()&&(n=e.currentScript.src),!n)){var o=e.getElementsByTagName("script");if(o.length)for(var t=o.length-1;t>-1&&(!n||!/^http(s?):/.test(n));)n=o[t--].src}if(!n)throw new Error("Automatic publicPath is not supported in this browser");n=n.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=n})(),r.b=document.baseURI||self.location.href,r.nc=void 0;var t={};r.r(t),r.d(t,{WsButton:()=>w});r(883);var a=r(186),s=r.n(a),c=r(155),i=r.n(c),A=r(433),u=r.n(A),d=r(626),l=r.n(d),p=r(990),b=r.n(p),f=r(827),y=r.n(f),g=r(994),h={};h.styleTagTransform=y(),h.setAttributes=l(),h.insert=u().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=b();s()(g.A,h);g.A&&g.A.locals&&g.A.locals;var m=r(446);const w=function(n){let{id:e,children:o,disabled:r,isLoading:t,name:a,onClick:s,size:c,tabIndex:i,type:A,value:u,variant:d}=n;const l=["ws-button"];c&&"default"!==c?"baby"===c&&l.push("ws-button-baby"):l.push("ws-button-default");let p=null;return t?(l.push("ws-button-loading"),"primary"===d?p=(0,m.jsx)("div",{className:"ws-button-loading-content-light"}):"secondary"===d&&(p=(0,m.jsx)("div",{className:"ws-button-loading-content-dark"})),"primary"===d?l.push("ws-button-primary-loading"):"secondary"===d&&l.push("ws-button-secondary-loading")):"primary"===d?l.push("ws-button-primary"):"secondary"===d&&l.push("ws-button-secondary"),(0,m.jsx)("button",{"data-testid":"ws-button.component",className:l.join(" "),disabled:r,id:e,name:a,onClick:s,tabIndex:i,type:A,value:u,children:p||o})};return t})()));
|
3
|
-
//# sourceMappingURL=shared.js.map
|
package/dist/shared.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"shared.js","mappings":"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","sources":["webpack://SharedLibrary/webpack/universalModuleDefinition","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/api.js","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/getUrl.js","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/sourceMaps.js","webpack://SharedLibrary/./node_modules/react/cjs/react-jsx-runtime.production.min.js","webpack://SharedLibrary/./node_modules/react/jsx-runtime.js","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.less","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/insertBySelector.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/insertStyleElement.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/styleDomAPI.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/styleTagTransform.js","webpack://SharedLibrary/external umd \"React\"","webpack://SharedLibrary/webpack/bootstrap","webpack://SharedLibrary/webpack/runtime/compat get default export","webpack://SharedLibrary/webpack/runtime/define property getters","webpack://SharedLibrary/webpack/runtime/global","webpack://SharedLibrary/webpack/runtime/hasOwnProperty shorthand","webpack://SharedLibrary/webpack/runtime/make namespace object","webpack://SharedLibrary/webpack/runtime/publicPath","webpack://SharedLibrary/webpack/runtime/jsonp chunk loading","webpack://SharedLibrary/webpack/runtime/nonce","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.less?e069","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.jsx"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"React\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"React\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"SharedLibrary\"] = factory(require(\"React\"));\n\telse\n\t\troot[\"SharedLibrary\"] = factory(root[\"React\"]);\n})(this, (__WEBPACK_EXTERNAL_MODULE__883__) => {\nreturn ","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\nmodule.exports = function (cssWithMappingToString) {\n var list = [];\n\n // return the list of modules as css string\n list.toString = function toString() {\n return this.map(function (item) {\n var content = \"\";\n var needLayer = typeof item[5] !== \"undefined\";\n if (item[4]) {\n content += \"@supports (\".concat(item[4], \") {\");\n }\n if (item[2]) {\n content += \"@media \".concat(item[2], \" {\");\n }\n if (needLayer) {\n content += \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\");\n }\n content += cssWithMappingToString(item);\n if (needLayer) {\n content += \"}\";\n }\n if (item[2]) {\n content += \"}\";\n }\n if (item[4]) {\n content += \"}\";\n }\n return content;\n }).join(\"\");\n };\n\n // import a list of modules into the list\n list.i = function i(modules, media, dedupe, supports, layer) {\n if (typeof modules === \"string\") {\n modules = [[null, modules, undefined]];\n }\n var alreadyImportedModules = {};\n if (dedupe) {\n for (var k = 0; k < this.length; k++) {\n var id = this[k][0];\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n for (var _k = 0; _k < modules.length; _k++) {\n var item = [].concat(modules[_k]);\n if (dedupe && alreadyImportedModules[item[0]]) {\n continue;\n }\n if (typeof layer !== \"undefined\") {\n if (typeof item[5] === \"undefined\") {\n item[5] = layer;\n } else {\n item[1] = \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\").concat(item[1], \"}\");\n item[5] = layer;\n }\n }\n if (media) {\n if (!item[2]) {\n item[2] = media;\n } else {\n item[1] = \"@media \".concat(item[2], \" {\").concat(item[1], \"}\");\n item[2] = media;\n }\n }\n if (supports) {\n if (!item[4]) {\n item[4] = \"\".concat(supports);\n } else {\n item[1] = \"@supports (\".concat(item[4], \") {\").concat(item[1], \"}\");\n item[4] = supports;\n }\n }\n list.push(item);\n }\n };\n return list;\n};","\"use strict\";\n\nmodule.exports = function (url, options) {\n if (!options) {\n options = {};\n }\n if (!url) {\n return url;\n }\n url = String(url.__esModule ? url.default : url);\n\n // If url is already wrapped in quotes, remove them\n if (/^['\"].*['\"]$/.test(url)) {\n url = url.slice(1, -1);\n }\n if (options.hash) {\n url += options.hash;\n }\n\n // Should url be wrapped?\n // See https://drafts.csswg.org/css-values-3/#urls\n if (/[\"'() \\t\\n]|(%20)/.test(url) || options.needQuotes) {\n return \"\\\"\".concat(url.replace(/\"/g, '\\\\\"').replace(/\\n/g, \"\\\\n\"), \"\\\"\");\n }\n return url;\n};","\"use strict\";\n\nmodule.exports = function (item) {\n var content = item[1];\n var cssMapping = item[3];\n if (!cssMapping) {\n return content;\n }\n if (typeof btoa === \"function\") {\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(cssMapping))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n var sourceMapping = \"/*# \".concat(data, \" */\");\n return [content].concat([sourceMapping]).join(\"\\n\");\n }\n return [content].join(\"\\n\");\n};","/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/api.js\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"../../assets/spinner-light.svg\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"../../assets/spinner-dark.svg\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.ws-button {\n cursor: pointer;\n display: inline-block;\n font-size: 16px;\n font-weight: 600;\n text-align: center;\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\n user-select: none;\n width: 100%;\n}\n.ws-button-default {\n border-radius: 20px;\n height: 40px;\n}\n.ws-button-baby {\n border-radius: 12px;\n height: 24px;\n}\n.ws-button-loading {\n background-color: #05758a;\n border: none;\n}\n.ws-button-loading-content-light {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button-loading-content-dark {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button:focus {\n outline: none;\n}\n.ws-button-primary,\n.ws-button-primary-loading {\n background-color: #05758a;\n border: none;\n color: #ffffff;\n}\n.ws-button-primary-loading {\n cursor: none;\n}\n.ws-button-primary:hover {\n background-color: #005463;\n}\n.ws-button-primary.disabled,\n.ws-button-primary[disabled] {\n background-color: #82bac4;\n border: none;\n cursor: none;\n}\n.ws-button-secondary,\n.ws-button-secondary-loading {\n background-color: #ffffff;\n border: 2px solid #05758a;\n color: #05758a;\n}\n.ws-button-secondary-loading {\n cursor: none;\n}\n.ws-button-secondary:hover {\n border: 2px solid #005463;\n color: #005463;\n}\n.ws-button-secondary.disabled,\n.ws-button-secondary[disabled] {\n background-color: #ffffff;\n border: 2px solid #82bac4;\n color: #82bac4;\n cursor: none;\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./src/components/ws-button/ws-button.component.less\"],\"names\":[],\"mappings\":\"AAIA;EACI,eAAA;EACA,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;EACA,yEAAA;EACA,iBAAA;EACA,WAAA;AAHJ;AAKI;EACI,mBAAA;EACA,YAAA;AAHR;AAMI;EACI,mBAAA;EACA,YAAA;AAJR;AAOI;EACI,yBAAA;EACA,YAAA;AALR;AAQI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AANR;AAUI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AARR;AAYA;EACI,aAAA;AAVJ;AAcA;;EAEI,yBAAA;EACA,YAAA;EACA,cAAA;AAZJ;AAeA;EACI,YAAA;AAbJ;AAgBA;EACI,yBAAA;AAdJ;AAiBA;;EAEI,yBAAA;EACA,YAAA;EACA,YAAA;AAfJ;AAmBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;AAjBJ;AAoBA;EACI,YAAA;AAlBJ;AAqBA;EACI,yBAAA;EACA,cAAA;AAnBJ;AAsBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;EACA,YAAA;AApBJ\",\"sourcesContent\":[\"// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.\\n\\n@import (reference) '../../../theme.less';\\n\\n.ws-button {\\n cursor: pointer;\\n display: inline-block;\\n font-size: 16px;\\n font-weight: 600;\\n text-align: center;\\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\\n user-select: none;\\n width: 100%;\\n\\n &-default {\\n border-radius: 20px;\\n height: 40px;\\n }\\n\\n &-baby {\\n border-radius: 12px;\\n height: 24px;\\n }\\n\\n &-loading {\\n background-color: @ws-button-primary-background-color;\\n border: none;\\n }\\n\\n &-loading-content-light {\\n background-image: url('../../assets/spinner-light.svg');\\n background-repeat: no-repeat;\\n display: block;\\n height: 20px;\\n margin: 0 auto;\\n width: 20px;\\n \\n }\\n\\n &-loading-content-dark {\\n background-image: url('../../assets/spinner-dark.svg');\\n background-repeat: no-repeat;\\n display: block;\\n height: 20px;\\n margin: 0 auto;\\n width: 20px;\\n }\\n}\\n\\n.ws-button:focus {\\n outline: none;\\n}\\n\\n// primary button\\n.ws-button-primary, \\n.ws-button-primary-loading {\\n background-color: @ws-button-primary-background-color;\\n border: none;\\n color: @ws-button-primary-text-color;\\n}\\n\\n.ws-button-primary-loading {\\n cursor: none;\\n}\\n\\n.ws-button-primary:hover {\\n background-color: @ws-button-primary-background-color-hover;\\n}\\n\\n.ws-button-primary.disabled, \\n.ws-button-primary[disabled] {\\n background-color: @ws-button-primary-background-color-disabled;\\n border: none;\\n cursor: none;\\n}\\n\\n// secondary button\\n.ws-button-secondary,\\n.ws-button-secondary-loading {\\n background-color: @ws-button-secondary-background-color;\\n border: 2px solid @ws-button-secondary-border-color;\\n color: @ws-button-secondary-text-color;\\n}\\n\\n.ws-button-secondary-loading {\\n cursor: none;\\n}\\n\\n.ws-button-secondary:hover {\\n border: 2px solid @ws-button-secondary-border-hover;\\n color: @ws-button-secondary-text-color-hover;\\n}\\n\\n.ws-button-secondary.disabled, \\n.ws-button-secondary[disabled] {\\n background-color: @ws-button-secondary-background-color-disabled;\\n border: 2px solid @ws-button-secondary-border-hover-disabled;\\n color: @ws-button-secondary-text-color-disabled;\\n cursor: none;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","\"use strict\";\n\nvar stylesInDOM = [];\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n for (var i = 0; i < stylesInDOM.length; i++) {\n if (stylesInDOM[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n return result;\n}\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var indexByIdentifier = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3],\n supports: item[4],\n layer: item[5]\n };\n if (indexByIdentifier !== -1) {\n stylesInDOM[indexByIdentifier].references++;\n stylesInDOM[indexByIdentifier].updater(obj);\n } else {\n var updater = addElementStyle(obj, options);\n options.byIndex = i;\n stylesInDOM.splice(i, 0, {\n identifier: identifier,\n updater: updater,\n references: 1\n });\n }\n identifiers.push(identifier);\n }\n return identifiers;\n}\nfunction addElementStyle(obj, options) {\n var api = options.domAPI(options);\n api.update(obj);\n var updater = function updater(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {\n return;\n }\n api.update(obj = newObj);\n } else {\n api.remove();\n }\n };\n return updater;\n}\nmodule.exports = function (list, options) {\n options = options || {};\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDOM[index].references--;\n }\n var newLastIdentifiers = modulesToDom(newList, options);\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n var _index = getIndexByIdentifier(_identifier);\n if (stylesInDOM[_index].references === 0) {\n stylesInDOM[_index].updater();\n stylesInDOM.splice(_index, 1);\n }\n }\n lastIdentifiers = newLastIdentifiers;\n };\n};","\"use strict\";\n\nvar memo = {};\n\n/* istanbul ignore next */\nfunction getTarget(target) {\n if (typeof memo[target] === \"undefined\") {\n var styleTarget = document.querySelector(target);\n\n // Special case to return head of iframe instead of iframe itself\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n memo[target] = styleTarget;\n }\n return memo[target];\n}\n\n/* istanbul ignore next */\nfunction insertBySelector(insert, style) {\n var target = getTarget(insert);\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n target.appendChild(style);\n}\nmodule.exports = insertBySelector;","\"use strict\";\n\n/* istanbul ignore next */\nfunction insertStyleElement(options) {\n var element = document.createElement(\"style\");\n options.setAttributes(element, options.attributes);\n options.insert(element, options.options);\n return element;\n}\nmodule.exports = insertStyleElement;","\"use strict\";\n\n/* istanbul ignore next */\nfunction setAttributesWithoutAttributes(styleElement) {\n var nonce = typeof __webpack_nonce__ !== \"undefined\" ? __webpack_nonce__ : null;\n if (nonce) {\n styleElement.setAttribute(\"nonce\", nonce);\n }\n}\nmodule.exports = setAttributesWithoutAttributes;","\"use strict\";\n\n/* istanbul ignore next */\nfunction apply(styleElement, options, obj) {\n var css = \"\";\n if (obj.supports) {\n css += \"@supports (\".concat(obj.supports, \") {\");\n }\n if (obj.media) {\n css += \"@media \".concat(obj.media, \" {\");\n }\n var needLayer = typeof obj.layer !== \"undefined\";\n if (needLayer) {\n css += \"@layer\".concat(obj.layer.length > 0 ? \" \".concat(obj.layer) : \"\", \" {\");\n }\n css += obj.css;\n if (needLayer) {\n css += \"}\";\n }\n if (obj.media) {\n css += \"}\";\n }\n if (obj.supports) {\n css += \"}\";\n }\n var sourceMap = obj.sourceMap;\n if (sourceMap && typeof btoa !== \"undefined\") {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n }\n\n // For old IE\n /* istanbul ignore if */\n options.styleTagTransform(css, styleElement, options.options);\n}\nfunction removeStyleElement(styleElement) {\n // istanbul ignore if\n if (styleElement.parentNode === null) {\n return false;\n }\n styleElement.parentNode.removeChild(styleElement);\n}\n\n/* istanbul ignore next */\nfunction domAPI(options) {\n if (typeof document === \"undefined\") {\n return {\n update: function update() {},\n remove: function remove() {}\n };\n }\n var styleElement = options.insertStyleElement(options);\n return {\n update: function update(obj) {\n apply(styleElement, options, obj);\n },\n remove: function remove() {\n removeStyleElement(styleElement);\n }\n };\n}\nmodule.exports = domAPI;","\"use strict\";\n\n/* istanbul ignore next */\nfunction styleTagTransform(css, styleElement) {\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css;\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild);\n }\n styleElement.appendChild(document.createTextNode(css));\n }\n}\nmodule.exports = styleTagTransform;","module.exports = __WEBPACK_EXTERNAL_MODULE__883__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t792: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no on chunks loaded\n\n// no jsonp function","__webpack_require__.nc = undefined;","\n import API from \"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./ws-button.component.less\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./ws-button.component.less\";\n export default content && content.locals ? content.locals : undefined;\n","// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.\r\n\r\n// Dependencies\r\nimport React from 'react';\r\nimport './ws-button.component.less';\r\n\r\nfunction WsButton({id, children, disabled, isLoading, name, onClick, size, tabIndex, type, value, variant }) {\r\n const classes = ['ws-button'];\r\n if (!size || size === 'default') {\r\n classes.push('ws-button-default');\r\n } else if (size === 'baby') {\r\n classes.push('ws-button-baby');\r\n }\r\n let loading = null;\r\n if (isLoading) {\r\n classes.push('ws-button-loading');\r\n if (variant === 'primary') {\r\n loading = <div className='ws-button-loading-content-light' />;\r\n } else if (variant === 'secondary') {\r\n loading = <div className='ws-button-loading-content-dark' />;\r\n }\r\n if (variant === 'primary') {\r\n classes.push('ws-button-primary-loading');\r\n } else if (variant === 'secondary') {\r\n classes.push('ws-button-secondary-loading');\r\n }\r\n } else {\r\n if (variant === 'primary') {\r\n classes.push('ws-button-primary');\r\n } else if (variant === 'secondary') {\r\n classes.push('ws-button-secondary');\r\n }\r\n }\r\n return (\r\n <button data-testid=\"ws-button.component\" className={classes.join(' ')}\r\n disabled={disabled}\r\n id={id}\r\n name={name}\r\n onClick={onClick}\r\n tabIndex={tabIndex}\r\n type={type}\r\n value={value}>\r\n {loading ? loading : children}\r\n </button>\r\n );\r\n}\r\n\r\nexport default WsButton;"],"names":["root","factory","exports","module","require","define","amd","this","__WEBPACK_EXTERNAL_MODULE__883__","cssWithMappingToString","list","toString","map","item","content","needLayer","concat","length","join","i","modules","media","dedupe","supports","layer","undefined","alreadyImportedModules","k","id","_k","push","url","options","String","__esModule","default","test","slice","hash","needQuotes","replace","cssMapping","btoa","base64","unescape","encodeURIComponent","JSON","stringify","data","sourceMapping","f","Symbol","for","l","m","Object","prototype","hasOwnProperty","n","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","ReactCurrentOwner","p","key","ref","__self","__source","q","c","a","g","b","d","e","h","call","defaultProps","$$typeof","type","props","_owner","current","jsx","___CSS_LOADER_URL_IMPORT_0___","URL","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","stylesInDOM","getIndexByIdentifier","identifier","result","modulesToDom","idCountMap","identifiers","base","count","indexByIdentifier","obj","css","sourceMap","references","updater","addElementStyle","byIndex","splice","api","domAPI","update","newObj","remove","lastIdentifiers","newList","index","newLastIdentifiers","_i","_index","memo","insert","style","target","styleTarget","document","querySelector","window","HTMLIFrameElement","contentDocument","head","getTarget","Error","appendChild","element","createElement","setAttributes","attributes","styleElement","nonce","setAttribute","insertStyleElement","styleTagTransform","apply","parentNode","removeChild","removeStyleElement","styleSheet","cssText","firstChild","createTextNode","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","getter","definition","o","defineProperty","enumerable","get","globalThis","Function","prop","r","toStringTag","value","scriptUrl","importScripts","location","currentScript","tagName","toUpperCase","src","scripts","getElementsByTagName","baseURI","self","href","nc","locals","_ref","children","disabled","isLoading","name","onClick","size","tabIndex","variant","classes","loading","_jsx","className"],"sourceRoot":""}
|
package/src/App.js
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.
|
2
|
-
|
3
|
-
import { Routes, Route } from 'react-router-dom';
|
4
|
-
import Buttons from './components/ws-button/ws-buttons.component.jsx';
|
5
|
-
|
6
|
-
// Component for Home page
|
7
|
-
function Home() {
|
8
|
-
return <h2>Home Page</h2>;
|
9
|
-
}
|
10
|
-
|
11
|
-
function App() {
|
12
|
-
return (
|
13
|
-
<Routes>
|
14
|
-
<Route path="/" element={<Home />} />
|
15
|
-
<Route path="/buttons" element={<Buttons />} />
|
16
|
-
</Routes>
|
17
|
-
);
|
18
|
-
}
|
19
|
-
|
20
|
-
export default App;
|
package/src/App.less
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
.App {
|
2
|
-
text-align: center;
|
3
|
-
}
|
4
|
-
|
5
|
-
.App-logo {
|
6
|
-
height: 40vmin;
|
7
|
-
pointer-events: none;
|
8
|
-
}
|
9
|
-
|
10
|
-
@media (prefers-reduced-motion: no-preference) {
|
11
|
-
.App-logo {
|
12
|
-
animation: App-logo-spin infinite 20s linear;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
.App-header {
|
17
|
-
background-color: #282c34;
|
18
|
-
min-height: 100vh;
|
19
|
-
display: flex;
|
20
|
-
flex-direction: column;
|
21
|
-
align-items: center;
|
22
|
-
justify-content: center;
|
23
|
-
font-size: calc(10px + 2vmin);
|
24
|
-
color: white;
|
25
|
-
}
|
26
|
-
|
27
|
-
.App-link {
|
28
|
-
color: red;
|
29
|
-
}
|
30
|
-
|
31
|
-
@keyframes App-logo-spin {
|
32
|
-
from {
|
33
|
-
transform: rotate(0deg);
|
34
|
-
}
|
35
|
-
to {
|
36
|
-
transform: rotate(360deg);
|
37
|
-
}
|
38
|
-
}
|
package/src/App.test.js
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
import { render, screen } from '@testing-library/react';
|
2
|
-
import { MemoryRouter } from 'react-router-dom';
|
3
|
-
import App from './App';
|
4
|
-
|
5
|
-
test('renders Home page on default route ("/")', () => {
|
6
|
-
render(
|
7
|
-
<MemoryRouter initialEntries={['/']}>
|
8
|
-
<App />
|
9
|
-
</MemoryRouter>
|
10
|
-
);
|
11
|
-
expect(screen.getByText('Home Page')).toBeInTheDocument();
|
12
|
-
});
|
13
|
-
|
14
|
-
|
15
|
-
test('renders buttons route', () => {
|
16
|
-
render(
|
17
|
-
<MemoryRouter initialEntries={['/buttons']}>
|
18
|
-
<App />
|
19
|
-
</MemoryRouter>
|
20
|
-
);
|
21
|
-
const buttons = screen.getByTestId('buttons.component');
|
22
|
-
expect(buttons).toBeInTheDocument();
|
23
|
-
});
|
Binary file
|
package/src/assets/citrix.svg
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg width="209px" height="71px" viewBox="0 0 209 71" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<title>Citrix-Wordmark-000000-20200225</title>
|
4
|
-
<defs>
|
5
|
-
<polygon id="path-1" points="0.0002 0.7184 48.6282 0.7184 48.6282 55 0.0002 55"></polygon>
|
6
|
-
<polygon id="path-3" points="0.3122 0.078 21.4772 0.078 21.4772 70.2098 0.3122 70.2098"></polygon>
|
7
|
-
</defs>
|
8
|
-
<g id="Citrix-Wordmark-000000-20200225" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
9
|
-
<g id="Group-3" transform="translate(0.000000, 15.922100)">
|
10
|
-
<mask id="mask-2" fill="white">
|
11
|
-
<use xlink:href="#path-1"></use>
|
12
|
-
</mask>
|
13
|
-
<g id="Clip-2"></g>
|
14
|
-
<path d="M0.0002,27.8704 C0.0002,11.8634 10.7402,0.7184 26.0382,0.7184 C36.3702,0.7184 44.7802,5.8874 48.1212,13.8884 C48.5292,14.6964 48.6282,15.4064 48.6282,16.2184 C48.6282,18.0414 47.2092,19.2584 45.3862,19.2584 C43.9682,19.2584 42.7552,18.4464 42.1452,16.8254 C39.5132,10.3414 33.5372,6.5924 26.0382,6.5924 C14.5882,6.5924 6.5872,15.3074 6.5872,27.8704 C6.5872,40.3314 14.4892,49.0424 26.0382,49.0424 C33.5372,49.0424 39.2082,45.3954 42.2482,37.7984 C42.8542,36.2764 43.8692,35.3644 45.3862,35.3644 C47.2092,35.3644 48.6282,36.7834 48.6282,38.6064 C48.6282,39.3164 48.5292,39.8234 48.2242,40.7344 C44.9822,49.4464 36.6752,55.0184 26.0382,55.0184 C10.6372,55.0184 0.0002,43.8744 0.0002,27.8704" id="Fill-1" fill="#000000" mask="url(#mask-2)"></path>
|
15
|
-
</g>
|
16
|
-
<g id="Group-6" transform="translate(80.000000, -0.077900)">
|
17
|
-
<mask id="mask-4" fill="white">
|
18
|
-
<use xlink:href="#path-3"></use>
|
19
|
-
</mask>
|
20
|
-
<g id="Clip-5"></g>
|
21
|
-
<path d="M6.8972,66.5638 C6.8972,68.7918 5.6802,70.2098 3.5562,70.2098 C1.4282,70.2098 0.3142,68.7918 0.3142,66.5638 L0.3122,3.7278 C0.3122,1.3978 1.5292,0.0778 3.6572,0.0778 C5.7852,0.0778 6.8992,1.3978 6.8992,3.7278 L6.8992,18.0348 L18.2352,18.0348 C20.2602,18.0348 21.4772,19.1478 21.4772,20.9708 C21.4772,22.7978 20.2602,23.9118 18.2352,23.9118 L6.8992,23.9118 L6.8972,66.5638 Z" id="Fill-4" fill="#000000" mask="url(#mask-4)"></path>
|
22
|
-
</g>
|
23
|
-
<path d="M137.6413,21.5035 C137.6413,23.3265 136.3223,24.6425 134.4003,24.6425 C133.6903,24.6425 132.9813,24.4405 131.9663,23.9335 C130.4483,23.2235 128.8283,22.8195 126.6993,22.8195 C119.7073,22.8195 115.1503,28.8995 115.1503,36.5995 L115.1503,66.4855 C115.1503,68.8125 114.0373,70.1325 111.9083,70.1325 C109.7803,70.1325 108.5633,68.8125 108.5633,66.4855 L108.5633,21.0995 C108.5633,18.7695 109.7803,17.4495 111.9083,17.4495 C114.0373,17.4495 115.1503,18.7695 115.1503,21.0995 L115.1503,22.4155 C117.9883,18.6665 122.4423,16.6405 127.4093,16.6405 C131.2563,16.6405 133.9913,17.4495 135.9173,18.6665 C137.0313,19.3755 137.6413,20.2875 137.6413,21.5035" id="Fill-7" fill="#000000"></path>
|
24
|
-
<path d="M144.323,21.0997 C144.323,18.7687 145.536,17.4497 147.665,17.4497 C149.793,17.4497 150.906,18.7687 150.906,21.0997 L150.906,66.4857 C150.906,68.7137 149.689,70.1327 147.565,70.1327 C145.437,70.1327 144.323,68.7137 144.323,66.4857 L144.323,21.0997 Z" id="Fill-9" fill="#000000"></path>
|
25
|
-
<path d="M60.1965,21.0997 C60.1965,18.7687 61.4095,17.4497 63.5375,17.4497 C65.6655,17.4497 66.7795,18.7687 66.7795,21.0997 L66.7795,66.4857 C66.7795,68.7137 65.5625,70.1327 63.4385,70.1327 C61.3105,70.1327 60.1965,68.7137 60.1965,66.4857 L60.1965,21.0997 Z" id="Fill-11" fill="#000000"></path>
|
26
|
-
<path d="M68.6623,5.1744 C68.6623,8.0314 66.3453,10.3484 63.4883,10.3484 C60.6303,10.3484 58.3133,8.0314 58.3133,5.1744 C58.3133,2.3164 60.6303,0.0004 63.4883,0.0004 C66.3453,0.0004 68.6623,2.3164 68.6623,5.1744" id="Fill-13" fill="#000000"></path>
|
27
|
-
<path d="M185.1433,47.8433 L167.2113,68.8123 C166.5023,69.7283 165.5903,70.1323 164.5763,70.1323 C162.7523,70.1323 161.4373,68.7133 161.4373,67.0923 C161.4373,66.3833 161.6393,65.5713 162.3493,64.7623 L181.0903,43.5883 L163.0583,22.9223 C162.3493,22.1103 161.9453,21.4003 161.9453,20.4893 C161.9453,18.8683 163.2603,17.4493 165.1863,17.4493 C166.1973,17.4493 166.9073,17.8573 167.7193,18.7693 L185.1433,39.2313 L202.5673,18.7693 C203.3793,17.8573 204.0893,17.4493 205.1003,17.4493 C207.0263,17.4493 208.3413,18.8683 208.3413,20.4893 C208.3413,21.4003 207.9373,22.1103 207.2283,22.9223 L189.1963,43.5883 L207.9373,64.7623 C208.6473,65.5713 208.8493,66.3833 208.8493,67.0923 C208.8493,68.7133 207.5333,70.1323 205.7103,70.1323 C204.6963,70.1323 203.7843,69.7283 203.0753,68.8123 L185.1433,47.8433 Z" id="Fill-15" fill="#000000"></path>
|
28
|
-
<path d="M190.3171,5.1744 C190.3171,8.0314 188.0011,10.3484 185.1431,10.3484 C182.2861,10.3484 179.9681,8.0314 179.9681,5.1744 C179.9681,2.3164 182.2861,0.0004 185.1431,0.0004 C188.0011,0.0004 190.3171,2.3164 190.3171,5.1744" id="Fill-19" fill="#000000"></path>
|
29
|
-
</g>
|
30
|
-
</svg>
|
package/src/assets/close-btn.svg
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4
|
-
viewBox="0 0 52 52" style="enable-background:new 0 0 52 52;" xml:space="preserve">
|
5
|
-
<g>
|
6
|
-
<polygon style="fill-rule:evenodd;clip-rule:evenodd;fill:#485164;" points="47.4,0.2 26.2,21.5 4.9,0.2 0.2,4.9 21.4,26.2
|
7
|
-
0.2,47.5 4.9,52.2 26.2,30.9 47.4,52.2 52.2,47.5 30.9,26.2 52.2,4.9 "/>
|
8
|
-
</g>
|
9
|
-
</svg>
|
package/src/assets/error.svg
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
|
4
|
-
<title>01 - Icons/Toasts/24/Error</title>
|
5
|
-
<desc>Created with Sketch.</desc>
|
6
|
-
<defs></defs>
|
7
|
-
<g id="01---Icons/Toasts/24/Error" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
-
<path d="M0.763077917,21.537434 L11.1134152,1.69928762 C11.3688833,1.20964033 11.9729187,1.01980063 12.462566,1.27526878 C12.643953,1.36990545 12.7919482,1.51790067 12.8865848,1.69928762 L23.2369221,21.537434 C23.4923902,22.0270813 23.3025505,22.6311167 22.8129032,22.8865848 C22.6700988,22.9610915 22.5114098,23 22.3503372,23 L1.64966276,23 C1.09737801,23 0.649662763,22.5522847 0.649662763,22 C0.649662763,21.8389275 0.688571245,21.6802384 0.763077917,21.537434 Z M22.0634384,21.6359773 L12.2224833,2.43411378 C12.1595103,2.31123964 12.0088514,2.26268017 11.8859773,2.32565317 C11.839352,2.34954864 11.8014122,2.38748847 11.7775167,2.43411378 L1.93656163,21.6359773 C1.87358864,21.7588514 1.92214811,21.9095103 2.04502225,21.9724833 C2.08030981,21.9905682 2.11939303,22 2.15904495,22 L21.8409551,22 C21.9790262,22 22.0909551,21.8880712 22.0909551,21.75 C22.0909551,21.7103481 22.0815232,21.6712649 22.0634384,21.6359773 Z M12,19.75 C11.5857864,19.75 11.25,19.4142136 11.25,19 C11.25,18.5857864 11.5857864,18.25 12,18.25 C12.4142136,18.25 12.75,18.5857864 12.75,19 C12.75,19.4142136 12.4142136,19.75 12,19.75 Z M11.5,16.4903342 L11.5,8.50966585 C11.5,8.22247314 11.7238576,8 12,8 C12.2680664,8 12.5,8.22818517 12.5,8.50966585 L12.5,16.4903342 C12.5,16.7775269 12.2761424,17 12,17 C11.7319336,17 11.5,16.7718148 11.5,16.4903342 Z" id="Combined-Shape" fill="#D50032" fill-rule="nonzero"></path>
|
9
|
-
</g>
|
10
|
-
</svg>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|