Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Oct 6, 2023
1 parent 2f5fc80 commit 7b19aff
Show file tree
Hide file tree
Showing 654 changed files with 1,130 additions and 346 deletions.
39 changes: 35 additions & 4 deletions src/translate/.detection/api/checkbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,33 @@
],
"usage": {},
"props": [
{
"name": "alignment",
"type": "\"center\" | \"start\"",
"complexType": {
"original": "'start' | 'center'",
"resolved": "\"center\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "alignment",
"reflectToAttr": false,
"docs": "How to control the alignment of the checkbox and label on the cross axis.\n`\"start\"`: The label and control will appear on the left of the cross axis in LTR, and on the right side in RTL.\n`\"center\"`: The label and control will appear at the center of the cross axis in both LTR and RTL.",
"docsTags": [],
"default": "'center'",
"values": [
{
"value": "center",
"type": "string"
},
{
"value": "start",
"type": "string"
}
],
"optional": false,
"required": false
},
{
"name": "checked",
"type": "boolean",
Expand Down Expand Up @@ -188,16 +215,16 @@
},
{
"name": "labelPlacement",
"type": "\"end\" | \"fixed\" | \"start\"",
"type": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"complexType": {
"original": "'start' | 'end' | 'fixed'",
"resolved": "\"end\" | \"fixed\" | \"start\"",
"original": "'start' | 'end' | 'fixed' | 'stacked'",
"resolved": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "label-placement",
"reflectToAttr": false,
"docs": "Where to place the label relative to the checkbox.\n`\"start\"`: The label will appear to the left of the checkbox in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the checkbox in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
"docs": "Where to place the label relative to the checkbox.\n`\"start\"`: The label will appear to the left of the checkbox in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the checkbox in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n`\"stacked\"`: The label will appear above the checkbox regardless of the direction. The alignment of the label can be controlled with the `alignment` property.",
"docsTags": [],
"default": "'start'",
"values": [
Expand All @@ -209,6 +236,10 @@
"value": "fixed",
"type": "string"
},
{
"value": "stacked",
"type": "string"
},
{
"value": "start",
"type": "string"
Expand Down
32 changes: 32 additions & 0 deletions src/translate/.detection/api/datetime.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@
{
"name": "part",
"text": "month-year-button - The button that opens the month/year picker when\nusing a grid style layout."
},
{
"name": "part",
"text": "calendar-day - The individual buttons that display a day inside of the datetime\ncalendar."
},
{
"name": "part",
"text": "calendar-day active - The currently selected calendar day."
},
{
"name": "part",
"text": "calendar-day today - The calendar day that contains the current day."
},
{
"name": "part",
"text": "calendar-day disabled - The calendar day that is disabled."
}
],
"usage": {},
Expand Down Expand Up @@ -1059,6 +1075,22 @@
}
],
"parts": [
{
"name": "calendar-day",
"docs": "The individual buttons that display a day inside of the datetime\ncalendar."
},
{
"name": "calendar-day active",
"docs": "The currently selected calendar day."
},
{
"name": "calendar-day disabled",
"docs": "The calendar day that is disabled."
},
{
"name": "calendar-day today",
"docs": "The calendar day that contains the current day."
},
{
"name": "month-year-button",
"docs": "The button that opens the month/year picker when\nusing a grid style layout."
Expand Down
8 changes: 7 additions & 1 deletion src/translate/.detection/api/item.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,13 @@
"attr": "fill",
"reflectToAttr": false,
"docs": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available in `md` mode.",
"docsTags": [],
"docsTags": [
{
"name": "deprecated",
"text": "Use the `fill` property on `ion-input` or `ion-textarea` instead."
}
],
"deprecation": "Use the `fill` property on `ion-input` or `ion-textarea` instead.",
"values": [
{
"value": "outline",
Expand Down
39 changes: 35 additions & 4 deletions src/translate/.detection/api/radio.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,33 @@
],
"usage": {},
"props": [
{
"name": "alignment",
"type": "\"center\" | \"start\"",
"complexType": {
"original": "'start' | 'center'",
"resolved": "\"center\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "alignment",
"reflectToAttr": false,
"docs": "How to control the alignment of the radio and label on the cross axis.\n`\"start\"`: The label and control will appear on the left of the cross axis in LTR, and on the right side in RTL.\n`\"center\"`: The label and control will appear at the center of the cross axis in both LTR and RTL.",
"docsTags": [],
"default": "'center'",
"values": [
{
"value": "center",
"type": "string"
},
{
"value": "start",
"type": "string"
}
],
"optional": false,
"required": false
},
{
"name": "color",
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
Expand Down Expand Up @@ -144,16 +171,16 @@
},
{
"name": "labelPlacement",
"type": "\"end\" | \"fixed\" | \"start\"",
"type": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"complexType": {
"original": "'start' | 'end' | 'fixed'",
"resolved": "\"end\" | \"fixed\" | \"start\"",
"original": "'start' | 'end' | 'fixed' | 'stacked'",
"resolved": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "label-placement",
"reflectToAttr": false,
"docs": "Where to place the label relative to the radio.\n`\"start\"`: The label will appear to the left of the radio in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the radio in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
"docs": "Where to place the label relative to the radio.\n`\"start\"`: The label will appear to the left of the radio in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the radio in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n`\"stacked\"`: The label will appear above the radio regardless of the direction. The alignment of the label can be controlled with the `alignment` property.",
"docsTags": [],
"default": "'start'",
"values": [
Expand All @@ -165,6 +192,10 @@
"value": "fixed",
"type": "string"
},
{
"value": "stacked",
"type": "string"
},
{
"value": "start",
"type": "string"
Expand Down
12 changes: 8 additions & 4 deletions src/translate/.detection/api/range.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,16 +231,16 @@
},
{
"name": "labelPlacement",
"type": "\"end\" | \"fixed\" | \"start\"",
"type": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"complexType": {
"original": "'start' | 'end' | 'fixed'",
"resolved": "\"end\" | \"fixed\" | \"start\"",
"original": "'start' | 'end' | 'fixed' | 'stacked'",
"resolved": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "label-placement",
"reflectToAttr": false,
"docs": "Where to place the label relative to the range.\n`\"start\"`: The label will appear to the left of the range in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the range in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
"docs": "Where to place the label relative to the range.\n`\"start\"`: The label will appear to the left of the range in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the range in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n`\"stacked\"`: The label will appear above the range regardless of the direction.",
"docsTags": [],
"default": "'start'",
"values": [
Expand All @@ -252,6 +252,10 @@
"value": "fixed",
"type": "string"
},
{
"value": "stacked",
"type": "string"
},
{
"value": "start",
"type": "string"
Expand Down
9 changes: 7 additions & 2 deletions src/translate/.detection/api/router-outlet.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"filePath": "src/components/router-outlet/route-outlet.tsx",
"filePath": "src/components/router-outlet/router-outlet.tsx",
"encapsulation": "shadow",
"tag": "ion-router-outlet",
"docs": "",
Expand Down Expand Up @@ -63,7 +63,12 @@
"complexType": {
"original": "\"ios\" | \"md\"",
"resolved": "\"ios\" | \"md\"",
"references": {}
"references": {
"Mode": {
"location": "global",
"id": "global::Mode"
}
}
},
"mutable": true,
"attr": "mode",
Expand Down
2 changes: 1 addition & 1 deletion src/translate/.detection/api/textarea.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
},
"mutable": false,
"attr": "cols",
"reflectToAttr": false,
"reflectToAttr": true,
"docs": "The visible width of the text control, in average character widths. If it is specified, it must be a positive integer.",
"docsTags": [],
"values": [
Expand Down
39 changes: 35 additions & 4 deletions src/translate/.detection/api/toggle.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,33 @@
],
"usage": {},
"props": [
{
"name": "alignment",
"type": "\"center\" | \"start\"",
"complexType": {
"original": "'start' | 'center'",
"resolved": "\"center\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "alignment",
"reflectToAttr": false,
"docs": "How to control the alignment of the toggle and label on the cross axis.\n``\"start\"`: The label and control will appear on the left of the cross axis in LTR, and on the right side in RTL.\n`\"center\"`: The label and control will appear at the center of the cross axis in both LTR and RTL.",
"docsTags": [],
"default": "'center'",
"values": [
{
"value": "center",
"type": "string"
},
{
"value": "start",
"type": "string"
}
],
"optional": false,
"required": false
},
{
"name": "checked",
"type": "boolean",
Expand Down Expand Up @@ -191,16 +218,16 @@
},
{
"name": "labelPlacement",
"type": "\"end\" | \"fixed\" | \"start\"",
"type": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"complexType": {
"original": "'start' | 'end' | 'fixed'",
"resolved": "\"end\" | \"fixed\" | \"start\"",
"original": "'start' | 'end' | 'fixed' | 'stacked'",
"resolved": "\"end\" | \"fixed\" | \"stacked\" | \"start\"",
"references": {}
},
"mutable": false,
"attr": "label-placement",
"reflectToAttr": false,
"docs": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the toggle in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the toggle in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
"docs": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the toggle in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the toggle in LTR and to the left in RTL.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n`\"stacked\"`: The label will appear above the toggle regardless of the direction. The alignment of the label can be controlled with the `alignment` property.",
"docsTags": [],
"default": "'start'",
"values": [
Expand All @@ -212,6 +239,10 @@
"value": "fixed",
"type": "string"
},
{
"value": "stacked",
"type": "string"
},
{
"value": "start",
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion src/translate/.detection/cli/build.readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
`ionic build` will perform an Ionic build, which compiles web assets and prepares them for deployment.

`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples.
`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples.
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-add.readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
`ionic capacitor add` will do the following:

- Install the Capacitor platform package
- Copy the native platform template into your project
- Copy the native platform template into your project
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-build.readme.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
`ionic capacitor build` will do the following:

- Perform `ionic build`
- Copy web assets into the specified native platform
- Open the IDE for your native project (Xcode for iOS, Android Studio for Android)

Once the web assets and configuration are copied into your native project, you can build your app using the native IDE. Unfortunately, programmatically building the native project is not yet supported.

To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration).
To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration).
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-copy.readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
`ionic capacitor copy` will do the following:

- Perform an Ionic build, which compiles web assets
- Copy web assets to Capacitor native platform(s)
- Copy web assets to Capacitor native platform(s)
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-open.readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
`ionic capacitor open` will do the following:

- Open the IDE for your native project (Xcode for iOS, Android Studio for Android)
- Open the IDE for your native project (Xcode for iOS, Android Studio for Android)
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-run.readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
`ionic capacitor run` will do the following:

- Perform `ionic build` (or run the dev server from `ionic serve` with the `--livereload` option)
- Run `capacitor run` (or open IDE for your native project with the `--open` option)

When using `--livereload` with hardware devices, remember that livereload needs an active connection between device and computer. In some scenarios, you may need to host the dev server on an external address using the `--external` option. See these [docs](https://ionicframework.com/docs/cli/livereload) for more information.

If you have multiple devices and emulators, you can target a specific one by ID with the `--target` option. You can list targets with `--list`.

For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips).
For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips).
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-sync.readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
`ionic capacitor sync` will do the following:

- Perform an Ionic build, which compiles web assets
- Copy web assets to Capacitor native platform(s)
- Update Capacitor native platform(s) and dependencies
- Install any discovered Capacitor or Cordova plugins
- Install any discovered Capacitor or Cordova plugins
3 changes: 1 addition & 2 deletions src/translate/.detection/cli/capacitor-update.readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
`ionic capacitor update` will do the following:

- Update Capacitor native platform(s) and dependencies
- Install any discovered Capacitor or Cordova plugins
- Install any discovered Capacitor or Cordova plugins
2 changes: 1 addition & 1 deletion src/translate/.detection/cli/completion.readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
This command is experimental and only works for Z shell (zsh) and non-Windows platforms.

To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples.
To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples.
Loading

0 comments on commit 7b19aff

Please sign in to comment.