diff --git a/js-wixcode-sdk/$w.service.json b/js-wixcode-sdk/$w.service.json index 1bae312e07..49c11074ca 100644 --- a/js-wixcode-sdk/$w.service.json +++ b/js-wixcode-sdk/$w.service.json @@ -7,7 +7,7 @@ "docs": { "summary": "The `$w` namespace contains everything you need in order to work\n with your site's components.", "description": - [ "The `$w` namespace contains all of the UI elements, nodes, and", + [ "DANIEL TESTTTT The `$w` namespace contains all of the UI elements, nodes, and", " events that make up your site. It also includes the [`$w()`]($w/$w),", " [`onReady()`]($w.html#onReady), and [`at()`]($w.html#at) functions.", "", @@ -1063,4 +1063,4 @@ { "title": "Elements in a repeater have the same ID for each repeater item. So how do I select an element in a specific repeater item?", "markdown": "You can get an element from a specific repeater item by using the [`at()`](https://www.wix.com/code/reference/$w.html#at) function. You pass the function a [`context`](https://www.wix.com/code/reference/$w.Event.html#context) from an event handler's `event` property. The function returns a selector function that selects elements from the same item that triggered the event whose context you passed it. You can then use that selector to select the specific element you want." }, { "title": "Why are my $w() selections not working?", - "markdown": "You can only select page elements using [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) when the page is ready. If you use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) in code that runs before the page is ready, like global page code, the page elements are not ready to be selected. Use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) to select elements in the [`onReady()`](https://www.wix.com/velo/reference/$w.html#onReady) event handler, element event handlers, or any functions called by the above. \n\nAlso, be sure to check your selection syntax is correct. When selecting individual elements, make sure you have the proper ID and include a hash. For example: `$w(\"#myElement\")`. When selecting elements by type, make sure you have the proper type name and don't include a hash or `$w.` before the type name. For example: `$w(\"Text\")`. " } ] } \ No newline at end of file + "markdown": "You can only select page elements using [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) when the page is ready. If you use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) in code that runs before the page is ready, like global page code, the page elements are not ready to be selected. Use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) to select elements in the [`onReady()`](https://www.wix.com/velo/reference/$w.html#onReady) event handler, element event handlers, or any functions called by the above. \n\nAlso, be sure to check your selection syntax is correct. When selecting individual elements, make sure you have the proper ID and include a hash. For example: `$w(\"#myElement\")`. When selecting elements by type, make sure you have the proper type name and don't include a hash or `$w.` before the type name. For example: `$w(\"Text\")`. " } ] } diff --git a/js-wixcode-sdk/$w/Button.service.json b/js-wixcode-sdk/$w/Button.service.json index 19db6a47ae..3a3024622a 100644 --- a/js-wixcode-sdk/$w/Button.service.json +++ b/js-wixcode-sdk/$w/Button.service.json @@ -16,13 +16,13 @@ "docs": { "summary": "A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site.", "description": - [ "A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site." ], + [ "DANIEL TESTTTT A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site." ], "links": [], "examples": [], "extra": { } }, "properties": - [ { "name": "icon", + [ { "name": "DANIEL TESTTTT", "labels": [], "get": true, "set": true, @@ -485,4 +485,4 @@ { "title": "Is the 'onClick()' event handler called even when a button is disabled?", "markdown": "No. You can call the [`enable()`](https://www.wix.com/velo/reference/$w.Button.html#enable) function to allow the button to be clicked again." }, { "title": "How do I change the label of the button after it is clicked?", - "markdown": "In the button's [onClick](https://www.wix.com/velo/reference/$w.Button.html#onClick) event handler, reset the button's text using the [`label`](https://www.wix.com/velo/reference/$w.Button.html#label) property.\n\n```javascript\n\n$w(\"myButton\").onClick( () => {\n\n $w(\"myButton\").label = \"New Text\";\n\n} );\n\n```" } ] } \ No newline at end of file + "markdown": "In the button's [onClick](https://www.wix.com/velo/reference/$w.Button.html#onClick) event handler, reset the button's text using the [`label`](https://www.wix.com/velo/reference/$w.Button.html#label) property.\n\n```javascript\n\n$w(\"myButton\").onClick( () => {\n\n $w(\"myButton\").label = \"New Text\";\n\n} );\n\n```" } ] } diff --git a/wix-billing-backend/wix-billing-backend.service.json b/wix-billing-backend/wix-billing-backend.service.json index 6a328ec51b..c80224954f 100644 --- a/wix-billing-backend/wix-billing-backend.service.json +++ b/wix-billing-backend/wix-billing-backend.service.json @@ -5,9 +5,9 @@ { "lineno": 1, "filename": "index.js" }, "docs": - { "summary": "The wix-billing-backend module contains functionality for working with\n billing features, such as [price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients) and\n[invoices](https://support.wix.com/en/article/about-wix-invoices).", + { "summary": "DANIEL TEST The wix-billing-backend module contains functionality for working with\n billing features, such as [price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients) and\n[invoices](https://support.wix.com/en/article/about-wix-invoices).", "description": - [ "The Wix billing API allows you to manage billing of your customers, using invoices and price quotes. ", + [ "DANIEL TEST The Wix billing API allows you to manage billing of your customers, using invoices and price quotes. ", "", "Learn more about how you can [create and manage invoices](https://support.wix.com/en/article/wix-invoices-about-wix-invoices)", "and [create and manage price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients).", diff --git a/wix-billing-backend/wix-billing-backend/Events.service.json b/wix-billing-backend/wix-billing-backend/Events.service.json index aafe9bd125..2771e653e3 100644 --- a/wix-billing-backend/wix-billing-backend/Events.service.json +++ b/wix-billing-backend/wix-billing-backend/Events.service.json @@ -52,7 +52,7 @@ "docs": { "summary": "An event that fires when an invoice is created.", "description": - [ "The `onInvoiceCreated()` event handler runs when an invoice is created. The received `Invoice`", + [ "DANIEL TEST The `onInvoiceCreated()` event handler runs when an invoice is created. The received `Invoice`", " object contains information about the invoice that was created.", "", "> **Note:** Backend events don't work when previewing your site." ], @@ -1384,4 +1384,4 @@ "callbacks": [], "messages": [], "extra": - { } } \ No newline at end of file + { } } diff --git a/wix-billing-backend/wix-billing-backend/Invoices.service.json b/wix-billing-backend/wix-billing-backend/Invoices.service.json index a24b3804c7..d44fd858f0 100644 --- a/wix-billing-backend/wix-billing-backend/Invoices.service.json +++ b/wix-billing-backend/wix-billing-backend/Invoices.service.json @@ -24,7 +24,7 @@ "labels": [], "nameParams": [], "params": - [ { "name": "id", + [ { "name": "DANIEL TEST ", "type": "wix-billing-backend.Invoices.IdAndVersion", "doc": "ID and version of the invoice." }, { "name": "payment", @@ -5135,4 +5135,4 @@ { }, "labels": [] } ], "extra": - { } } \ No newline at end of file + { } }