@ncino/web-components 3.0.0-preview.2 → 3.0.0-preview.3

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.
Files changed (29) hide show
  1. package/dist/components/button/gator/button.gator.js +1 -1
  2. package/dist/components/headline-card/gator/headline-card.gator.js +1 -1
  3. package/dist/components/headline-card/index.js +1 -1
  4. package/dist/components/illustration/gator/illustration.gator.js +1 -1
  5. package/dist/components/illustration/gator/index.js +1 -1
  6. package/dist/components/illustration/gator/templates/index.js +1 -1
  7. package/dist/components/illustration/gator/templates/your-bank.js +26 -0
  8. package/dist/components/illustration/index.js +1 -1
  9. package/dist/components/input/gator/dropdown/input-dropdown.gator.js +2 -3
  10. package/dist/components/input/gator/input-phone/input-phone.gator.js +8 -8
  11. package/dist/components/input-rich-text/ckeditor-config.js +154 -154
  12. package/dist/components/list/gator/list-item/list-item.gator.js +3 -3
  13. package/dist/components/panel/gator/panel.gator.js +34 -0
  14. package/dist/components/panel/gator/panel.storybook-test.js +457 -0
  15. package/dist/components/panel/index.js +1 -0
  16. package/dist/index.gator.js +1 -1
  17. package/dist/index.js +1 -1
  18. package/dist/types/components/illustration/gator/templates/index.d.ts +1 -0
  19. package/dist/types/components/illustration/gator/templates/your-bank.d.ts +1 -0
  20. package/dist/types/components/input/gator/dropdown/input-dropdown.gator.d.ts +1 -1
  21. package/dist/types/components/panel/gator/panel.gator.d.ts +27 -0
  22. package/dist/types/components/panel/gator/panel.gator.test.d.ts +0 -0
  23. package/dist/types/components/panel/gator/panel.storybook-test.d.ts +4 -0
  24. package/dist/types/components/panel/index.d.ts +1 -0
  25. package/dist/types/index.gator.d.ts +1 -0
  26. package/dist/types/utils/components/slot-placeholder/slot-placeholder.d.ts +2 -0
  27. package/dist/utils/components/slot-placeholder/slot-placeholder.js +15 -6
  28. package/package.json +35 -37
  29. package/web-types.json +84 -2
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@ncino/web-components",
4
- "version": "3.0.0-preview.1",
4
+ "version": "3.0.0-preview.2",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -2978,6 +2978,85 @@
2978
2978
  "events": []
2979
2979
  }
2980
2980
  },
2981
+ {
2982
+ "name": "ngc-panel",
2983
+ "description": "\n---\n\n\n### **Events:**\n - **close**\n- **open**",
2984
+ "doc-url": "",
2985
+ "attributes": [
2986
+ {
2987
+ "name": "type",
2988
+ "value": {
2989
+ "type": "'drawer' | 'overlay'",
2990
+ "default": "'overlay'"
2991
+ }
2992
+ },
2993
+ {
2994
+ "name": "open",
2995
+ "value": { "type": "boolean", "default": "false" }
2996
+ },
2997
+ {
2998
+ "name": "position",
2999
+ "value": {
3000
+ "type": "'left' | 'right' | 'bottom' | 'bottom-left' | 'bottom-right'",
3001
+ "default": "'left'"
3002
+ }
3003
+ },
3004
+ {
3005
+ "name": "skeleton",
3006
+ "value": { "type": "boolean", "default": "false" }
3007
+ },
3008
+ {
3009
+ "name": "outlined",
3010
+ "value": { "type": "boolean", "default": "false" }
3011
+ },
3012
+ {
3013
+ "name": "anchor-element",
3014
+ "value": { "type": "HTMLElement | null", "default": "null" }
3015
+ },
3016
+ {
3017
+ "name": "aria-label",
3018
+ "value": { "type": "string | null", "default": "null" }
3019
+ },
3020
+ {
3021
+ "name": "aria-labelledby",
3022
+ "value": { "type": "string | null", "default": "null" }
3023
+ },
3024
+ {
3025
+ "name": "data-testid",
3026
+ "value": { "type": "string | undefined", "default": "undefined" }
3027
+ }
3028
+ ],
3029
+ "events": [
3030
+ { "name": "close", "type": "CustomEvent" },
3031
+ { "name": "open", "type": "CustomEvent" }
3032
+ ],
3033
+ "js": {
3034
+ "properties": [
3035
+ { "name": "type", "type": "'drawer' | 'overlay'" },
3036
+ { "name": "open", "type": "boolean" },
3037
+ {
3038
+ "name": "position",
3039
+ "type": "'left' | 'right' | 'bottom' | 'bottom-left' | 'bottom-right'"
3040
+ },
3041
+ { "name": "skeleton", "type": "boolean" },
3042
+ { "name": "outlined", "type": "boolean" },
3043
+ { "name": "anchorElement", "type": "HTMLElement | null" },
3044
+ { "name": "ariaLabel", "type": "string | null" },
3045
+ { "name": "ariaLabelledBy", "type": "string | null" },
3046
+ { "name": "panelRef", "type": "Ref<HTMLDivElement>" },
3047
+ { "name": "gatorPanelContentLoadingMarkup" },
3048
+ { "name": "gatorPanelFooterLoadingMarkup" },
3049
+ { "name": "dataTestid", "type": "string | undefined" },
3050
+ { "name": "labelDataTestid" },
3051
+ { "name": "helpTextDataTestid" },
3052
+ { "name": "errorMessageDataTestid" }
3053
+ ],
3054
+ "events": [
3055
+ { "name": "close", "type": "CustomEvent" },
3056
+ { "name": "open", "type": "CustomEvent" }
3057
+ ]
3058
+ }
3059
+ },
2981
3060
  {
2982
3061
  "name": "ngc-progress-bar",
2983
3062
  "description": "\n---\n",
@@ -4007,7 +4086,10 @@
4007
4086
  ],
4008
4087
  "events": [],
4009
4088
  "js": {
4010
- "properties": [{ "name": "slotName", "type": "string" }],
4089
+ "properties": [
4090
+ { "name": "slotName", "type": "string" },
4091
+ { "name": "namedSlotMarkup" }
4092
+ ],
4011
4093
  "events": []
4012
4094
  }
4013
4095
  },